Home
last modified time | relevance | path

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

/cts/tests/tests/graphics/src/android/graphics/cts/
DPathMeasureTest.java39 private Path mPath; field in PathMeasureTest
43 mPath = new Path(); in setup()
75 mPathMeasure.setPath(mPath, true); in testGetPosTan()
76 mPath.addRect(1f, 2f, 3f, 4f, Path.Direction.CW); in testGetPosTan()
77 mPathMeasure.setPath(mPath, true); in testGetPosTan()
86 mPath.addRect(1, 2, 3, 4, Path.Direction.CW); in testNextContour()
87 mPath.addRect(1, 2, 3, 4, Path.Direction.CW); in testNextContour()
88 mPathMeasure.setPath(mPath, true); in testNextContour()
96 mPath.addRect(1, 2, 3, 4, Path.Direction.CW); in testGetLength()
97 mPathMeasure.setPath(mPath, true); in testGetLength()
[all …]
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
DViewClippingTests.java119 Path mPath = new Path(); in testOvalOutlineClip()
122 mPath.reset(); in testOvalOutlineClip()
123 mPath.addOval(0, 0, view.getWidth(), view.getHeight(), in testOvalOutlineClip()
125 outline.setPath(mPath); in testOvalOutlineClip()
143 Path mPath = new Path(); in testConcaveOutlineClip()
146 mPath.reset(); in testConcaveOutlineClip()
147 mPath.addRect(0, 0, 10, 100, Path.Direction.CW); in testConcaveOutlineClip()
148 mPath.addRect(0, 0, 100, 10, Path.Direction.CW); in testConcaveOutlineClip()
149 assertFalse(mPath.isConvex()); in testConcaveOutlineClip()
151 outline.setPath(mPath); in testConcaveOutlineClip()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DReadElf.java125 private final String mPath; field in ReadElf
196 mPath = file.getPath(); in ReadElf()
229 throw new IllegalArgumentException("Invalid ELF file: " + mPath); in readHeader()
238 throw new IOException("Invalid ELF EI_CLASS: " + elfClass + ": " + mPath); in readHeader()
244 throw new IOException("Unsupported ELFDATA2MSB file: " + mPath); in readHeader()
246 throw new IOException("Invalid ELF EI_DATA: " + mEndian + ": " + mPath); in readHeader()
256 throw new IOException("Invalid ELF e_machine: " + e_machine + ": " + mPath); in readHeader()
266 e_machine + "/" + elfClass + ": " + mPath); in readHeader()
271 throw new IOException("Invalid e_version: " + e_version + ": " + mPath); in readHeader()
/cts/tests/tests/systemui/src/android/systemui/cts/
DWindowInsetsPresenterDrawable.java39 private final Path mPath; field in WindowInsetsPresenterDrawable
90 mPath = new Path(); in WindowInsetsPresenterDrawable()
146 canvas.drawPath(mPath, mTouchTrackPaint); in draw()
187 mPath.moveTo(event.getX(), event.getY()); in onTouch()
197 mPath.lineTo(event.getX(), event.getY()); in onTouch()
204 mPath.quadTo(mLastX, mLastY, event.getX(), event.getY()); in onTouch()
212 mPath.lineTo(event.getX(), event.getY()); in onTouch()
/cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/
DMediaBitstreamsTest.java103 private String mPath = ""; field in MediaBitstreamsTest
120 final String mPath, mCodecName, mStatus; field in MediaBitstreamsTest.ConformanceEntry
122 mPath = path; in ConformanceEntry()
128 return String.format("%s,%s,%s", mPath, mCodecName, mStatus); in toString()
220 mPath = path; in MediaBitstreamsTest()
479 File bitstreamFile = new File(mHostBitstreamsPath, mPath); in testBitstreamsConformance()
486 if (!mResults.containsKey(mPath)) { in testBitstreamsConformance()
491 addConformanceEntry(curMethod, mPath, MediaBitstreams.K_UNAVAILABLE, e.toString()); in testBitstreamsConformance()
496 if (!mResults.containsKey(mPath)) { in testBitstreamsConformance()
497 Assert.fail("no results captured for " + mPath); in testBitstreamsConformance()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DRVCVXCheckAnalyzer.java65 private final String mPath; field in RVCVXCheckAnalyzer
79 mPath = path; in RVCVXCheckAnalyzer()
192 final boolean use_solved = new File(mPath, "vision_rpy.log").exists() && !FORCE_CV_ANALYSIS; in processDataSet()
195 nframe = nvlog = loadAttitudeRecs(new File(mPath, "vision_rpy.log"), vrecs); in processDataSet()
196 nslog = loadAttitudeRecs(new File(mPath, "sensor_rpy.log"),srecs); in processDataSet()
255 dumpAttitudeRecs(new File(mPath, "vision_rpy.log"), vrecs); in processDataSet()
256 dumpAttitudeRecs(new File(mPath, "sensor_rpy.log"), srecs); in processDataSet()
258 dumpAttitudeRecs(new File(mPath, "sensor_rpy_resampled.log"), srecs2); in processDataSet()
259 dumpAttitudeError(new File(mPath, "attitude_error.log"), vrecs, srecs2); in processDataSet()
281 report.writeToFile(new File(mPath, "report.json")); in processDataSet()
[all …]