Home
last modified time | relevance | path

Searched refs:meta (Results 1 – 6 of 6) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
DXmpDepthDecode.java66 XMPMeta meta = read(is, false); in XmpDepthDecode() local
68 mFormat = meta.getPropertyString(XMP_DEPTHMAP, "GDepth:Format"); in XmpDepthDecode()
70 mFar = Double.parseDouble(meta.getPropertyString(XMP_DEPTHMAP, "GDepth:Far")); in XmpDepthDecode()
71 mNear = Double.parseDouble(meta.getPropertyString(XMP_DEPTHMAP, "GDepth:Near")); in XmpDepthDecode()
74 String format = meta.getPropertyString( in XmpDepthDecode()
85 byte[] data = meta.getPropertyBase64(XMP_DEPTHMAP, "GDepth:Data"); in XmpDepthDecode()
88 … mBlurAtInfinity = Double.parseDouble(meta.getPropertyString(XMP_FOCUS, "GFocus:BlurAtInfinity")); in XmpDepthDecode()
89 … mFocalDistance = Double.parseDouble(meta.getPropertyString(XMP_FOCUS, "GFocus:FocalDistance")); in XmpDepthDecode()
90 … mDepthOfFiled = Double.parseDouble(meta.getPropertyString(XMP_FOCUS, "GFocus:DepthOfField")); in XmpDepthDecode()
91 … mFocalPointX = Double.parseDouble(meta.getPropertyString(XMP_FOCUS, "GFocus:FocalPointX")); in XmpDepthDecode()
[all …]
Dlayered_filter_d1new_helper.rsh52 int depth = sharp_input_actual_depth; // Get meta data actual_depth
93 int depth = sharp_input_actual_depth; // Get meta data actual_depth
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DRVCVXCheckAnalyzer.java784 VideoMetaInfo meta = new VideoMetaInfo(new File(mPath, "videometa.json")); in analyzeVideo() local
790 if (meta.fps > DECIMATION_FPS_TARGET) { in analyzeVideo()
791 decimation = (int)(meta.fps / DECIMATION_FPS_TARGET); in analyzeVideo()
792 meta.fps /=decimation; in analyzeVideo()
805 if (frameSize.width != meta.frameWidth || frameSize.height != meta.frameHeight) { in analyzeVideo()
816 float fc = (float)(meta.frameWidth/2.0/Math.tan(meta.fovWidth/2.0)); in analyzeVideo()
897 timestamp = (double) i / meta.fps; in analyzeVideo()
/cts/tests/tests/text/src/android/text/method/cts/
DBaseMovementMethodTest.java206 private static MotionEvent createScrollEvent(int horizontal, int vertical, int meta) { in createScrollEvent() argument
216 pointerProperties, coords, meta, 0, 1.0f, 1.0f, 0, 0, in createScrollEvent()
/cts/tests/tests/view/src/android/view/cts/
DKeyCharacterMapTest.java344 result.meta = new char[2]; in testGetKeyData()
350 result.meta = new char[4]; in testGetKeyData()
353 assertEquals(48, result.meta[0]); in testGetKeyData()
DKeyEventTest.java179 assertEquals('z', keyData.meta[0]); in testGetKeyData()
180 assertEquals('Z', keyData.meta[1]); in testGetKeyData()
181 assertEquals(0, keyData.meta[3]); in testGetKeyData()