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

  /system/extras/bugmailer/
bugmailer.sh 22 tmpPath="/data/local/tmp"
41 /system/bin/dumpstate -o "$tmpPath/bugreport-$timestamp" $@
44 cp "$tmpPath/bugreport-$timestamp.txt" "$writePath/$bugreportPath/bugreport-$timestamp.txt"
46 rm $tmpPath/bugreport*
  /external/llvm/lib/Support/
Path.cpp 234 Path tmpPath;
237 if (tmpPath.set(tmp))
238 if (tmpPath.canRead())
239 Paths.push_back(tmpPath);
245 if (tmpPath.set(std::string(at)))
246 if (tmpPath.canRead())
247 Paths.push_back(tmpPath);
  /packages/apps/Camera/src/com/android/camera/
Storage.java 166 String tmpPath = path + ".tmp";
171 out = new FileOutputStream(tmpPath);
174 new File(tmpPath).renameTo(new File(path));
VideoModule.java     [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...]
  /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/gpu/
SkGpuDevice.cpp     [all...]
GrContext.cpp     [all...]
  /external/skia/src/core/
SkDraw.cpp 908 SkPath tmpPath;
918 result = &tmpPath;
965 doFill = paint->getFillPath(*pathPtr, &tmpPath);
966 pathPtr = &tmpPath;
981 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...]

Completed in 1106 milliseconds