Searched refs:ids (Results 51 - 75 of 129) sorted by relevance

123456

/frameworks/base/core/java/android/service/autofill/
H A DDataset.java512 final ArrayList<AutofillId> ids =
520 for (int i = 0; i < ids.size(); i++) {
521 final AutofillId id = ids.get(i);
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerFunctionalTest.java257 Set<Long> ids = mReceiver.getDownloadIds();
258 assertEquals(1, ids.size());
259 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/native/opengl/tools/glgen/specs/gles11/
H A DGLES32.spec3 void glDebugMessageControl ( GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled )
6 GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
H A DGLES30.spec13 void glGenQueries ( GLsizei n, GLuint *ids )
14 void glDeleteQueries ( GLsizei n, const GLuint *ids )
98 void glDeleteTransformFeedbacks ( GLsizei n, const GLuint *ids )
99 void glGenTransformFeedbacks ( GLsizei n, GLuint *ids )
/frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
H A DMtpDatabase.java273 final String[] ids = new String[cursor.getCount()];
275 ids[i] = cursor.getString(0);
277 return ids;
657 final Set<String> ids = new HashSet<>();
661 if (ids.contains(documentId)) {
664 ids.add(documentId);
678 Document.COLUMN_DOCUMENT_ID + " NOT IN " + getIdList(ids), null);
928 private static String getIdList(Set<String> ids) { argument
930 for (final String id : ids) {
H A DMtpDocumentsProvider.java495 final LinkedList<String> ids = new LinkedList<>();
501 ids.addFirst(i.mDocumentId);
506 ids.addFirst(i.mDocumentId);
518 ids.addFirst(i.mDocumentId);
525 ids.addFirst(i.mDocumentId);
531 return new Path(null, ids);
533 return new Path(/* Should be same with root ID */ i.mDocumentId, ids);
/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/cmds/bootanimation/
H A Daudioplay.cpp174 const SLInterfaceID ids[3] = {SL_IID_BUFFERQUEUE, SL_IID_VOLUME, SL_IID_ANDROIDCONFIGURATION}; local
177 3, ids, req);
/frameworks/base/core/java/android/view/autofill/
H A DIAutoFillManager.aidl52 void setAutofillFailure(int sessionId, in List<AutofillId> ids, int userId);
/frameworks/base/opengl/java/android/opengl/
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
1648 // C function void glDeleteTransformFeedbacks ( GLsizei n, const GLuint *ids )
1652 int[] ids,
504 glGenQueries( int n, int[] ids, int offset ) argument
519 glDeleteQueries( int n, int[] ids, int offset ) argument
1650 glDeleteTransformFeedbacks( int n, int[] ids, int offset ) argument
1665 glGenTransformFeedbacks( int n, int[] ids, int offset ) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DFlashlightControllerImpl.java144 String[] ids = mCameraManager.getCameraIdList();
145 for (String id : ids) {
/frameworks/base/telephony/java/android/telephony/euicc/
H A DEuiccRulesAuthTable.java200 for (CarrierIdentifier[] ids : mCarrierIds) {
201 dest.writeTypedArray(ids, flags);
/frameworks/wilhelm/tests/sandbox/
H A Dintbufq.c124 SLInterfaceID ids[2] = {IID_BUFFERQUEUE, SL_IID_MUTESOLO}; local
127 2, ids, flags);
H A Doutputmix.c127 SLInterfaceID ids[10] = {SL_IID_OBJECT, SL_IID_DYNAMICINTERFACEMANAGEMENT, SL_IID_OUTPUTMIX, local
133 result = (*engineEngine)->CreateOutputMix(engineEngine, &outputMixObject, 10, ids, req);
H A Dmonkey.c117 SLInterfaceID ids[1] = {SL_IID_SEEK}; local
120 &audioSnk, 1, ids, req);
/frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/
H A DWorkContinuationImplTest.java119 List<String> ids = mDatabase.workSpecDao().getAllWorkSpecIds();
120 for (String id : ids) {
500 List<UUID> ids = new ArrayList<>(statuses.size());
502 ids.add(status.getId());
504 assertThat(ids, containsInAnyOrder(
/frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
H A DMtpDocumentsProviderTest.java1008 final Queue<HierarchyDocument> ids = new LinkedList<>();
1013 ids.add(firstDocument);
1016 while (!ids.isEmpty()) {
1017 final HierarchyDocument document = ids.remove();
1034 ids.add(children[0]);
1035 ids.add(children[1]);
1036 ids.add(children[2]);
/frameworks/wilhelm/tests/automated/
H A DBufferQueue_test.cpp64 static const SLInterfaceID ids[1] = { SL_IID_BUFFERQUEUE }; variable
177 &audiosrc, &audiosnk, 1, ids, flags);
190 1, ids, flags);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.h77 const media::Metadata::Filter& ids, Parcel *records);
/frameworks/base/cmds/incident_helper/src/
H A Dih_util.h127 * the text to be parsed, and the ids are the streaming proto encoded field ids.
139 Table(const char* names[], const uint64_t ids[], const int count);
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DSession.java212 * List of dataset ids selected by the user.
347 * Returns the ids of all entries in {@link #mViewStates} in the same order.
352 final AutofillId[] ids = new AutofillId[numViewState];
354 ids[i] = mViewStates.valueAt(i).id;
357 return ids;
1161 + "classification ids)");
1327 + valuesLength + ", ids.length = " + idsLength);
1447 * - autofillValue of all required ids is not null.
1538 // No change on required ids yet, look for changes on optional ids
2261 setAutofillFailureLocked(@onNull List<AutofillId> ids) argument
[all...]
/frameworks/base/media/tests/NativeMidiDemo/jni/
H A Dnativemidi-jni.cpp156 const SLInterfaceID ids[1] = { SL_IID_BUFFERQUEUE }; local
159 engineEngine, &playerObject, &audioSrc, &audioSnk, 1, ids, req);
/frameworks/base/services/tests/shortcutmanagerutils/src/com/android/server/pm/shortcutmanagertest/
H A DShortcutManagerTestUtils.java640 UserHandle user, String packageName, String... ids) {
641 verify(mock).onShortcutsChanged(eq(packageName), checkShortcutIds(ids),
681 public static List<ShortcutInfo> checkShortcutIds(String... ids) { argument
684 return actualSet.equals(set(ids));
686 }, "Shortcut IDs=[" + Arrays.toString(ids) + "]", null);
805 public ShortcutListAsserter selectByIds(String... ids) { argument
806 final Set<String> idSet = set(ids);
639 assertCallbackReceived(LauncherApps.Callback mock, UserHandle user, String packageName, String... ids) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES30.cpp786 /* void glGenQueries ( GLsizei n, GLuint *ids ) */
795 GLuint *ids = (GLuint *) 0; local
800 _exceptionMessage = "ids == null";
812 ids = ids_base + offset;
816 (GLuint *)ids
829 /* void glGenQueries ( GLsizei n, GLuint *ids ) */
839 GLuint *ids = (GLuint *) 0; local
844 _exceptionMessage = "ids == null";
847 ids = (GLuint *)getPointer(_env, ids_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
848 if (ids
875 GLuint *ids = (GLuint *) 0; local
919 GLuint *ids = (GLuint *) 0; local
5235 GLuint *ids = (GLuint *) 0; local
5279 GLuint *ids = (GLuint *) 0; local
5315 GLuint *ids = (GLuint *) 0; local
5359 GLuint *ids = (GLuint *) 0; local
[all...]

Completed in 604 milliseconds

123456