Searched refs:tmpPath (Results 1 - 17 of 17) sorted by relevance

/external/deqp/external/
H A Dfetch_sources.py119 tmpPath = os.path.join(EXTERNAL_DIR, ".extract-tmp-%s" % self.baseDir)
123 if os.path.exists(tmpPath):
124 shutil.rmtree(tmpPath, ignore_errors=False)
126 os.mkdir(tmpPath)
128 archive.extractall(tmpPath)
131 extractedEntries = os.listdir(tmpPath)
132 if len(extractedEntries) != 1 or not os.path.isdir(os.path.join(tmpPath, extractedEntries[0])):
135 topLevelPath = os.path.join(tmpPath, extractedEntries[0])
146 shutil.rmtree(tmpPath, ignore_errors=True)
/external/swiftshader/third_party/LLVM/lib/Support/
H A DPath.cpp241 Path tmpPath; local
244 if (tmpPath.set(tmp))
245 if (tmpPath.canRead())
246 Paths.push_back(tmpPath);
252 if (tmpPath.set(std::string(at)))
253 if (tmpPath.canRead())
254 Paths.push_back(tmpPath);
/external/skia/src/gpu/gl/
H A DGrGLPathRange.cpp71 SkTLazy<SkPath> tmpPath; local
79 if (!fStyle.applyToPath(tmpPath.init(), &fill, *skPath, SK_Scalar1)) {
85 skPath = tmpPath.get();
H A DGrGLPath.cpp282 SkTLazy<SkPath> tmpPath; local
289 if (style.applyPathEffectToPath(tmpPath.init(), &stroke, *skPath, SK_Scalar1)) {
290 skPath = tmpPath.get();
303 if (!tmpPath.isValid()) {
304 tmpPath.init();
306 SkAssertResult(stroke.applyToPath(tmpPath.get(), *skPath));
307 skPath = tmpPath.get();
/external/skia/src/gpu/
H A DGrBlurUtils.cpp162 SkTLazy<SkPath> tmpPath; local
168 if (0 == scale || !style.applyToPath(tmpPath.init(), &fillOrHairline, *path, scale)) {
172 path = tmpPath.get();
186 if (!tmpPath.isValid()) {
187 tmpPath.init();
189 result = tmpPath.get();
280 SkTLazy<SkPath> tmpPath; local
289 SkPath* result = pathIsMutable ? const_cast<SkPath*>(path) : tmpPath.init();
H A DGrShape.cpp275 SkTLazy<SkPath> tmpPath; local
285 srcForPathEffect = tmpPath.init();
286 parent.asPath(tmpPath.get());
310 if (!tmpPath.isValid()) {
311 tmpPath.init();
313 tmpParent.get()->asPath(tmpPath.get());
318 *tmpPath.get(), scale));
335 srcForParentStyle = tmpPath.init();
336 parent.asPath(tmpPath.get());
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
H A DCompatibilityTest.java55 String tmpPath = fileName.replaceAll("\\\\", "/");
57 int fileBreak = tmpPath.lastIndexOf('/');
58 this.className = fileName.substring(fileBreak + 1, tmpPath.lastIndexOf('.'));
59 int finalDirBreak = tmpPath.lastIndexOf("/ICU");
60 this.icuVersion = tmpPath.substring(finalDirBreak + 1, fileBreak);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
H A DCompatibilityTest.java54 String tmpPath = fileName.replaceAll("\\\\", "/");
56 int fileBreak = tmpPath.lastIndexOf('/');
57 this.className = fileName.substring(fileBreak + 1, tmpPath.lastIndexOf('.'));
58 int finalDirBreak = tmpPath.lastIndexOf("/ICU");
59 this.icuVersion = tmpPath.substring(finalDirBreak + 1, fileBreak);
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DSwatDeprecated.java190 String tmpPath = tmpFile.getPath();
192 pw.println("tmpFile: " + tmpPath);
284 throw new RuntimeException("unable to delete unneeded temporary file: " + tmpPath);
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
H A DPath.inc228 Path tmpPath;
229 if (tmpPath.set(LLVM_LIBDIR))
230 if (tmpPath.canRead())
231 Paths.push_back(tmpPath);
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
H A DPath.inc279 Path tmpPath;
280 if (tmpPath.set(LLVM_LIBDIR))
281 if (tmpPath.canRead())
282 Paths.push_back(tmpPath);
/external/deqp/scripts/
H A Dmake_release.py332 tmpPath = getTempDir()
334 dstBasePath = os.path.join(tmpPath, releaseName)
335 tmpBasePath = os.path.join(tmpPath, releaseName + "-tmp")
339 print "Creating release %s to %s" % (releaseName, tmpPath)
/external/skia/samplecode/
H A DSampleAndroidShadows.cpp530 SkPath tmpPath; variable
533 Op(fSquareRRectPath, tmpClipPath, kIntersect_SkPathOp, &tmpPath);
541 this->drawShadowedPath(canvas, tmpPath, zFunc, paint, .1f,
/external/skia/src/core/
H A DSkDraw.cpp1085 SkPath tmpPath; local
1088 tmpPath.setIsVolatile(true);
1096 result = &tmpPath;
1141 doFill = paint->getFillPath(*pathPtr, &tmpPath, cullRectPtr,
1143 pathPtr = &tmpPath;
1158 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
H A DSkPaint.cpp1967 SkPath tmpPath;
1969 if (fPathEffect && fPathEffect->filterPath(&tmpPath, src, &rec, cullRect)) {
1970 srcPtr = &tmpPath;
1974 if (srcPtr == &tmpPath) {
1976 // As it is, we want to save making a deep-copy from tmpPath -> dst
1977 // since we know we're just going to delete tmpPath when we return,
1979 dst->swap(tmpPath);
/external/skia/src/gpu/ops/
H A DGrAAConvexPathRenderer.cpp855 SkTLazy<SkPath> tmpPath; variable
857 SkPath* tmpPathPtr = tmpPath.init(*pathPtr);
/external/skia/tests/
H A DPathTest.cpp3284 SkPath tmpPath; local
3285 tmpPath.addOval(rect, isOvalDir, isOvalStart);
3286 REPORTER_ASSERT(reporter, path == tmpPath);

Completed in 3199 milliseconds