Searched defs:id (Results 1 - 25 of 348) sorted by relevance

1234567891011>>

/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/graphics/java/android/renderscript/
H A DProgramFragment.java41 ProgramFragment(int id, RenderScript rs) { argument
42 super(id, rs);
89 int id = mRS.nProgramFragmentCreate(mShader, texNames, tmp);
90 ProgramFragment pf = new ProgramFragment(id, mRS);
H A DScriptC.java41 * @param id
44 protected ScriptC(int id, RenderScript rs) { argument
45 super(id, rs);
58 int id = internalCreate(rs, resources, resourceID);
59 if (id == 0) {
62 setID(id);
H A DProgramVertex.java54 ProgramVertex(int id, RenderScript rs) { argument
55 super(id, rs);
148 int id = mRS.nProgramVertexCreate(mShader, texNames, tmp);
149 ProgramVertex pv = new ProgramVertex(id, mRS);
/frameworks/base/test-runner/src/junit/runner/
H A DVersion.java11 public static String id() { method in class:Version
18 System.out.println(id());
/frameworks/av/media/mtp/
H A DMtpStorageInfo.cpp26 MtpStorageInfo::MtpStorageInfo(MtpStorageID id) argument
27 : mStorageID(id),
H A DMtpStorage.cpp35 MtpStorage::MtpStorage(MtpStorageID id, const char* filePath, argument
38 : mStorageID(id),
46 ALOGV("MtpStorage id: %d path: %s\n", id, filePath);
/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...]
H A DSyncActivityTooManyDeletes.java70 android.R.id.text1,
109 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/java/android/app/
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
93 * the same id has already been posted by your application and has not yet been canceled, it
96 * @param id An identifier for this notification unique within your
101 public void notify(int id, Notification notification) argument
103 notify(null, id, notification);
108 * the same tag and id ha
117 notify(String tag, int id, Notification notification) argument
137 cancel(int id) argument
147 cancel(String tag, int id) argument
[all...]
/frameworks/base/core/java/android/gesture/
H A DLearner.java46 * Remove an instance based on its id
48 * @param id
50 void removeInstance(long id) { argument
55 if (id == instance.id) {
H A DInstance.java41 // the id of the instance
42 final long id; field in class:Instance
44 private Instance(long id, float[] sample, String sampleName) { argument
45 this.id = id;
/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/core/java/android/webkit/
H A DL10nUtils.java99 private static String loadString(int id) { argument
104 String localisedString = mApplicationContext.getResources().getString(mIdsArray[id]);
105 mStrings.put(id, new SoftReference<String>(localisedString));
109 public static String getLocalisedString(int id) { argument
113 return loadString(id);
116 SoftReference<String> ref = mStrings.get(id);
118 return needToLoad ? loadString(id) : ref.get();
/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/listview/
H A DListManagedCursor.java50 new int[] {android.R.id.text1});
55 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
/frameworks/base/core/tests/notificationtests/src/android/app/
H A DNotificationStressTest.java79 private void sendNotification(int id, CharSequence text) { argument
86 CharSequence title = text + " " + id;
89 mNotificationManager.notify(id, notification);
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerTest.java45 mUserManager.removeUser(user.id);
63 if (user.id == userInfo.id && user.name.equals("Guest 1")
83 assertTrue(findUser(user1.id));
84 assertTrue(findUser(user2.id));
92 details.removeUser(userInfo.id);
94 assertFalse(findUser(userInfo.id));
97 private boolean findUser(int id) { argument
101 if (user.id == id) {
[all...]
/frameworks/base/telephony/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/rs/cpp/
H A DBaseObj.cpp29 ALOGE("Internal error: Object id 0.");
39 BaseObj::BaseObj(void *id, RenderScript *rs) { argument
41 mID = 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/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.cpp32 ALooper::handler_id id)
34 mTargetID(id),
30 NuPlayerStreamListener( const sp<IStreamSource> &source, ALooper::handler_id id) argument
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dsp_dec.cpp141 id = pointer to an array whose contents are of type char
186 char *id)
214 s->complexityCounter = getCounterId(id);
246 Word8 * id)
249 OSCL_UNUSED_ARG(id);
245 GSMInitDecode(void **state_data, Word8 * id) argument
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dsp_enc.cpp113 id = pointer to an array whose contents are of type char
156 char *id)
173 s->complexityCounter = getCounterId(id);
217 Word8 *id)
221 OSCL_UNUSED_ARG(id);
215 GSMInitEncode(void **state_data, Flag dtx, Word8 *id) argument
/frameworks/base/core/java/android/animation/
H A DAnimatorInflater.java62 * @param id The resource id of the animation to load
63 * @return The animator object reference by the specified id
66 public static Animator loadAnimator(Context context, int id) argument
71 parser = context.getResources().getAnimation(id);
76 Integer.toHexString(id));
82 Integer.toHexString(id));

Completed in 543 milliseconds

1234567891011>>