Home
last modified time | relevance | path

Searched defs:index (Results 1 – 25 of 266) sorted by relevance

1234567891011

/cts/tests/security/src/android/keystore/cts/
DCborUtils.java43 public static int getInt(Map map, long index) { in getInt()
48 public static int getInt(Map map, DataItem index) { in getInt()
53 public static long getLong(Map map, DataItem index) { in getLong()
58 public static Set<Integer> getIntSet(Map map, DataItem index) { in getIntSet()
67 public static Boolean getBoolean(Map map, DataItem index) { in getBoolean()
75 public static List<Boolean> getBooleanList(Map map, DataItem index) { in getBooleanList()
91 public static Date getDate(Map map, DataItem index) { in getDate()
97 public static byte[] getBytes(Map map, DataItem index) { in getBytes()
102 public static String getString(Map map, DataItem index) { in getString()
/cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/
DAssertions.java168 @NonNull List<ContentCaptureEvent> events, int index, @NonNull View expectedView) { in assertViewWithUnknownParentAppeared()
180 int index, @NonNull View expectedDecorView) { in assertDecorViewAppeared()
191 @NonNull List<ContentCaptureEvent> events, int index, @NonNull View expectedView, in assertViewWithUnknownParentAppeared()
213 int index) { in assertViewAppeared()
223 public static void assertViewAppeared(@NonNull List<ContentCaptureEvent> events, int index, in assertViewAppeared()
235 public static void assertViewAppeared(@NonNull List<ContentCaptureEvent> events, int index, in assertViewAppeared()
243 public static void assertViewAppeared(@NonNull List<ContentCaptureEvent> events, int index, in assertViewAppeared()
254 int index) { in assertViewTreeStarted()
262 int index) { in assertViewTreeFinished()
267 int index, int expectedType) { in assertSessionLevelEvent()
[all …]
/cts/tests/tests/media/common/src/android/media/cts/
DMediaCodecAsyncHelper.java60 public void onInputSlot(MediaCodec codec, int index) throws Exception; in onInputSlot()
65 public boolean onOutputSlot(MediaCodec codec, int index, in onOutputSlot()
70 public SlotEvent(boolean input, int index) { in SlotEvent()
75 public SlotEvent(boolean input, int index, MediaCodec.BufferInfo info) { in SlotEvent()
81 public final int index; field in MediaCodecAsyncHelper.SlotEvent
DMediaCodecWrapper.java50 void releaseOutputBuffer(int index, boolean render); in releaseOutputBuffer()
56 ByteBuffer getOutputBuffer(int index); in getOutputBuffer()
60 ByteBuffer getInputBuffer(int index); in getInputBuffer()
65 int index, in queueInputBuffer()
DSdkMediaCodec.java89 public final void releaseOutputBuffer(int index, boolean render) { in releaseOutputBuffer()
109 public ByteBuffer getOutputBuffer(int index) { in getOutputBuffer()
119 public ByteBuffer getInputBuffer(int index) { in getInputBuffer()
125 int index, in queueInputBuffer()
DNdkMediaCodec.java56 …private static native boolean AMediaCodecReleaseOutputBuffer(long ndkMediaCodec, int index, boolea… in AMediaCodecReleaseOutputBuffer()
57 private static native ByteBuffer AMediaCodecGetOutputBuffer(long ndkMediaCodec, int index); in AMediaCodecGetOutputBuffer()
59 private static native ByteBuffer AMediaCodecGetInputBuffer(long ndkMediaCodec, int index); in AMediaCodecGetInputBuffer()
83 int index, in AMediaCodecQueueInputBuffer()
210 public ByteBuffer getOutputBuffer(int index) { in getOutputBuffer()
215 public void releaseOutputBuffer(int index, boolean render) { in releaseOutputBuffer()
235 public ByteBuffer getInputBuffer(int index) { in getInputBuffer()
246 int index, in queueInputBuffer()
/cts/tests/tests/media/codec/src/android/media/codec/cts/
DCodecDynamicTestActivity.java59 int index = mSurfaceViews.size(); in addSurfaceView() local
90 int index = mHolders.indexOf(holder); in surfaceCreated() local
104 int index = mHolders.indexOf(holder); in surfaceDestroyed() local
111 public void waitTillSurfaceIsCreated(int index) throws InterruptedException { in waitTillSurfaceIsCreated()
141 public void markSurface(int index, boolean usable) { in markSurface()
/cts/tests/tests/voiceRecognition/src/android/voicerecognition/cts/
DSpeechRecognitionActivity.java65 public void startListening(int index) { in startListening()
71 public void startListening(Intent intent, int index) { in startListening()
79 public void stopListening(int index) { in stopListening()
87 public void cancel(int index) { in cancel()
95 public void destroyRecognizer(int index) { in destroyRecognizer()
119 public void checkRecognitionSupport(Intent intent, RecognitionSupportCallback rsc, int index) { in checkRecognitionSupport()
128 public void triggerModelDownload(Intent intent, int index) { in triggerModelDownload()
138 Intent intent, ModelDownloadListener listener, int index) { in triggerModelDownloadWithListener()
173 RecognizerInfo getRecognizerInfo(int index) { in getRecognizerInfo()
/cts/tests/tests/os/src/android/os/cts/
DISharedMemoryService.aidl23 byte read(int index); in read()
24 void write(int index, byte value); in write()
DSharedMemoryService.java49 public byte read(int index) throws RemoteException { in read()
58 public void write(int index, byte value) throws RemoteException { in write()
/cts/tests/tests/media/decoder/src/android/media/decoder/cts/
DVideoDecoderCallback.java29 void onInputBufferAvailable(int index, int sampleSize, long presentationTime, in onInputBufferAvailable()
34 void onOutputBufferAvailable(int index, MediaCodec.BufferInfo info); in onOutputBufferAvailable()
52 public void onInputBufferAvailable(MediaCodec codec, int index) { in onInputBufferAvailable()
67 public void onOutputBufferAvailable(MediaCodec codec, int index, MediaCodec.BufferInfo info) { in onOutputBufferAvailable()
/cts/tests/sensor/src/android/hardware/cts/helpers/sensorverification/
DAbstractSensorVerification.java65 public final int index; field in AbstractSensorVerification.IndexedEvent
68 public IndexedEvent(int index, TestSensorEvent event) { in IndexedEvent()
80 public IndexedEventPair(int index, TestSensorEvent event, TestSensorEvent previousEvent) { in IndexedEventPair()
/cts/tests/camera/src/android/hardware/camera2/cts/
DCamera2MultiViewCtsActivity.java50 public TextureView getTextureView(int index) { in getTextureView()
58 public SurfaceView getSurfaceView(int index) { in getSurfaceView()
/cts/common/device-side/bedstead/dpmwrapper/src/main/java/com/android/bedstead/dpmwrapper/
DDataFormatter.java67 static void addArg(Intent intent, Object[] args, int index) { in addArg()
261 private static String getExtraNameForArrayListElement(String baseExtraName, int index) { in getExtraNameForArrayListElement()
266 int index) { in getArg()
365 static String getArgExtraTypeName(int index) { in getArgExtraTypeName()
369 static String getArgExtraValueName(int index) { in getArgExtraValueName()
373 private static void logMarshalling(String operation, int index, String typeName, in logMarshalling()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
DDspBufferBase.java38 public abstract void setValue(int index, double value); in setValue()
40 public abstract void setValues(int index, double... values); in setValues()
DDspBufferComplex.java39 public void setValues(int index, double... values) { in setValues()
45 public void setValue(int index, double value) { in setValue()
DDspBufferDouble.java37 public void setValues(int index, double... values) { in setValues()
42 public void setValue(int index, double value) { in setValue()
/cts/hostsidetests/devicepolicy/app/DelegateApp/src/com/android/cts/delegate/
DSecurityLoggingDelegateTest.java169 private static Object getDatum(SecurityEvent event, int index) { in getDatum()
174 private static String getString(SecurityEvent event, int index) { in getString()
178 private static int getInt(SecurityEvent event, int index) { in getInt()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DGestureDetectionStubAccessibilityService.java71 public int getGesture(int index) { in getGesture()
98 public AccessibilityGestureEvent getGestureInfo(int index) { in getGestureInfo()
133 public int getEvent(int index) { in getEvent()
/cts/tests/tests/media/recorder/src/android/media/recorder/cts/
DMediaRecorderRandomTest.java133 final int index = param % audioSource.length; in testRecorderRandomAction() local
156 int index = param % width.length; in testRecorderRandomAction() local
/cts/apps/CameraITS/tests/scene2_e/
Dtest_num_faces.py41 def check_face_bounding_box(rect, aw, ah, index): argument
68 def check_face_landmarks(face, fd_mode, index): argument
/cts/apps/CameraITS/tests/scene2_c/
Dtest_num_faces.py41 def check_face_bounding_box(rect, aw, ah, index): argument
68 def check_face_landmarks(face, fd_mode, index): argument
/cts/apps/CameraITS/tests/scene2_f/
Dtest_num_faces.py41 def check_face_bounding_box(rect, aw, ah, index): argument
68 def check_face_landmarks(face, fd_mode, index): argument
/cts/apps/CameraITS/tests/scene2_b/
Dtest_num_faces.py41 def check_face_bounding_box(rect, aw, ah, index): argument
68 def check_face_landmarks(face, fd_mode, index): argument
/cts/apps/CameraITS/tests/scene2_a/
Dtest_num_faces.py41 def check_face_bounding_box(rect, aw, ah, index): argument
68 def check_face_landmarks(face, fd_mode, index): argument

1234567891011