[go: nahoru, domu]

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

/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp34 /// addPrototype - register a stub prototype
39 /// create - create a stub if needed, otherwise return NULL
44 // find if there is a prototype stub for the input relocation
45 Stub* stub = NULL; local
57 // find if there is such a stub in the backward island first.
59 stub = islands.second->findStub(prototype, pReloc);
62 if (stub == NULL) {
63 // find if there is such a stub in the forward island.
64 stub = islands.first->findStub(prototype, pReloc);
65 if (stub
94 Stub* stub = prototype->clone(); local
[all...]
/frameworks/base/core/java/android/view/
H A DViewStub.java45 * <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/widget/
H A DViewStubCompat.java256 * @param stub The ViewStub that initiated the inflation.
259 void onInflate(ViewStubCompat stub, View inflated); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationsQuickSettingsContainer.java124 public void onInflate(ViewStub stub, View inflated) { argument
125 if (stub == mUserSwitcher) {
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LDBackend.cpp316 // stub and simplify the logics.
328 Stub* stub = getStubFactory()->create(*frag_ref, local
331 if (stub != NULL) {
332 // A stub symbol should be local
333 assert(stub->symInfo() != NULL && stub->symInfo()->isLocal());
335 reinterpret_cast<const AArch64CA53ErratumStub*>(stub);
337 // Rewrite the erratum instruction as a branch to the stub.
344 reloc->setSymInfo(stub->symInfo());
349 stubs_strlen += stub
406 Stub* stub = getStubFactory()->create(*relocation, // relocation local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp859 Stub* stub = getStubFactory()->create(*relocation, // relocation local
863 if (stub != NULL) {
864 assert(stub->symInfo() != NULL);
865 // reset the branch target of the reloc to this stub instead
866 relocation->setSymInfo(stub->symInfo());
873 // a stub symbol should be local
874 assert(stub->symInfo() != NULL && stub->symInfo()->isLocal());
881 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() +
899 // find the first fragment w/ invalid offset due to stub insertio
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp575 Stub* stub = getStubFactory()->create(*relocation, // relocation local
579 if (stub != NULL) {
580 assert(stub->symInfo() != NULL);
581 // reset the branch target of the reloc to this stub instead
582 relocation->setSymInfo(stub->symInfo());
588 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
600 // 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.java227 public void onInflate(ViewStub stub, View inflated) { argument
/frameworks/base/media/java/android/media/session/
H A DMediaSession.java1256 public final ResultReceiver stub; field in class:MediaSession.Command
1258 public Command(String command, Bundle extras, ResultReceiver stub) { argument
1261 this.stub = stub;
1321 mCallback.onCommand(cmd.command, cmd.extras, cmd.stub);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp776 Stub* stub = getStubFactory()->create( local
779 if (stub == NULL)
782 assert(stub->symInfo() != NULL);
783 // reset the branch target of the reloc to this stub instead
784 pRel.setSymInfo(stub->symInfo());
790 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1);
827 // find the first fragment w/ invalid offset due to stub insertion
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java1964 public final ResultReceiver stub; field in class:MediaSessionCompat.MediaSessionImplBase.Command
1966 public Command(String command, Bundle extras, ResultReceiver stub) { argument
1969 this.stub = stub;
2033 cb.onCommand(cmd.command, cmd.extras, cmd.stub);

Completed in 222 milliseconds