Searched refs:id (Results 26 - 50 of 1340) sorted by relevance

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
/frameworks/opt/net/ims/src/java/com/android/ims/
H A DImsUt.java128 int id = miUt.queryCallBarring(cbType);
130 if (id < 0) {
136 mPendingCmds.put(Integer.valueOf(id), result);
157 int id = miUt.queryCallForward(condition, number);
159 if (id < 0) {
165 mPendingCmds.put(Integer.valueOf(id), result);
185 int id = miUt.queryCallWaiting();
187 if (id < 0) {
193 mPendingCmds.put(Integer.valueOf(id), result);
212 int id
588 utConfigurationUpdated(IImsUt ut, int id) argument
598 utConfigurationUpdateFailed(IImsUt ut, int id, ImsReasonInfo error) argument
611 utConfigurationQueried(IImsUt ut, int id, Bundle ssInfo) argument
621 utConfigurationQueryFailed(IImsUt ut, int id, ImsReasonInfo error) argument
634 utConfigurationCallBarringQueried(IImsUt ut, int id, ImsSsInfo[] cbInfo) argument
648 utConfigurationCallForwardQueried(IImsUt ut, int id, ImsCallForwardInfo[] cfInfo) argument
662 utConfigurationCallWaitingQueried(IImsUt ut, int id, ImsSsInfo[] cwInfo) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/menu/
H A DMenuBuilder_Delegate.java33 /*package*/ static MenuItemImpl createNewMenuItem(MenuBuilder thisMenu, int group, int id, argument
35 return new BridgeMenuItemImpl(thisMenu, group, id, categoryOrder, ordering, title,
/frameworks/support/v4/api21/android/support/v4/content/res/
H A DResourcesCompatApi21.java24 public static Drawable getDrawable(Resources res, int id, Theme theme) { argument
25 return res.getDrawable(id, theme);
/frameworks/support/v4/java/android/support/v4/content/
H A DWakefulBroadcastReceiver.java82 int id = mNextId;
88 intent.putExtra(EXTRA_WAKE_LOCK_ID, id);
99 mActiveWakeLocks.put(id, wl);
113 final int id = intent.getIntExtra(EXTRA_WAKE_LOCK_ID, 0);
114 if (id == 0) {
118 PowerManager.WakeLock wl = mActiveWakeLocks.get(id);
121 mActiveWakeLocks.remove(id);
130 Log.w("WakefulBroadcastReceiver", "No active wake lock id #" + id);
/frameworks/base/core/java/android/app/
H A DNotificationManager.java47 * Each of the notify methods takes an int id parameter and optionally a
49 * are used to form a pair (tag, id), or ({@code null}, id) if tag is
52 * of the notify methods with a (tag, id) pair that is currently active and
55 * be replaced with the new one. This is also the same tag and id you pass
113 * the same id has already been posted by your application and has not yet been canceled, it
116 * @param id An identifier for this notification unique within your
121 public void notify(int id, Notification notification) argument
123 notify(null, id, notification);
128 * the same tag and id ha
137 notify(String tag, int id, Notification notification) argument
164 notifyAsUser(String tag, int id, Notification notification, UserHandle user) argument
193 cancel(int id) argument
203 cancel(String tag, int id) argument
217 cancelAsUser(String tag, int id, UserHandle user) argument
[all...]
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DCrossfadeMultiple.java52 ViewGroup container = (ViewGroup) findViewById(R.id.container);
55 mButton = (Button) findViewById(R.id.button);
56 mImageView = (ImageView) findViewById(R.id.imageview);
57 mTextView = (TextView) findViewById(R.id.textview);
60 mCrossfade.addTarget(R.id.button).addTarget(R.id.textview).addTarget(R.id.imageview);
96 int id = view.getId();
98 switch (id) {
99 case R.id
[all...]
H A DScenesTestv21.java42 View container = (View) findViewById(R.id.container);
50 fade.addTarget(R.id.resultsText).addTarget(R.id.resultsList);
53 transitionToResults.addTransition(new ChangeBounds().addTarget(R.id.searchContainer));
54 transitionToResults.addTransition(new Recolor().addTarget(R.id.container));
57 transitionToSearch.addTransition(new Fade().addTarget(R.id.resultsText).
58 addTarget(R.id.resultsList));
59 transitionToSearch.addTransition(new ChangeBounds().addTarget(R.id.searchContainer));
60 transitionToSearch.addTransition(new Recolor().addTarget(R.id.container));
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPINView.java61 return R.id.pinEntry;
68 mKeyguardBouncerFrame = (ViewGroup) findViewById(R.id.keyguard_bouncer_frame);
69 mRow0 = (ViewGroup) findViewById(R.id.row0);
70 mRow1 = (ViewGroup) findViewById(R.id.row1);
71 mRow2 = (ViewGroup) findViewById(R.id.row2);
72 mRow3 = (ViewGroup) findViewById(R.id.row3);
73 mDivider = findViewById(R.id.divider);
99 findViewById(R.id.key1), findViewById(R.id.key2), findViewById(R.id
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/
H A DRadioGroupPreCheckedTest.java38 RadioButton radio = (RadioButton) activity.findViewById(R.id.value_one);
41 RadioGroup group = (RadioGroup) activity.findViewById(R.id.group);
42 assertEquals("The first radio button should be checked", R.id.value_one,
50 RadioButton radio = (RadioButton) activity.findViewById(R.id.value_two);
53 RadioButton old = (RadioButton) activity.findViewById(R.id.value_one);
58 RadioGroup group = (RadioGroup) activity.findViewById(R.id.group);
59 assertEquals("The second radio button should be checked", R.id.value_two,
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DKeyStoreLruCache.java47 return mCache.get(key.id);
54 Task.TaskKey lastKey = mTaskKeys.get(key.id);
63 return mCache.get(key.id);
68 mCache.put(key.id, value);
69 mTaskKeys.put(key.id, key);
74 mCache.remove(key.id);
75 mTaskKeys.remove(key.id);
/frameworks/av/include/media/stagefright/foundation/
H A DAHandler.h33 ALooper::handler_id id() const { function in struct:android::AHandler
47 void setID(ALooper::handler_id id) { argument
48 mID = id;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationOverflowContainer.java39 mIconsView = (NotificationOverflowIconsView) findViewById(R.id.overflow_icons_view);
40 mIconsView.setMoreText((TextView) findViewById(R.id.more_text));
41 mIconsView.setOverflowIndicator(findViewById(R.id.more_icon_overflow));
/frameworks/base/rs/java/android/renderscript/
H A DScriptC.java35 * @param id
38 protected ScriptC(int id, RenderScript rs) { argument
39 super(id, rs);
44 * @param id
48 protected ScriptC(long id, RenderScript rs) { argument
49 super(id, rs);
61 long id = internalCreate(rs, resources, resourceID);
62 if (id == 0) {
65 setID(id);
75 long id
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/src/main/java/com/android/layoutlib/test/myapplication/
H A DMyActivity.java29 int id = item.getItemId();
30 if (id == R.id.action_settings) {
/frameworks/support/v4/java/android/support/v4/content/res/
H A DResourcesCompat.java39 * @param id The desired resource identifier, as generated by the aapt
47 public Drawable getDrawable(Resources res, int id, Theme theme) argument
51 return ResourcesCompatApi21.getDrawable(res, id, theme);
53 return res.getDrawable(id);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DTintResources.java42 public Drawable getDrawable(int id) throws NotFoundException { argument
43 Drawable d = super.getDrawable(id);
45 mTintManager.tintDrawable(id, d);
/frameworks/av/services/camera/libcameraservice/device3/
H A DStatusTracker.cpp44 int id; local
48 id = mNextComponentId++;
49 ALOGV("%s: Adding new component %d", __FUNCTION__, id);
51 err = mStates.add(id, IDLE);
53 __FUNCTION__, id, strerror(-err), err);
62 return err < 0 ? err : id;
65 void StatusTracker::removeComponent(int id) { argument
69 ALOGV("%s: Removing component %d", __FUNCTION__, id);
70 idx = mStates.removeItem(id);
83 void StatusTracker::markComponentIdle(int id, cons argument
87 markComponentActive(int id) argument
91 markComponent(int id, ComponentState state, const sp<Fence>& componentFence) argument
[all...]
/frameworks/testing/espresso/espresso-contrib-tests/src/androidTest/java/com/google/android/apps/common/testing/ui/espresso/contrib/
H A DDrawerActionsIntegrationTest.java57 onView(withId(R.id.drawer_layout)).check(matches(isClosed()));
59 openDrawer(R.id.drawer_layout);
62 onView(withId(R.id.drawer_layout)).check(matches(isOpen()));
64 closeDrawer(R.id.drawer_layout);
67 onView(withId(R.id.drawer_layout)).check(matches(isClosed()));
72 onView(withId(R.id.drawer_layout)).check(matches(isClosed()));
75 openDrawer(R.id.drawer_layout);
76 openDrawer(R.id.drawer_layout);
77 openDrawer(R.id.drawer_layout);
80 onView(withId(R.id
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerTest.java58 if (user.id != UserHandle.USER_OWNER) {
59 removeUser(user.id);
75 if (user.id == userInfo.id && user.name.equals("Guest 1")
86 removeUser(userInfo.id);
97 assertTrue(findUser(user1.id));
98 assertTrue(findUser(user2.id));
99 removeUser(user1.id);
100 removeUser(user2.id);
105 removeUser(userInfo.id);
134 findUser(int id) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_UsbDevice.cpp33 int id = usb_device_get_unique_id_from_name(nameStr); local
35 return id;
39 android_hardware_UsbDevice_get_device_name(JNIEnv *env, jobject clazz, jint id) argument
41 char* name = usb_device_get_name_from_unique_id(id);
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DLinearLayoutGrid.java36 return (ViewGroup) findViewById(R.id.layout);
54 return (LinearLayout) findViewById(R.id.column1);
56 return (LinearLayout) findViewById(R.id.column2);
58 return (LinearLayout) findViewById(R.id.column3);
/frameworks/base/services/core/java/com/android/server/lights/
H A DLightsManager.java30 public abstract Light getLight(int id); argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewPropertyAlphaActivity.java53 startAnim(R.id.button);
54 startAnim(R.id.textview);
55 startAnim(R.id.spantext);
56 startAnim(R.id.edittext);
57 startAnim(R.id.selectedtext);
58 startAnim(R.id.textviewbackground);
59 startAnim(R.id.layout);
60 startAnim(R.id.imageview);
63 EditText selectedText = (EditText) findViewById(R.id.selectedtext);
68 Button invalidator = (Button) findViewById(R.id
112 startAnim(int id) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
H A DBridgeResources.java128 private Pair<String, ResourceValue> getResourceValue(int id, boolean[] platformResFlag_out) { argument
129 // first get the String related to this id in the framework
130 Pair<ResourceType, String> resourceInfo = Bridge.resolveResourceId(id);
142 resourceInfo = mProjectCallback.resolveResourceId(id);
157 public Drawable getDrawable(int id) throws NotFoundException { argument
158 return getDrawable(id, null);
162 public Drawable getDrawable(int id, Theme theme) { argument
163 Pair<String, ResourceValue> value = getResourceValue(id, mPlatformResourceFlag);
169 // id was not found or not resolved. Throw a NotFoundException.
170 throwException(id);
177 getColor(int id) argument
198 getColorStateList(int id) argument
217 getText(int id) argument
240 getLayout(int id) argument
284 getAnimation(int id) argument
323 obtainTypedArray(int id) argument
329 getDimension(int id) argument
363 getDimensionPixelOffset(int id) argument
391 getDimensionPixelSize(int id) argument
419 getInteger(int id) argument
451 getBoolean(int id) argument
489 getString(int id, Object... formatArgs) argument
504 getString(int id) argument
519 getValue(int id, TypedValue outValue, boolean resolveRefs) argument
550 getXml(int id) argument
585 loadXmlResourceParser(String file, int id, int assetCookie, String type) argument
610 openRawResource(int id) argument
645 openRawResource(int id, TypedValue value) argument
671 openRawResourceFd(int id) argument
680 throwException(int id) argument
[all...]

Completed in 3303 milliseconds

1234567891011>>