Searched refs:id (Results 1 - 25 of 890) sorted by relevance

1234567891011>>

/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptIntrinsic.java28 ScriptIntrinsic(int id, RenderScript rs) { argument
29 super(id, rs);
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java65 for (int id: new int[] {
66 R.id.clear_1,
67 R.id.clear_2,
68 R.id.clear_3,
69 R.id.clear_4,
70 R.id.clear_5,
71 R.id.clear_6,
72 R.id.clear_7,
73 R.id.clear_8,
74 R.id
195 sendNotification(final int id) argument
218 buildNotification(int id) argument
434 setChecked(int id) argument
439 getRadioChecked(int id) argument
444 getRadioTag(int id) argument
450 getRadioInt(int id, int def) argument
463 getRadioHex(int id, int def) argument
479 getChecked(int id) argument
484 loadBitmap(int id) argument
489 makeDeleteIntent(int id) argument
497 makeContentIntent(int id) argument
[all...]
/frameworks/base/core/java/android/net/
H A DLocalSocketAddress.java45 /** The id matches with a #define in include/cutils/sockets.h */
46 private int id; field in class:LocalSocketAddress.Namespace
47 Namespace (int id) { argument
48 this.id = id;
55 return id;
/frameworks/base/graphics/java/android/renderscript/
H A DScriptIntrinsic.java33 ScriptIntrinsic(int id, RenderScript rs) { argument
34 super(id, rs);
H A DScriptIntrinsicYuvToRGB.java30 ScriptIntrinsicYuvToRGB(int id, RenderScript rs) { argument
31 super(id, rs);
46 int id = rs.nScriptIntrinsicCreate(6, e.getID(rs));
47 ScriptIntrinsicYuvToRGB si = new ScriptIntrinsicYuvToRGB(id, rs);
H A DScriptIntrinsicBlur.java33 private ScriptIntrinsicBlur(int id, RenderScript rs) { argument
34 super(id, rs);
52 int id = rs.nScriptIntrinsicCreate(5, e.getID(rs));
53 ScriptIntrinsicBlur sib = new ScriptIntrinsicBlur(id, rs);
/frameworks/support/v4/jellybean-mr1/android/support/v4/view/
H A DViewCompatJellybeanMr1.java30 public static void setLabelFor(View view, int id) { argument
31 view.setLabelFor(id);
/frameworks/base/core/java/android/content/
H A DContentUris.java29 * <code>content://<em>authority</em>/<em>path</em>/<em>id</em></code>
59 * <em>id</em>
63 * preceding path part. Most providers recognize content URIs that contain an id part
65 * often expects the id part to be a particular value for that column.
93 * @param id to append
97 public static Uri.Builder appendId(Uri.Builder builder, long id) { argument
98 return builder.appendEncodedPath(String.valueOf(id));
105 * @param id to append
109 public static Uri withAppendedId(Uri contentUri, long id) { argument
110 return appendId(contentUri.buildUpon(), id)
[all...]
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselViewHelper.java99 int id = msg.arg1;
100 if (id >= mCarouselView.getCardCount()) {
101 Log.e(TAG, "Index out of range for get, card:" + id);
105 Log.e(TAG, "Unknown message: " + id);
110 final Bitmap bitmap = getTexture(id);
112 mSyncHandler.obtainMessage(SET_TEXTURE_N, id, 0, bitmap).sendToTarget();
115 TextureParameters params = getTextureParameters(id);
117 mSyncHandler.obtainMessage(SET_MATRIX_N, id, 0,
122 final Bitmap bitmap = getDetailTexture(id);
124 mSyncHandler.obtainMessage(SET_DETAIL_TEXTURE_N, id,
178 getTexture(int id) argument
190 getDetailTexture(int id) argument
202 getGeometry(int id) argument
214 getTextureParameters(int id) argument
226 getDetailTextureParameters(int id) argument
230 onRequestTexture(int id) argument
237 onInvalidateTexture(final int id) argument
242 onRequestGeometry(int id) argument
248 onInvalidateGeometry(int id) argument
253 onRequestDetailTexture(int id) argument
260 onInvalidateDetailTexture(int id) argument
[all...]
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestActivity.java39 private static final String KEY_FRAGMENT_ID = "id";
45 public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
46 onListItemClick((ListView)parent, v, position, id);
50 private void onListItemClick(ListView lv, View v, int position, long id) { argument
63 ft.replace(R.id.testframe, fragment);
78 mList = (ListView) findViewById(R.id.testlist);
84 new int[]{android.R.id.text1});
102 addItem(result, "Basic", BiDiTestBasic.class, R.id.basic);
104 addItem(result, "Canvas", BiDiTestCanvas.class, R.id.canvas);
105 addItem(result, "Canvas2", BiDiTestCanvas2.class, R.id
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java51 public CharSequence getText(int id) throws NotFoundException { argument
56 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException { argument
61 public String getString(int id) throws NotFoundException { argument
66 public String getString(int id, Object... formatArgs) throws NotFoundException { argument
71 public String getQuantityString(int id, int quantity, Object... formatArgs) argument
77 public String getQuantityString(int id, int quantity) throws NotFoundException { argument
82 public CharSequence getText(int id, CharSequence def) { argument
87 public CharSequence[] getTextArray(int id) throws NotFoundException { argument
92 public String[] getStringArray(int id) throws NotFoundException { argument
97 public int[] getIntArray(int id) throw argument
102 obtainTypedArray(int id) argument
107 getDimension(int id) argument
112 getDimensionPixelOffset(int id) argument
117 getDimensionPixelSize(int id) argument
122 getDrawable(int id) argument
127 getMovie(int id) argument
132 getColor(int id) argument
137 getColorStateList(int id) argument
142 getInteger(int id) argument
147 getLayout(int id) argument
152 getAnimation(int id) argument
157 getXml(int id) argument
162 openRawResource(int id) argument
167 openRawResourceFd(int id) argument
172 getValue(int id, TypedValue outValue, boolean resolveRefs) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DItem.java30 public int id; field in class:Item
36 public Item(int id, String text) { argument
37 this.id = id;
43 id = in.readInt();
53 dest.writeInt(id);
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationUtils.java38 int id = -1;
41 id = field.intValue();
47 return id;
/frameworks/base/wifi/java/android/net/wifi/
H A DNetworkUpdateResult.java27 public NetworkUpdateResult(int id) { argument
28 netId = id;
39 public void setNetworkId(int id) { argument
40 netId = id;
/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/base/core/java/android/app/
H A DIThumbnailReceiver.aidl27 void newThumbnail(int id, in Bitmap thumbnail, CharSequence description);
H A DNotificationManager.java42 * Each of the notify methods takes an int id parameter and optionally a
44 * are used to form a pair (tag, id), or ({@code null}, id) if tag is
47 * of the notify methods with a (tag, id) pair that is currently active and
50 * be replaced with the new one. This is also the same tag and id you pass
98 * the same id has already been posted by your application and has not yet been canceled, it
101 * @param id An identifier for this notification unique within your
106 public void notify(int id, Notification notification) argument
108 notify(null, id, notification);
113 * the same tag and id ha
122 notify(String tag, int id, Notification notification) argument
144 notifyAsUser(String tag, int id, Notification notification, UserHandle user) argument
168 cancel(int id) argument
178 cancel(String tag, int id) argument
192 cancelAsUser(String tag, int id, UserHandle user) argument
[all...]
/frameworks/native/libs/utils/
H A DRefBase.cpp70 void addStrongRef(const void* /*id*/) { }
71 void removeStrongRef(const void* /*id*/) { }
73 void addWeakRef(const void* /*id*/) { }
74 void removeWeakRef(const void* /*id*/) { }
106 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref);
124 ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref);
139 void addStrongRef(const void* id) { argument
141 // "addStrongRef: RefBase=%p, id=%p", mBase, id);
142 addRef(&mStrongRefs, id, mStron
145 removeStrongRef(const void* id) argument
162 addWeakRef(const void* id) argument
166 removeWeakRef(const void* id) argument
217 const void* id; member in struct:android::RefBase::weakref_impl::ref_entry
224 addRef(ref_entry** refs, const void* id, int32_t mRef) argument
243 removeRef(ref_entry** refs, const void* id) argument
397 incWeak(const void* id) argument
406 decWeak(const void* id) argument
438 attemptIncStrong(const void* id) argument
501 attemptIncWeak(const void* id) argument
587 onIncStrongAttempted(uint32_t flags, const void* id) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerTest.java63 if (user.id == userInfo.id && user.name.equals("Guest 1")
71 removeUser(userInfo.id);
82 assertTrue(findUser(user1.id));
83 assertTrue(findUser(user2.id));
84 removeUser(user1.id);
85 removeUser(user2.id);
90 removeUser(userInfo.id);
92 assertFalse(findUser(userInfo.id));
95 private boolean findUser(int id) { argument
[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/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/core/java/android/content/pm/
H A DUserInfo.java66 public int id; field in class:UserInfo
77 public UserInfo(int id, String name, int flags) { argument
78 this(id, name, null, flags);
81 public UserInfo(int id, String name, String iconPath, int flags) { argument
82 this.id = id;
106 id = orig.id;
115 return new UserHandle(id);
120 return "UserInfo{" + id
[all...]
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DEventSender.java34 public void updateTouchPoint(int id, int x, int y); argument
36 public void releaseTouchPoint(int id); argument
38 public void cancelTouchPoint(int id); argument
/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);

Completed in 1246 milliseconds

1234567891011>>