Searched refs:id (Results 1 - 25 of 1331) 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 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/base/docs/html/reference/
H A Dgcm_lists.js2 { id:0, label:"com.google.android.gcm", link:"reference/com/google/android/gcm/package-summary.html", type:"package", deprecated:"false" },
3 { id:1, label:"com.google.android.gcm.GCMBaseIntentService", link:"reference/com/google/android/gcm/GCMBaseIntentService.html", type:"class", deprecated:"true" },
4 { id:2, label:"com.google.android.gcm.GCMBroadcastReceiver", link:"reference/com/google/android/gcm/GCMBroadcastReceiver.html", type:"class", deprecated:"true" },
5 { id:3, label:"com.google.android.gcm.GCMConstants", link:"reference/com/google/android/gcm/GCMConstants.html", type:"class", deprecated:"true" },
6 { id:4, label:"com.google.android.gcm.GCMRegistrar", link:"reference/com/google/android/gcm/GCMRegistrar.html", type:"class", deprecated:"true" },
7 { id:5, label:"com.google.android.gcm.server", link:"reference/com/google/android/gcm/server/package-summary.html", type:"package", deprecated:"false" },
8 { id:6, label:"com.google.android.gcm.server.Constants", link:"reference/com/google/android/gcm/server/Constants.html", type:"class", deprecated:"false" },
9 { id:7, label:"com.google.android.gcm.server.InvalidRequestException", link:"reference/com/google/android/gcm/server/InvalidRequestException.html", type:"class", deprecated:"false" },
10 { id:8, label:"com.google.android.gcm.server.Message", link:"reference/com/google/android/gcm/server/Message.html", type:"class", deprecated:"false" },
11 { id
[all...]
H A Dlists.js2 { id:0, label:"com.google.android.gms", link:"reference/com/google/android/gms/package-summary.html", type:"package", deprecated:"false" },
3 { id:1, label:"com.google.android.gms.R", link:"reference/com/google/android/gms/R.html", type:"class", deprecated:"false" },
4 { id:2, label:"com.google.android.gms.R.attr", link:"reference/com/google/android/gms/R.attr.html", type:"class", deprecated:"false" },
5 { id:3, label:"com.google.android.gms.R.color", link:"reference/com/google/android/gms/R.color.html", type:"class", deprecated:"false" },
6 { id:4, label:"com.google.android.gms.R.drawable", link:"reference/com/google/android/gms/R.drawable.html", type:"class", deprecated:"false" },
7 { id:5, label:"com.google.android.gms.R.id", link:"reference/com/google/android/gms/R.id.html", type:"class", deprecated:"false" },
8 { id:6, label:"com.google.android.gms.R.integer", link:"reference/com/google/android/gms/R.integer.html", type:"class", deprecated:"false" },
9 { id
[all...]
H A Dgms_lists.js2 { id:0, label:"com.google.android.gms", link:"reference/com/google/android/gms/package-summary.html", type:"package", deprecated:"false" },
3 { id:1, label:"com.google.android.gms.R", link:"reference/com/google/android/gms/R.html", type:"class", deprecated:"false" },
4 { id:2, label:"com.google.android.gms.R.attr", link:"reference/com/google/android/gms/R.attr.html", type:"class", deprecated:"false" },
5 { id:3, label:"com.google.android.gms.R.color", link:"reference/com/google/android/gms/R.color.html", type:"class", deprecated:"false" },
6 { id:4, label:"com.google.android.gms.R.drawable", link:"reference/com/google/android/gms/R.drawable.html", type:"class", deprecated:"false" },
7 { id:5, label:"com.google.android.gms.R.id", link:"reference/com/google/android/gms/R.id.html", type:"class", deprecated:"false" },
8 { id:6, label:"com.google.android.gms.R.integer", link:"reference/com/google/android/gms/R.integer.html", type:"class", deprecated:"false" },
9 { id
[all...]
/frameworks/base/media/java/android/media/
H A DIRemoteDisplayProvider.aidl27 void connect(String id);
28 void disconnect(String id);
29 void setVolume(String id, int volume);
30 void adjustVolume(String id, int delta);
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/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsic.java28 ScriptIntrinsic(int id, RenderScript rs) { argument
29 super(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/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DResourcesWrapper.java54 public CharSequence getText(int id) throws NotFoundException { argument
55 return mResources.getText(id);
59 public CharSequence getQuantityText(int id, int quantity) throws NotFoundException { argument
60 return mResources.getQuantityText(id, quantity);
64 public String getString(int id) throws NotFoundException { argument
65 return mResources.getString(id);
69 public String getString(int id, Object... formatArgs) throws NotFoundException { argument
70 return mResources.getString(id, formatArgs);
74 public String getQuantityString(int id, int quantity, Object... formatArgs) argument
76 return mResources.getQuantityString(id, quantit
80 getQuantityString(int id, int quantity) argument
85 getText(int id, CharSequence def) argument
90 getTextArray(int id) argument
95 getStringArray(int id) argument
100 getIntArray(int id) argument
105 obtainTypedArray(int id) argument
110 getDimension(int id) argument
115 getDimensionPixelOffset(int id) argument
120 getDimensionPixelSize(int id) argument
125 getFraction(int id, int base, int pbase) argument
130 getDrawable(int id) argument
135 getDrawable(int id, Theme theme) argument
140 getDrawableForDensity(int id, int density) argument
145 getDrawableForDensity(int id, int density, Theme theme) argument
150 getMovie(int id) argument
155 getColor(int id) argument
160 getColorStateList(int id) argument
165 getBoolean(int id) argument
170 getInteger(int id) argument
175 getLayout(int id) argument
180 getAnimation(int id) argument
185 getXml(int id) argument
190 openRawResource(int id) argument
195 openRawResource(int id, TypedValue value) argument
200 openRawResourceFd(int id) argument
205 getValue(int id, TypedValue outValue, boolean resolveRefs) argument
211 getValueForDensity(int id, int density, TypedValue outValue, boolean resolveRefs) argument
[all...]
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DNotificationBuilderTest.java67 for (int id: new int[] {
68 R.id.clear_1,
69 R.id.clear_2,
70 R.id.clear_3,
71 R.id.clear_4,
72 R.id.clear_5,
73 R.id.clear_6,
74 R.id.clear_7,
75 R.id.clear_8,
76 R.id
197 sendNotification(final int id) argument
206 cancelNotification(final int id) argument
224 buildNotification(int id) argument
440 setChecked(int id) argument
445 getRadioChecked(int id) argument
450 getRadioTag(int id) argument
456 getRadioInt(int id, int def) argument
469 getRadioHex(int id, int def) argument
485 getChecked(int id) argument
490 loadBitmap(int id) argument
495 makeDeleteIntent(int id) argument
503 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/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/support/v4/eclair/android/support/v4/app/
H A DNotificationManagerCompatEclair.java24 int id) {
25 notificationManager.cancel(tag, id);
28 public static void postNotification(NotificationManager notificationManager, String tag, int id, argument
30 notificationManager.notify(tag, id, notification);
23 cancelNotification(NotificationManager notificationManager, String tag, int id) argument
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationUtils.java36 int id = -1;
39 id = field.intValue();
45 return 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/support/v4/java/android/support/v4/content/res/
H A DResourcesCompat.java39 * @param id The desired resource identifier, as generated by the aapt
49 public static Drawable getDrawable(Resources res, int id, Theme theme) argument
53 return ResourcesCompatApi21.getDrawable(res, id, theme);
55 return res.getDrawable(id);
70 * @param id The desired resource identifier, as generated by the aapt
82 public static Drawable getDrawableForDensity(Resources res, int id, int density, Theme theme) argument
86 return ResourcesCompatApi21.getDrawableForDensity(res, id, density, theme);
88 return ResourcesCompatIcsMr1.getDrawableForDensity(res, id, density);
90 return res.getDrawable(id);
/frameworks/base/telephony/java/com/android/ims/internal/
H A DIImsUtListener.aidl33 void utConfigurationUpdated(in IImsUt ut, int id);
34 void utConfigurationUpdateFailed(in IImsUt ut, int id, in ImsReasonInfo error);
39 void utConfigurationQueried(in IImsUt ut, int id, in Bundle ssInfo);
40 void utConfigurationQueryFailed(in IImsUt ut, int id, in ImsReasonInfo error);
46 int id, in ImsSsInfo[] cbInfo);
52 int id, in ImsCallForwardInfo[] cfInfo);
58 int id, in ImsSsInfo[] cwInfo);
/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, "Canvas2", BiDiTestCanvas2.class, R.id.canvas2);
106 addItem(result, "TextView LTR", BiDiTestTextViewLtr.class, R.id
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAction.java35 * @param id The id of the Action.
37 public Action(long id) { argument
38 this(id, "");
44 * @param id The id of the Action.
47 public Action(long id, CharSequence label) { argument
48 this(id, label, null);
54 * @param id The id o
58 Action(long id, CharSequence label1, CharSequence label2) argument
70 Action(long id, CharSequence label1, CharSequence label2, Drawable icon) argument
80 setId(long id) argument
[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/base/packages/Keyguard/test/SampleTrustAgent/src/com/android/trustagent/test/
H A DSampleTrustAgentSettings.java49 findViewById(R.id.enable_trust).setOnClickListener(this);
50 findViewById(R.id.revoke_trust).setOnClickListener(this);
51 findViewById(R.id.crash).setOnClickListener(this);
52 findViewById(R.id.check_device_locked).setOnClickListener(this);
54 mReportUnlockAttempts = (CheckBox) findViewById(R.id.report_unlock_attempts);
57 mReportDeviceLocked = (CheckBox) findViewById(R.id.report_device_locked);
60 mManagingTrust = (CheckBox) findViewById(R.id.managing_trust);
63 mCheckDeviceLockedResult = (TextView) findViewById(R.id.check_device_locked_result);
76 int id = v.getId();
77 if (id
[all...]
/frameworks/base/libs/usb/tests/accessorytest/
H A Daccessory.h20 int init_audio(unsigned int ic, unsigned int id, unsigned int oc, unsigned int od);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DCameraOpenTest.java41 for (int id = 0; id < nCameras; id++) {
43 mCamera.openLegacy(id, Camera.CAMERA_HAL_API_VERSION_1_0);

Completed in 804 milliseconds

1234567891011>>