Searched defs:stub (Results 1 - 13 of 13) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp33 /// addPrototype - register a stub prototype
38 /// create - create a stub if needed, otherwise return NULL
43 // find if there is a prototype stub for the input relocation
44 Stub* stub = NULL; local
56 // find if there is such a stub in the backward island first.
58 stub = islands.second->findStub(prototype, pReloc);
61 if (stub != NULL) {
62 // reset the branch target to the stub instead!
63 pReloc.setSymInfo(stub->symInfo());
65 // find if there is such a stub i
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationsQuickSettingsContainer.java98 public void onInflate(ViewStub stub, View inflated) { argument
99 if (stub == mUserSwitcher) {
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp84 sp<DataSource> stub= new SRTDataSourceStub( local
87 mSource = new TimedTextSRTSource(stub);
/frameworks/base/core/java/android/view/
H A DViewStub.java45 * &lt;ViewStub android:id="@+id/stub"
52 * The ViewStub thus defined can be found using the id "stub." After inflation of
61 * ViewStub stub = (ViewStub) findViewById(R.id.stub);
62 * View inflated = stub.inflate();
315 * @param stub The ViewStub that initiated the inflation.
318 void onInflate(ViewStub stub, View inflated); argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DViewStubCompat.java257 * @param stub The ViewStub that initiated the inflation.
260 void onInflate(ViewStubCompat stub, View inflated); argument
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp27 this->comment = "/** Local-side IPC implementation stub class. */";
43 ctor->comment = "/** Construct the stub at attach it to the "
291 // == the stub method ====================================================
496 generate_interface_descriptors(StubClass* stub, ProxyClass* proxy) argument
500 c->statements->Add(new MethodCall(stub->transact_reply, "writeString",
503 stub->transact_switch->cases.push_back(c);
530 // the stub inner class
531 StubClass* stub = new StubClass( local
534 interface->elements.push_back(stub);
541 stub
[all...]
H A Daidl.cpp330 // for interfaces, also add the stub and proxy types, we don't
337 Type* stub = new Type(c->package ? c->package : "", local
340 NAMES.Add(stub);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp690 Stub* stub = getStubFactory()->create(*relocation, // relocation local
694 if (stub != NULL) {
700 // a stub symbol should be local
701 assert(stub->symInfo() != NULL && stub->symInfo()->isLocal());
713 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() +
731 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp636 Stub* stub = getStubFactory()->create( local
639 if (stub == NULL)
642 assert(stub->symInfo() != NULL);
647 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
686 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp574 Stub* stub = getStubFactory()->create(*relocation, // relocation local
578 if (stub != NULL) {
579 assert(stub->symInfo() != NULL);
584 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
596 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DListenerBindingObject.java226 public void onInflate(ViewStub stub, View inflated) { argument
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java1147 public final ResultReceiver stub; field in class:MediaSession.Command
1149 public Command(String command, Bundle extras, ResultReceiver stub) { argument
1152 this.stub = stub;
1253 mCallback.onCommand(cmd.command, cmd.extras, cmd.stub);
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java1725 public final ResultReceiver stub; field in class:MediaSessionCompat.MediaSessionImplBase.Command
1727 public Command(String command, Bundle extras, ResultReceiver stub) { argument
1730 this.stub = stub;
1840 mCallback.onCommand(cmd.command, cmd.extras, cmd.stub);

Completed in 693 milliseconds