Home
last modified time | relevance | path

Searched refs:origPath (Results 1 – 4 of 4) sorted by relevance

/external/clang/lib/ARCMigrate/
DFileRemapper.cpp136 SmallString<200> origPath = StringRef(origFE->getName()); in flushToFile() local
137 fs::make_absolute(origPath); in flushToFile()
138 infoOut << origPath << '\n'; in flushToFile()
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DLSSerializerImpl.java1464 private static String getPathWithoutEscapes(String origPath) { in getPathWithoutEscapes() argument
1465 if (origPath != null && origPath.length() != 0 && origPath.indexOf('%') != -1) { in getPathWithoutEscapes()
1467 StringTokenizer tokenizer = new StringTokenizer(origPath, "%"); in getPathWithoutEscapes()
1468 StringBuffer result = new StringBuffer(origPath.length()); in getPathWithoutEscapes()
1483 return origPath; in getPathWithoutEscapes()
/external/skia/src/gpu/
DGrAAConvexPathRenderer.cpp422 bool GrAAConvexPathRenderer::onDrawPath(const SkPath& origPath, in onDrawPath() argument
430 if (origPath.isEmpty()) { in onDrawPath()
448 origPath.transform(vm, &path); in onDrawPath()
/external/skia/src/pdf/
DSkPDFDevice.cpp716 void SkPDFDevice::drawPath(const SkDraw& d, const SkPath& origPath, in drawPath() argument
720 SkPath* pathPtr = const_cast<SkPath*>(&origPath); in drawPath()
729 origPath.transform(*prePathMatrix, pathPtr); in drawPath()
745 bool fill = paint.getFillPath(origPath, pathPtr); in drawPath()