Searched refs:target (Results 276 - 300 of 645) sorted by last modified time

<<11121314151617181920>>

/frameworks/base/tests/testables/src/android/testing/
H A DTestableLooper.java252 public Object invokeExplosively(Object target, Object... params) throws Throwable { argument
255 return super.invokeExplosively(target, params);
266 ret[0] = super.invokeExplosively(target, params);
336 * Return true to have the message executed and delivered to target.
/frameworks/base/tests/testables/tests/
H A DAndroid.mk31 mockito-target-inline-minus-junit4 \
/frameworks/base/tests/utils/testutils/
H A DAndroid.mk33 mockito-target-minus-junit4 \
/frameworks/base/tests/TtsTests/
H A DAndroid.mk23 LOCAL_STATIC_JAVA_LIBRARIES := mockito-target
/frameworks/base/tests/UiBench/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/base/tests/UsbTests/
H A DAndroid.mk28 mockito-target-inline-minus-junit4 \
/frameworks/base/tests/TouchLatency/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/base/tests/SurfaceComposition/
H A DAndroid.mk19 # Don't include this package in any target
/frameworks/base/tests/SoundTriggerTests/
H A DAndroid.mk30 LOCAL_STATIC_JAVA_LIBRARIES := mockito-target
/frameworks/base/tests/JankBench/scripts/
H A Dadbutil.py48 threading.Thread(target=__track_logcat, name=serial + "-waiter", args=(serial, awaited_string, callback)).start()
/frameworks/base/tests/AmSlam/src/test/amslam/
H A DMainActivity.java107 Class<?> target = nextTarget();
108 Intent intent = new Intent(getApplicationContext(), target);
/frameworks/base/tests/Camera2Tests/CameraToo/tests/
H A DAndroid.mk23 LOCAL_STATIC_JAVA_LIBRARIES := android-support-test mockito-target-minus-junit4
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DBackingStore.java726 RenderTarget target = (RenderTarget) backing.lock(ACCESS_RENDERTARGET);
727 GLToolbox.readTarget(target, mBuffer, mDimensions[0], mDimensions[1]);
845 RenderTarget target = (RenderTarget) backing.lock(ACCESS_RENDERTARGET);
847 GLToolbox.readTarget(target, pixels, mDimensions[0], mDimensions[1]);
H A DCameraStreamer.java84 /** Map of GLSL shaders (one for each target context) */
88 /** Map of target textures (one for each target context) */
92 /** Map of set of clients (one for each target context) */
283 /** Map of target surface textures (one for each target context) */
395 RenderTarget target = mClientRenderTargets.get(surfaceTex);
396 if (target == null) {
397 target = RenderTarget.currentTarget().forSurfaceTexture(surfaceTex);
398 mClientRenderTargets.put(surfaceTex, target);
[all...]
H A DFrameImage2D.java82 * The source and target rectangles must be given in normalized coordinates, where 0,0 is the
85 * If the target rectangle is smaller than the target frame, the pixel values outside of the
86 * target rectangle are undefined.
91 * @param target The target frame to copy to.
93 * @param targetRect The target rectangle in normalized coordinates.
95 public void copyToFrame(FrameImage2D target, RectF sourceRect, RectF targetRect) { argument
97 gpuImageCopy(this, target, sourceRect, targetRect);
99 cpuImageCopy(this, target, sourceRec
[all...]
H A DGLToolbox.java76 public static void readTarget(RenderTarget target, ByteBuffer pixels, int width, int height) { argument
77 target.focus();
103 public static void allocateTexturePixels(int texId, int target, int width, int height) { argument
104 setTexturePixels(texId, target, (ByteBuffer)null, width, height);
107 public static void setTexturePixels(int texId, int target, Bitmap bitmap) { argument
108 GLES20.glBindTexture(target, texId);
109 GLUtils.texImage2D(target, 0, bitmap, 0);
114 public static void setTexturePixels(int texId, int target, ByteBuffer pixels, argument
116 GLES20.glBindTexture(target, texId);
122 GLES20.glTexImage2D(target,
[all...]
H A DGraphExporter.java109 InputPort target = source.getTarget();
113 getDotName(target.getFilter().getName()) + ":" +
114 getDotName(target.getName()) + "_IN;\n" );
130 InputPort target = filter.getConnectedInputPort(portName);
131 if(target != null) {
H A DImageShader.java243 RenderTarget target,
247 shader.process(texture, target, width, height);
277 public void process(TextureSource texture, RenderTarget target, int width, int height) { argument
278 processMulti(new TextureSource[] { texture }, target, width, height);
281 public void processMulti(TextureSource[] sources, RenderTarget target, int width, int height) { argument
285 focusTarget(target, width, height);
297 public void processNoInput(RenderTarget target, int width, int height) { argument
298 processMulti(new TextureSource[] {}, target, width, height);
476 throw new IllegalArgumentException("Expected 8 coordinates as target coordinates but "
487 throw new IllegalArgumentException("Expected 4x4 matrix for target transfor
242 renderTextureToTarget(TextureSource texture, RenderTarget target, int width, int height) argument
604 focusTarget(RenderTarget target, int width, int height) argument
[all...]
H A DOutputPort.java28 * be consumed by the target filter before a new frame can be pushed on the output port. If the
44 * Returns true, if this port is connected to a target port.
45 * @return true, if this port is connected to a target port.
151 void setTarget(InputPort target) { argument
152 mTarget = target;
H A DTextureSource.java32 public static TextureSource fromTexture(int texId, int target) { argument
33 return new TextureSource(texId, target, false);
108 return "TextureSource(id=" + mTexId + ", target=" + mTarget + ")";
115 private TextureSource(int texId, int target, boolean isOwner) { argument
117 mTarget = target;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
H A DQuad.java130 * Returns the transformation matrix to transform the source Quad to the target Quad.
133 * @param target the target quad
134 * @return the transformation matrix to map source to target.
136 public static Matrix getTransform(Quad source, Quad target) { argument
139 transform.setPolyToPoly(source.asCoords(), 0, target.asCoords(), 0, 3);
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
H A DMainActivityTest.java41 private Object invokeMethod(Class targetClass, Object target, String methodName, Object... params) argument
49 return method.invoke(target, params);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransformsAndAnimationsActivity.java167 private void startAnimator(View target) { argument
168 ObjectAnimator anim1b = ObjectAnimator.ofFloat(target, View.ALPHA, 0);
H A DViewPropertyAlphaActivity.java105 private void startAnim(View target) { argument
106 ObjectAnimator anim = ObjectAnimator.ofFloat(target, View.ALPHA, 0);
/frameworks/base/tests/Internal/
H A DAndroid.mk15 mockito-target-minus-junit4

Completed in 349 milliseconds

<<11121314151617181920>>