Home
last modified time | relevance | path

Searched refs:stub (Results 1 – 25 of 50) sorted by relevance

12

/frameworks/compile/mclinker/lib/LD/
DStubFactory.cpp45 Stub* stub = NULL; in create() local
59 stub = islands.second->findStub(prototype, pReloc); in create()
62 if (stub == NULL) { in create()
64 stub = islands.first->findStub(prototype, pReloc); in create()
65 if (stub == NULL) { in create()
67 stub = prototype->clone(); in create()
70 stub->applyFixup(pReloc, pBuilder, *islands.first); in create()
73 islands.first->addStub(prototype, pReloc, *stub); in create()
77 return stub; in create()
94 Stub* stub = prototype->clone(); in create() local
[all …]
/frameworks/base/core/tests/coretests/src/android/view/
DViewStubTest.java42 final View stub = activity.findViewById(R.id.viewStub); in testStubbed() local
43 assertNotNull("The ViewStub does not exist", stub); in testStubbed()
51 final ViewStub stub = (ViewStub) activity.findViewById(R.id.viewStub); in testInflated() local
52 final View swapped = stub.inflate(); in testInflated()
62 final ViewStub stub = (ViewStub) activity.findViewById(R.id.viewStubWithId); in testInflatedId() local
63 final View swapped = stub.inflate(); in testInflatedId()
75 final ViewStub stub = (ViewStub) activity.findViewById(R.id.viewStubWithId); in testInflatedLayoutParams() local
76 final View swapped = stub.inflate(); in testInflatedLayoutParams()
81 stub.getLayoutParams().width, swapped.getLayoutParams().width); in testInflatedLayoutParams()
83 stub.getLayoutParams().height, swapped.getLayoutParams().height); in testInflatedLayoutParams()
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/SettingsNoInput/
Ddevice_for_input_source.pfw30 stub = 1
53 stub = 1
76 stub = 1
99 stub = 1
122 stub = 1
145 stub = 1
168 stub = 1
191 stub = 1
214 stub = 1
237 stub = 1
[all …]
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/SettingsNoOutput/
Ddevice_for_strategies.pfw30 stub = 1
58 stub = 1
86 stub = 1
114 stub = 1
142 stub = 1
170 stub = 1
198 stub = 1
226 stub = 1
254 stub = 1
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64LDBackend.cpp328 Stub* stub = getStubFactory()->create(*frag_ref, in scanErrata() local
331 if (stub != NULL) { in scanErrata()
333 assert(stub->symInfo() != NULL && stub->symInfo()->isLocal()); in scanErrata()
335 reinterpret_cast<const AArch64CA53ErratumStub*>(stub); in scanErrata()
344 reloc->setSymInfo(stub->symInfo()); in scanErrata()
349 stubs_strlen += stub->symInfo()->nameSize() + 1; in scanErrata()
406 Stub* stub = getStubFactory()->create(*relocation, // relocation in doRelax() local
410 if (stub != NULL) { in doRelax()
412 assert(stub->symInfo() != NULL && stub->symInfo()->isLocal()); in doRelax()
414 relocation->setSymInfo(stub->symInfo()); in doRelax()
[all …]
/frameworks/base/docs/html/training/sync-adapters/
Dcreating-stub-provider.jd55 content provider, add a stub content provider to your app. A stub provider implements the
57 add a stub provider, you can then use a sync adapter to transfer data from any storage
61 If you already have a content provider in your app, you don't need a stub content provider.
64 content provider, this lesson shows you how to add a stub content provider that allows you to
69 To create a stub content provider for your app, extend the class
70 {@link android.content.ContentProvider} and stub out its required methods. The following
71 snippet shows you how to create the stub provider:
136 app has declared a provider in its app manifest. To declare the stub provider in the
145 Specifies the fully-qualified name of the class that implements the stub content provider.
151 A URI authority that identifies the stub content provider. Make this value your app's
[all …]
Dcreating-authenticator.jd52 ignored, so you can provide an authenticator component that contains stub method
57 This lesson shows you how to define all the parts of a stub authenticator that you need to
65 To add a stub authenticator component to your app, create a class that extends
66 {@link android.accounts.AbstractAccountAuthenticator}, and then stub out the required methods,
70 The following snippet shows an example of a stub authenticator class:
74 * Implement AbstractAccountAuthenticator and stub out all
287 use a content provider already, go to the next lesson to learn how to create a stub content
Dindex.jd110 part of your app. This lesson shows you how to create a stub authentication component for
114 <b><a href="creating-stub-provider.html">Creating a Stub Content Provider</a></b>
119 shows you how to add a stub component. If you have a content provider already in your app,
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/Settings/
Ddevice_for_input_source.pfw21 stub = 0
39 stub = 0
61 stub = 0
83 stub = 0
105 stub = 0
126 stub = 0
145 stub = 0
163 stub = 0
185 stub = 0
204 stub = 0
[all …]
Ddevice_for_strategy_transmitted_through_speaker.pfw31 stub = 0
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
DViewStubProxy.java37 public void onInflate(ViewStub stub, View inflated) {
40 inflated, stub.getLayoutResource());
44 mOnInflateListener.onInflate(stub, inflated);
/frameworks/compile/mclinker/include/mcld/LD/
DDiagLayouts.inc37 "There is no space left to place stubs. Current stub group size: %0\n"
38 "Use --stub-group-size option to increase the group size.",
39 "There is no space left to place stubs. Current stub group size: %0\n"
40 "Use --stub-group-size option to increase the group size.")
/frameworks/opt/net/wifi/service/
DAndroid.mk58 LOCAL_MODULE := libwifi-hal-stub
103 LOCAL_STATIC_LIBRARIES += libwifi-hal-stub
/frameworks/base/media/tests/contents/media_api/videoeditor/
DH264_BP_640x480_15fps_384kbps_60_0.mp41 This is a stub file
/frameworks/support/v17/leanback/src/android/support/v17/leanback/transition/
DTransitionHelper.java326 TransitionStub stub = (TransitionStub) transition; in addTransitionListener() local
327 if (stub.mTransitionListeners == null) { in addTransitionListener()
328 stub.mTransitionListeners = new ArrayList<TransitionListener>(); in addTransitionListener()
330 stub.mTransitionListeners.add(listener); in addTransitionListener()
335 TransitionStub stub = (TransitionStub) transition; in removeTransitionListener() local
336 if (stub.mTransitionListeners != null) { in removeTransitionListener()
337 stub.mTransitionListeners.remove(listener); in removeTransitionListener()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationsQuickSettingsContainer.java124 public void onInflate(ViewStub stub, View inflated) { in onInflate() argument
125 if (stub == mUserSwitcher) { in onInflate()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMLDBackend.cpp859 Stub* stub = getStubFactory()->create(*relocation, // relocation in doRelax() local
863 if (stub != NULL) { in doRelax()
864 assert(stub->symInfo() != NULL); in doRelax()
866 relocation->setSymInfo(stub->symInfo()); in doRelax()
874 assert(stub->symInfo() != NULL && stub->symInfo()->isLocal()); in doRelax()
881 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + in doRelax()
/frameworks/base/media/java/android/media/tv/
DTvInputService.java2016 ITvInputSession stub = new ITvInputSessionWrapper(TvInputService.this,
2037 proxySession.mProxySession = stub;
2047 someArgs.arg2 = stub;
2058 ITvInputSession stub = (ITvInputSession) args.arg2;
2062 cb.onSessionCreated(stub, hardwareSessionToken);
2087 ITvInputSession stub = new ITvInputSessionWrapper(TvInputService.this,
2090 cb.onSessionCreated(stub, null);
/frameworks/base/media/java/android/media/session/
DMediaSession.java1256 public final ResultReceiver stub; field in MediaSession.Command
1258 public Command(String command, Bundle extras, ResultReceiver stub) { in Command() argument
1261 this.stub = stub; in Command()
1321 mCallback.onCommand(cmd.command, cmd.extras, cmd.stub); in handleMessage()
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonLDBackend.cpp575 Stub* stub = getStubFactory()->create(*relocation, // relocation in doRelax() local
579 if (stub != NULL) { in doRelax()
580 assert(stub->symInfo() != NULL); in doRelax()
582 relocation->setSymInfo(stub->symInfo()); in doRelax()
588 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1); in doRelax()
/frameworks/base/docs/html/training/wearables/ui/
Dlayouts.jd160 WatchViewStub stub = (WatchViewStub) findViewById(R.id.watch_view_stub);
161 stub.setOnLayoutInflatedListener(new WatchViewStub.OnLayoutInflatedListener() {
162 &#64;Override public void onLayoutInflated(WatchViewStub stub) {
164 TextView tv = (TextView) stub.findViewById(R.id.text);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DViewStubCompat.java259 void onInflate(ViewStubCompat stub, View inflated); in onInflate() argument
/frameworks/base/core/java/android/view/
DViewStub.java318 void onInflate(ViewStub stub, View inflated); in onInflate() argument
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsLDBackend.cpp776 Stub* stub = getStubFactory()->create( in relaxRelocation() local
779 if (stub == NULL) in relaxRelocation()
782 assert(stub->symInfo() != NULL); in relaxRelocation()
784 pRel.setSymInfo(stub->symInfo()); in relaxRelocation()
790 strtab.setSize(strtab.size() + stub->symInfo()->nameSize() + 1); in relaxRelocation()
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
DListenerBindingObject.java227 public void onInflate(ViewStub stub, View inflated) { in onInflate() argument

12