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

1234567891011>>

/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsic.java28 ScriptIntrinsic(long id, RenderScript rs) { argument
29 super(id, rs);
30 if (id == 0) {
H A DProgramFragment.java39 ProgramFragment(long id, RenderScript rs) { argument
40 super(id, rs);
87 long id = mRS.nProgramFragmentCreate(mShader, texNames, tmp);
88 ProgramFragment pf = new ProgramFragment(id, mRS);
H A DProgramVertex.java52 ProgramVertex(long id, RenderScript rs) { argument
53 super(id, rs);
147 long id = mRS.nProgramVertexCreate(mShader, texNames, tmp);
148 ProgramVertex pv = new ProgramVertex(id, mRS);
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...]
H A DScriptIntrinsic3DLUT.java31 private ScriptIntrinsic3DLUT(long id, RenderScript rs, Element e) { argument
32 super(id, rs);
47 long id = rs.nScriptIntrinsicCreate(8, e.getID(rs));
53 return new ScriptIntrinsic3DLUT(id, rs, e);
H A DScriptIntrinsicResize.java25 private ScriptIntrinsicResize(long id, RenderScript rs) { argument
26 super(id, rs);
38 long id = rs.nScriptIntrinsicCreate(12, 0);
39 ScriptIntrinsicResize si = new ScriptIntrinsicResize(id, rs);
H A DScriptIntrinsicYuvToRGB.java30 ScriptIntrinsicYuvToRGB(long id, RenderScript rs) { argument
31 super(id, rs);
46 long id = rs.nScriptIntrinsicCreate(6, e.getID(rs));
47 ScriptIntrinsicYuvToRGB si = new ScriptIntrinsicYuvToRGB(id, rs);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDebugMessageInsertKHR.java1 // C function void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf )
6 int id,
3 glDebugMessageInsertKHR( int source, int type, int id, int severity, String buf ) argument
H A DglDebugMessageCallbackKHR.java4 void onMessage(int source, int type, int id, int severity, String message); argument
/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/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsic.java28 ScriptIntrinsic(int id, RenderScript rs) { argument
29 super(id, rs);
/frameworks/av/media/mtp/
H A DMtpStorageInfo.cpp28 MtpStorageInfo::MtpStorageInfo(MtpStorageID id) argument
29 : mStorageID(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...]
H A DSyncActivityTooManyDeletes.java70 android.R.id.text1,
109 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/tests/inputmethodtests/src/android/os/
H A DInputMethodSubtypeArrayTest.java68 private static InputMethodSubtype createDummySubtype(final int id, final String locale) { argument
72 .setSubtypeId(id)
/frameworks/base/media/java/android/media/
H A DAudioHandle.java28 AudioHandle(int id) { argument
29 mId = id;
32 int id() { method in class:AudioHandle
42 return mId == ah.id();
/frameworks/support/v4/api21/android/support/v4/content/
H A DContextCompatApi21.java25 public static Drawable getDrawable(Context context, int id) { argument
26 return context.getDrawable(id);
/frameworks/support/v4/ics-mr1/android/support/v4/content/res/
H A DResourcesCompatIcsMr1.java25 public static Drawable getDrawableForDensity(Resources res, int id, int density) argument
27 return res.getDrawableForDensity(id, density);
/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) {
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DKeyphraseMetadata.java29 public final int id; field in class:KeyphraseMetadata
34 public KeyphraseMetadata(int id, String keyphrase, ArraySet<Locale> supportedLocales, argument
36 this.id = id;
44 return "id=" + id + ", keyphrase=" + keyphrase + ", supported-locales=" + supportedLocales
/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/com/android/internal/app/
H A DNavItemSelectedListener.java36 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { argument
38 mListener.onNavigationItemSelected(position, id);
/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);

Completed in 1908 milliseconds

1234567891011>>