Searched refs:ids (Results 1 - 25 of 89) sorted by relevance

1234

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetDebugMessageLog.java1 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
10 int[] ids,
19 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
25 java.nio.IntBuffer ids,
30 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
38 int[] ids,
43 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
49 java.nio.IntBuffer ids,
3 glGetDebugMessageLog( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
21 glGetDebugMessageLog( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
32 glGetDebugMessageLog( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
45 glGetDebugMessageLog( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
H A DglGetDebugMessageLogKHR.java1 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
10 int[] ids,
19 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
25 java.nio.IntBuffer ids,
30 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
38 int[] ids,
43 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
49 java.nio.IntBuffer ids,
3 glGetDebugMessageLogKHR( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
21 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
32 glGetDebugMessageLogKHR( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
45 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
/frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/dirlist/
H A DMultiSelectManager_SelectionTest.java33 private String[] ids = new String[]{ field in class:MultiSelectManager_SelectionTest
42 selection.add(ids[0]);
43 selection.add(ids[1]);
44 selection.add(ids[2]);
50 assertContains(ids[0]);
51 assertContains(ids[1]);
52 assertContains(ids[2]);
56 selection.remove(ids[0]);
57 selection.remove(ids[2]);
59 assertContains(ids[
[all...]
H A DModelBackedDocumentsAdapterTest.java71 String[] ids = mModel.getModelIds();
72 mAdapter.hide(ids[0], ids[1]);
H A DTestDocumentsAdapter.java59 public SparseArray<String> hide(String... ids) { argument
H A DModelTest.java173 String[] ids = model.getModelIds();
174 assertEquals(ITEM_COUNT, ids.length);
176 Cursor c = model.getItem(ids[i]);
300 String[] ids = model.getModelIds();
303 assertEquals(ITEM_COUNT + DL_COUNT, ids.length);
307 assertTrue(currentDownloads.contains(ids[i]));
324 String[] ids = model.getModelIds();
328 s.add(ids[p]);
/frameworks/wilhelm/tests/sandbox/
H A Dsrcsink.c63 SLInterfaceID ids[1] = {SL_IID_BUFFERQUEUE}; local
67 &audioSnk, 1, ids, req);
74 &audioSnk, 1, ids, req);
86 &audioSnk, 1, ids, req);
98 &audioSnk, 1, ids, req);
111 &audioSnk, 1, ids, req);
116 &audioSnk, 1, ids, req);
124 &audioSnk, 1, ids, req);
129 &audioSnk, 1, ids, req);
137 &audioSnk, 1, ids, re
[all...]
H A Durimime.c78 SLInterfaceID ids[1]; local
80 ids[0] = SL_IID_BUFFERQUEUE;
84 &audioSnk, numInterfaces, ids, req);
88 ids[0] = SL_IID_ANDROIDSIMPLEBUFFERQUEUE;
90 &audioSnk, numInterfaces, ids, req);
/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutLauncher.java100 @NonNull String packageName, @NonNull List<String> ids) {
106 final int idSize = ids.size();
118 final String id = ids.get(i);
171 final ArraySet<String> ids = mPinnedShortcuts.valueAt(i);
172 final int idSize = ids.size();
174 ShortcutService.writeTagValue(out, TAG_PIN, ids.valueAt(j));
198 ArraySet<String> ids = null;
219 ids = new ArraySet<>();
221 PackageWithUser.of(packageUserId, packageName), ids);
229 if (ids
99 pinShortcuts(@onNull ShortcutService s, @UserIdInt int packageUserId, @NonNull String packageName, @NonNull List<String> ids) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DModel.java160 // If the cursor is a merged cursor over multiple authorities, then prefix the ids
212 * @param ids Model IDs to be sorted.
214 private static void binarySort(String[] sortKey, boolean[] isDirs, int[] positions, String[] ids) { argument
220 final String pivotId = ids[start];
254 ids[left + 2] = ids[left + 1];
259 ids[left + 1] = ids[left];
265 System.arraycopy(ids, left, ids, lef
286 binarySort( long[] sortKey, boolean[] isDirs, int[] positions, String[] ids) argument
[all...]
H A DDocumentsAdapter.java70 * @param ids The Model IDs of the items to hide.
74 abstract public SparseArray<String> hide(String... ids); argument
H A DSectionBreakDocumentsAdapterWrapper.java165 public SparseArray<String> hide(String... ids) { argument
168 return mDelegate.hide(ids);
/frameworks/av/media/libmediaplayerservice/tests/
H A DDrmSessionManager_test.cpp87 static void GetSessionId(const uint8_t* ids, size_t num, Vector<uint8_t>* sessionId) { argument
89 sessionId->push_back(ids[i]);
205 const uint8_t ids[] = {123}; local
207 GetSessionId(ids, ARRAY_SIZE(ids), &sessionId);
234 const uint8_t ids[] = {1, 3, 5}; local
236 GetSessionId(ids, ARRAY_SIZE(ids), &sessionId);
/frameworks/av/services/mediadrm/tests/
H A DDrmSessionManager_test.cpp83 static void GetSessionId(const uint8_t* ids, size_t num, Vector<uint8_t>* sessionId) { argument
85 sessionId->push_back(ids[i]);
201 const uint8_t ids[] = {123}; local
203 GetSessionId(ids, ARRAY_SIZE(ids), &sessionId);
230 const uint8_t ids[] = {1, 3, 5}; local
232 GetSessionId(ids, ARRAY_SIZE(ids), &sessionId);
/frameworks/rs/
H A DrsApiElement.cpp35 extern "C" void rsaElementGetSubElements(RsContext con, RsElement elem, uintptr_t *ids, argument
42 ids[i] = (uintptr_t)e->getField(i);
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java166 private CharSequence applyStyles(String str, int[] style, StyleIDs ids) { argument
178 if (type == ids.boldId) {
182 } else if (type == ids.italicId) {
186 } else if (type == ids.underlineId) {
190 } else if (type == ids.ttId) {
194 } else if (type == ids.bigId) {
198 } else if (type == ids.smallId) {
202 } else if (type == ids.subId) {
206 } else if (type == ids.supId) {
210 } else if (type == ids
[all...]
/frameworks/base/core/java/android/app/
H A DDownloadManager.java318 * provides an array of download ids corresponding to the download notification that was
843 public Query setFilterById(long... ids) { argument
844 mIds = ids;
1024 * @param ids the IDs of the downloads to be marked 'deleted'
1028 public int markRowDeleted(long... ids) { argument
1029 if (ids == null || ids.length == 0) {
1031 throw new IllegalArgumentException("input param 'ids' can't be null");
1033 return mResolver.delete(mBaseUri, getWhereClauseForIds(ids), getWhereArgsForIds(ids));
1044 remove(long... ids) argument
1138 restartDownload(long... ids) argument
1167 forceDownload(long... ids) argument
1434 getWhereClauseForIds(long[] ids) argument
1451 getWhereArgsForIds(long[] ids) argument
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DFileA3D.java183 int[] ids = new int[numFileEntries];
186 mRS.nFileA3DGetIndexEntries(getID(mRS), numFileEntries, ids, names);
189 mFileEntries[i] = new IndexEntry(mRS, i, getID(mRS), names[i], EntryType.toEntryType(ids[i]));
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java275 int ids[] = new int[5];
277 ids[i] = mSoundPool.play(mSounds[0], DEFAULT_VOLUME, DEFAULT_VOLUME,
279 if (DEBUG) Log.d(LOG_TAG, "Start note " + ids[i]);
280 if (ids[i] == 0) {
298 if (DEBUG) Log.d(LOG_TAG, "Stop note " + ids[i]);
299 mSoundPool.stop(ids[i]);
/frameworks/base/opengl/java/android/opengl/
H A DGLES31Ext.java262 // C function void glDebugMessageControlKHR ( GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled )
269 int[] ids,
274 // C function void glDebugMessageControlKHR ( GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled )
281 java.nio.IntBuffer ids,
303 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
312 int[] ids,
321 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
327 java.nio.IntBuffer ids,
332 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
340 int[] ids,
264 glDebugMessageControlKHR( int source, int type, int severity, int count, int[] ids, int offset, boolean enabled ) argument
276 glDebugMessageControlKHR( int source, int type, int severity, int count, java.nio.IntBuffer ids, boolean enabled ) argument
305 glGetDebugMessageLogKHR( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
323 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
334 glGetDebugMessageLogKHR( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
347 glGetDebugMessageLogKHR( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
[all...]
H A DGLES32.java267 // C function void glDebugMessageControl ( GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled )
274 int[] ids,
279 // C function void glDebugMessageControl ( GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled )
286 java.nio.IntBuffer ids,
309 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
318 int[] ids,
327 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
333 java.nio.IntBuffer ids,
338 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
346 int[] ids,
269 glDebugMessageControl( int source, int type, int severity, int count, int[] ids, int offset, boolean enabled ) argument
281 glDebugMessageControl( int source, int type, int severity, int count, java.nio.IntBuffer ids, boolean enabled ) argument
311 glGetDebugMessageLog( int count, int bufSize, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset, int[] lengths, int lengthsOffset, byte[] messageLog, int messageLogOffset) argument
329 glGetDebugMessageLog( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities, java.nio.IntBuffer lengths, java.nio.ByteBuffer messageLog) argument
340 glGetDebugMessageLog( int count, int[] sources, int sourcesOffset, int[] types, int typesOffset, int[] ids, int idsOffset, int[] severities, int severitiesOffset) argument
353 glGetDebugMessageLog( int count, java.nio.IntBuffer sources, java.nio.IntBuffer types, java.nio.IntBuffer ids, java.nio.IntBuffer severities) argument
[all...]
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneData.java265 String[] ids = resources.getStringArray(R.array.timezone_rename_ids);
268 int length = ids.length;
269 if (ids.length != labels.length) {
270 Log.e(TAG, "timezone_rename_ids len=" + ids.length + " timezone_rename_labels len="
272 length = Math.min(ids.length, labels.length);
276 TimeZoneInfo tzi = mTimeZonesById.get(ids[i]);
321 * ids. We will explicitly ignore the old ones.
/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
H A DLocalizeDependenciesTask.groovy45 private Set<String> ids = new HashSet<>();
69 println(ids)
94 ids.add(key)
120 ids.each {
/frameworks/wilhelm/tests/listening/
H A DseekTorture.c73 SLInterfaceID ids[1] = {SL_IID_SEEK}; local
76 1, ids, flags);
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES31Ext.spec2 void glDebugMessageControlKHR ( GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled )
5 GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )

Completed in 602 milliseconds

1234