HomeSort by relevance Sort by last modified time
    Searched defs:tmpPath (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Support/
Path.cpp 241 Path tmpPath;
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);
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
SAXParserTest.java 146 String tmpPath = System.getProperty("java.io.tmpdir");
149 list_wf = new File[] {new File(tmpPath + "/" +
151 list_nwf = new File[] {new File(tmpPath + "/" +
153 list_out_dh = new File[] {new File(tmpPath + "/" +
155 list_out_hb = new File[] {new File(tmpPath + "/" +
167 tmpPath + "/" + SAXParserTestSupport.XML_WF + "staff.dtd"),
173 tmpPath + "/" + SAXParserTestSupport.XML_NWF + "staff.dtd"),
    [all...]
  /external/skia/src/core/
SkPath.cpp     [all...]
SkDraw.cpp 874 SkPath tmpPath;
884 result = &tmpPath;
925 doFill = paint.getFillPath(*pathPtr, &tmpPath);
926 pathPtr = &tmpPath;
941 SkPath* devPathPtr = pathIsMutable ? pathPtr : &tmpPath;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 856 // This is not the most efficient way to add a rect to a path, but if we don't create the tmpPath,
858 QPainterPath tmpPath;
859 tmpPath.addRoundedRect(rect, radius, radius);
860 path = path.united(tmpPath);
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.cpp 767 string tmpPath = path.substr(pos + 7);
768 if (tmpPath.empty())
769 return tmpPath;
772 if (tmpPath[tmpPath.length() - 1] == '/')
773 tmpPath.erase(tmpPath.length() - 1);
775 pos = tmpPath.rfind('/');
777 return tmpPath.substr(pos + 1);
779 return tmpPath;
    [all...]

Completed in 85 milliseconds