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

123

/frameworks/native/opengl/tools/glgen/stubs/gles11/
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/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);
H A Dconfigbq.c129 SLInterfaceID ids[1]; local
131 ids[0] = SL_IID_BUFFERQUEUE;
135 &audioSnk, numInterfaces, ids, req);
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
H A Dnode_ext.kt27 val ids = arrayListOf<String>()
28 ids.add(getAndroidId()!!)
33 ids.add(id)
37 return ids
/frameworks/av/media/libmediaplayerservice/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/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.java304 * provides an array of download ids corresponding to the download notification that was
786 public Query setFilterById(long... ids) { argument
787 mIds = ids;
956 * @param ids the IDs of the downloads to be marked 'deleted'
960 public int markRowDeleted(long... ids) { argument
961 if (ids == null || ids.length == 0) {
963 throw new IllegalArgumentException("input param 'ids' can't be null");
969 if (ids.length == 1) {
970 return mResolver.update(ContentUris.withAppendedId(mBaseUri, ids[
985 remove(long... ids) argument
1079 restartDownload(long... ids) argument
1236 getWhereClauseForIds(long[] ids) argument
1253 getWhereArgsForIds(long[] ids) argument
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DFileA3D.java182 int[] ids = new int[numFileEntries];
185 mRS.nFileA3DGetIndexEntries(getID(mRS), numFileEntries, ids, names);
188 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 DGLES30.java502 // C function void glGenQueries ( GLsizei n, GLuint *ids )
506 int[] ids,
510 // C function void glGenQueries ( GLsizei n, GLuint *ids )
514 java.nio.IntBuffer ids
517 // C function void glDeleteQueries ( GLsizei n, const GLuint *ids )
521 int[] ids,
525 // C function void glDeleteQueries ( GLsizei n, const GLuint *ids )
529 java.nio.IntBuffer ids
1625 // C function void glDeleteTransformFeedbacks ( GLsizei n, const GLuint *ids )
1629 int[] ids,
504 glGenQueries( int n, int[] ids, int offset ) argument
519 glDeleteQueries( int n, int[] ids, int offset ) argument
1627 glDeleteTransformFeedbacks( int n, int[] ids, int offset ) argument
1642 glGenTransformFeedbacks( int n, int[] ids, int offset ) 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<>();
63 println(ids)
83 ids.add(key)
109 ids.each {
/frameworks/wilhelm/tests/listening/
H A DseekTorture.c73 SLInterfaceID ids[1] = {SL_IID_SEEK}; local
76 1, ids, flags);
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightPlayer.h67 const media::Metadata::Filter& ids, Parcel *records);
/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 )
/frameworks/rs/
H A Drs.h51 void rsaElementGetSubElements(RsContext, RsElement, uintptr_t *ids, const char **names,
/frameworks/base/core/tests/coretests/src/android/text/
H A DDynamicLayoutBlocksTest.java87 int[] ids = new int[sizes.length];
89 ids[i] = DynamicLayout.INVALID_BLOCK_INDEX;
91 assertState(sizes, ids);
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java298 * Gets the ids of all input devices in the system.
299 * @return The input device ids.
306 final int[] ids = new int[count];
308 ids[i] = mInputDevices.keyAt(i);
310 return ids;
817 final int[] ids;
819 ids = mIm.getInputDeviceIds();
821 throw new RuntimeException("Could not get input device ids.", ex);
825 for (int i = 0; i < ids.length; i++) {
826 mInputDevices.put(ids[
[all...]
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerFunctionalTest.java255 Set<Long> ids = mReceiver.getDownloadIds();
256 assertEquals(1, ids.size());
257 Iterator<Long> it = ids.iterator();
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java206 * @param ids ids of the downloads to wait for.
211 public boolean waitForMultipleDownloadsToFinish(Set<Long> ids, long timeout) argument
215 while (!mFinishedDownloads.containsAll(ids)) {
363 protected boolean waitForMultipleDownloads(Set<Long> ids, long timeout) argument
365 return mListener.waitForMultipleDownloadsToFinish(ids, timeout);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLES20Canvas.java806 IntArray ids = mUnboundTextures;
808 mGLId.glDeleteTextures(null, ids.size(), ids.getInternalArray(), 0);
809 ids.clear();
812 ids = mDeleteBuffers;
813 if (ids.size() > 0) {
814 mGLId.glDeleteBuffers(null, ids.size(), ids.getInternalArray(), 0);
815 ids.clear();
/frameworks/base/telecomm/java/android/telecom/
H A DConnectionService.java1208 List<String> ids = new ArrayList<>();
1211 ids.add(mIdByConnection.get(c));
1214 Collections.sort(ids);
1215 return ids;
1226 List<String> ids = new ArrayList<>();
1232 ids.add(mIdByConnection.get(connection));
1237 ids.add(mIdByConference.get(conference));
1241 Collections.sort(ids);
1242 return ids;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DFlashlightController.java126 String[] ids = mCameraManager.getCameraIdList();
127 for (String id : ids) {

Completed in 930 milliseconds

123