Searched defs:id (Results 1 - 25 of 919) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/
H A Ddevices.h21 SLuint32 id; member in struct:AudioInput_id_descriptor
26 SLuint32 id; member in struct:AudioOutput_id_descriptor
31 SLuint32 id; member in struct:LED_id_descriptor
36 SLuint32 id; member in struct:Vibra_id_descriptor
H A Dlocks.cpp270 unsigned id = thiz->mInstanceID; local
271 if (0 != id) {
272 --id;
273 assert(MAX_INSTANCE > id);
277 thisEngine->mChangedMask |= 1 << id;
H A Dsles.cpp60 SLuint32 id = clazz->mSLObjectID; local
61 if (!id) {
62 id = clazz->mXAObjectID;
64 return id;
/frameworks/wilhelm/src/itf/
H A DI3DGrouping.cpp39 unsigned id = thisObject->mInstanceID; local
40 assert(0 != id); // player object must be published by this point
41 --id;
42 assert(MAX_INSTANCE > id);
43 unsigned mask = 1 << id;
H A DIEngineCapabilities.cpp119 *pLEDDeviceID = id_descriptor->id;
128 SLuint32 id = *pLEDDeviceID; local
131 if (id == id_descriptor->id) {
161 *pVibraDeviceID = id_descriptor->id;
170 SLuint32 id = *pVibraDeviceID; local
173 if (id == id_descriptor->id) {
/frameworks/wilhelm/tests/examples/
H A DxaVideoDecoderCapabilities.cpp60 XAuint32 id; member in struct:__anon2179
64 const char *id_to_string(XAuint32 id, const id_to_string_t *table, size_t numEntries) argument
68 if (id == table[i].id) {
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/model/
H A DVideoInfo.java39 public void setId(String id) { argument
40 mId = id;
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/frameworks/support/samples/SupportPercentDemos/src/com/example/android/support/percent/
H A DSupportPercentDemos.java51 new int[] { android.R.id.text1 }));
145 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/support/frameworks/support/samples/SupportPreferenceDemos/src/com/example/android/supportpreference/
H A DSupportPreferenceDemos.java50 new int[] { android.R.id.text1 }));
144 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/support/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/
H A DSupportTransitionDemos.java51 new int[] { android.R.id.text1 }));
142 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/support/frameworks/support/samples/SupportVectorDrawableDemos/src/com/example/android/support/vectordrawable/app/
H A DSupportVectorDrawableDemos.java54 new int[]{android.R.id.text1}));
149 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/model/
H A DVideoInfo.java39 public void setId(String id) { argument
40 mId = id;
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportPercentDemos/src/com/example/android/support/percent/
H A DSupportPercentDemos.java51 new int[] { android.R.id.text1 }));
145 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/support/samples/SupportPreferenceDemos/src/com/example/android/supportpreference/
H A DSupportPreferenceDemos.java50 new int[] { android.R.id.text1 }));
144 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/
H A DSupportTransitionDemos.java51 new int[] { android.R.id.text1 }));
142 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/support/samples/SupportVectorDrawableDemos/src/com/example/android/support/vectordrawable/app/
H A DSupportVectorDrawableDemos.java54 new int[]{android.R.id.text1}));
149 protected void onListItemClick(ListView l, View v, int position, long id) { argument
/frameworks/support/tv-provider/src/android/support/media/tv/
H A DChannel.java584 * @param id The value of {@link Channels#_ID} for the channel.
587 private Builder setId(long id) { argument
588 mValues.put(Channels._ID, id);
606 * Sets the input id of the Channel.
672 * Sets the original network id of the Channel.
684 * Sets the transport stream id of the Channel.
696 * Sets the service id of the Channel.
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentPagerAdapter.java86 + " requires a view id");
182 private static String makeFragmentName(int viewId, long id) { argument
183 return "android:switcher:" + viewId + ":" + id;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBackgroundManager.java305 public boolean setDrawableByLayerId(int id, Drawable drawable) { argument
306 return updateDrawable(id, drawable) != null;
309 public DrawableWrapper updateDrawable(int id, Drawable drawable) { argument
310 super.setDrawableByLayerId(id, drawable);
312 if (getId(i) == id) {
322 public void clearDrawable(int id, Context context) { argument
324 if (getId(i) == id) {
327 super.setDrawableByLayerId(id, createEmptyDrawable(context));
334 public int findWrapperIndexById(int id) { argument
336 if (getId(i) == id) {
[all...]
H A DGuidedStepFragment.java476 return add(fragmentManager, fragment, android.R.id.content);
493 * @param id The id of container to add GuidedStepFragment, can be android.R.id.content.
496 public static int add(FragmentManager fragmentManager, GuidedStepFragment fragment, int id) { argument
503 .replace(id, new DummyFragment(), TAG_LEAN_BACK_ACTIONS_FRAGMENT)
513 return ft.replace(id, fragment, TAG_LEAN_BACK_ACTIONS_FRAGMENT).commit();
533 R.id.action_fragment_root), "action_fragment_root");
535 R.id.action_fragment_background), "action_fragment_background");
537 R.id
633 addAsRoot(Activity activity, GuidedStepFragment fragment, int id) argument
688 findButtonActionById(long id) argument
698 findButtonActionPositionById(long id) argument
781 findActionById(long id) argument
791 findActionPositionById(long id) argument
[all...]
H A DGuidedStepSupportFragment.java479 return add(fragmentManager, fragment, android.R.id.content);
496 * @param id The id of container to add GuidedStepSupportFragment, can be android.R.id.content.
499 public static int add(FragmentManager fragmentManager, GuidedStepSupportFragment fragment, int id) { argument
506 .replace(id, new DummyFragment(), TAG_LEAN_BACK_ACTIONS_FRAGMENT)
516 return ft.replace(id, fragment, TAG_LEAN_BACK_ACTIONS_FRAGMENT).commit();
536 R.id.action_fragment_root), "action_fragment_root");
538 R.id.action_fragment_background), "action_fragment_background");
540 R.id
636 addAsRoot(FragmentActivity activity, GuidedStepSupportFragment fragment, int id) argument
691 findButtonActionById(long id) argument
701 findButtonActionPositionById(long id) argument
784 findActionById(long id) argument
794 findActionPositionById(long id) argument
[all...]
H A DOnboardingFragment.java314 mPageIndicator = (PagingIndicator) view.findViewById(R.id.page_indicator);
317 mStartButton = view.findViewById(R.id.button_start);
320 mMainIconView = (ImageView) view.findViewById(R.id.main_icon);
321 mLogoView = (ImageView) view.findViewById(R.id.logo);
322 mTitleView = (TextView) view.findViewById(R.id.title);
323 mDescriptionView = (TextView) view.findViewById(R.id.description);
563 * Sets the resource ID of the splash logo image. If the logo resource id set, the default logo
566 * @param id The resource ID of the logo image.
568 public final void setLogoResourceId(int id) { argument
569 mLogoResourceId = id;
[all...]
H A DOnboardingSupportFragment.java317 mPageIndicator = (PagingIndicator) view.findViewById(R.id.page_indicator);
320 mStartButton = view.findViewById(R.id.button_start);
323 mMainIconView = (ImageView) view.findViewById(R.id.main_icon);
324 mLogoView = (ImageView) view.findViewById(R.id.logo);
325 mTitleView = (TextView) view.findViewById(R.id.title);
326 mDescriptionView = (TextView) view.findViewById(R.id.description);
566 * Sets the resource ID of the splash logo image. If the logo resource id set, the default logo
569 * @param id The resource ID of the logo image.
571 public final void setLogoResourceId(int id) { argument
572 mLogoResourceId = id;
[all...]

Completed in 4000 milliseconds

1234567891011>>