HomeSort by relevance Sort by last modified time
    Searched full:dstpath (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/native_client_sdk/src/build_tools/
easy_template.py 72 def RunTemplateFile(srcpath, dstpath, template_dict, statement_re=None,
75 with open(dstpath, 'w') as dstfile:
79 def RunTemplateFileIfChanged(srcpath, dstpath, replace):
84 if os.path.exists(dstpath):
85 with open(dstpath) as dstfile:
89 with open(dstpath, 'w') as dstfile:
generate_make.py 131 dstpath = os.path.join(outdir, 'index.html')
142 RunTemplateFileIfChanged(srcpath, dstpath, replace)
148 dstpath = os.path.join(outdir, 'manifest.json')
166 RunTemplateFileIfChanged(srcpath, dstpath, replace)
build_projects.py 56 dstpath = os.path.join(dstdir, filename)
57 buildbot_common.CopyFile(srcpath, dstpath)
  /external/deqp/external/
fetch_sources.py 44 dstPath = os.path.join(EXTERNAL_DIR, pkg.filename)
49 out = open(dstPath, 'wb')
58 dstPath = os.path.join(EXTERNAL_DIR, pkg.dstDir)
76 if os.path.exists(os.path.join(dstPath, entry)):
80 shutil.move(os.path.join(topLevelPath, entry), dstPath)
85 pkg.postExtract(dstPath)
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_path.c 123 void vegaAppendPath(VGPath dstPath, VGPath srcPath)
128 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) {
133 dst = handle_to_path(dstPath);
143 void vegaAppendPathData(VGPath dstPath,
152 if (dstPath == VG_INVALID_HANDLE) {
171 p = handle_to_path(dstPath);
186 void vegaModifyPathCoords(VGPath dstPath,
194 if (dstPath == VG_INVALID_HANDLE) {
203 p = handle_to_path(dstPath);
221 void vegaTransformPath(VGPath dstPath, VGPath srcPath
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
api_path.c 123 void vegaAppendPath(VGPath dstPath, VGPath srcPath)
128 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) {
133 dst = handle_to_path(dstPath);
143 void vegaAppendPathData(VGPath dstPath,
152 if (dstPath == VG_INVALID_HANDLE) {
171 p = handle_to_path(dstPath);
186 void vegaModifyPathCoords(VGPath dstPath,
194 if (dstPath == VG_INVALID_HANDLE) {
203 p = handle_to_path(dstPath);
221 void vegaTransformPath(VGPath dstPath, VGPath srcPath
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mapi/vgapi/
vgapi.csv 5 void, AppendPath, VGPath dstPath, VGPath srcPath
6 void, AppendPathData, VGPath dstPath, VGint numSegments, const VGubyte *pathSegments, const void *pathData
47 VGboolean, InterpolatePath, VGPath dstPath, VGPath startPath, VGPath endPath, VGfloat amount
53 void, ModifyPathCoords, VGPath dstPath, VGint startIndex, VGint numSegments, const void *pathData
77 void, TransformPath, VGPath dstPath, VGPath srcPath
  /external/mesa3d/src/mapi/vgapi/
vgapi.csv 5 void, AppendPath, VGPath dstPath, VGPath srcPath
6 void, AppendPathData, VGPath dstPath, VGint numSegments, const VGubyte *pathSegments, const void *pathData
47 VGboolean, InterpolatePath, VGPath dstPath, VGPath startPath, VGPath endPath, VGfloat amount
53 void, ModifyPathCoords, VGPath dstPath, VGint startIndex, VGint numSegments, const void *pathData
77 void, TransformPath, VGPath dstPath, VGPath srcPath
  /external/deqp/executor/tools/
xeBatchResultToXml.cpp 232 ResultToXmlFilesLogHandler (vector<xe::TestCaseResultHeader>& resultHeaders, const char* dstPath)
234 , m_dstPath (dstPath)
334 static void batchResultToSeparateXmlFiles (const char* batchResultFilename, const char* dstPath)
341 if (!de::FilePath(dstPath).exists())
342 de::createDirectoryAndParents(dstPath);
344 XE_CHECK_MSG(de::FilePath(dstPath).getType() == de::FilePath::TYPE_DIRECTORY, "Destination is not directory");
348 ResultToXmlFilesLogHandler handler (shortResults, dstPath);
367 de::FilePath indexPath = de::FilePath::join(dstPath, "caselist.xml");
xeExtractShaderPrograms.cpp 50 string dstPath;
70 const string basePath = string(de::FilePath::join(cmdLine.dstPath, casePath).getPath()) + "." + de::toString(programNdx);
214 else if (cmdLine.dstPath.empty())
215 cmdLine.dstPath = arg;
  /external/chromium_org/third_party/skia/src/utils/
SkDashPath.cpp 90 // Only handles lines for now. If returns true, dstPath is the new (smaller)
91 // path. If returns false, then dstPath parameter is ignored.
94 SkPath* dstPath) {
147 dstPath->moveTo(pts[0]);
148 dstPath->lineTo(pts[1]);
  /external/skia/src/utils/
SkDashPath.cpp 90 // Only handles lines for now. If returns true, dstPath is the new (smaller)
91 // path. If returns false, then dstPath parameter is ignored.
94 SkPath* dstPath) {
146 dstPath->moveTo(pts[0]);
147 dstPath->lineTo(pts[1]);
  /frameworks/native/cmds/installd/
commands.c 1222 char dstpath[PKG_PATH_MAX]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
DexDumpAction.java 223 final String dstPath = dstFile.getAbsolutePath();
228 EFS.getLocalFileSystem().getStore(new Path(dstPath));
242 dstPath);
  /external/chromium_org/third_party/skia/samplecode/
ClockFaceView.cpp 215 SkPath path, dstPath;
217 pe->filterPath(&dstPath, path, &rec, NULL);
  /external/skia/samplecode/
ClockFaceView.cpp 200 SkPath path, dstPath;
202 pe->filterPath(&dstPath, path, &rec, NULL);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
VideoUtils.java 118 * @param dstPath the path of destination video file.
127 private static void genVideoUsingMuxer(String srcPath, String dstPath,
138 muxer = new MediaMuxer(dstPath, MediaMuxer.OutputFormat.MUXER_OUTPUT_MPEG_4);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 414 dstpath = os.path.join(dsttree, this)
416 os.mkdir(dstpath)
419 os.symlink(endpoint, dstpath)
424 shutil.copy2(srcpath, dstpath)
bundlebuilder.py 667 dstpath = pathjoin(*pathitems)
672 dstpath = pathjoin("ExtensionModules", dstpath)
676 source = EXT_LOADER % {"name": name, "filename": dstpath}
679 self.files.append((path, pathjoin("Contents", "Resources", dstpath)))
    [all...]
  /external/chromium_org/third_party/mesa/src/include/VG/
openvg.h 593 VG_API_CALL void VG_API_ENTRY vgAppendPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT;
594 VG_API_CALL void VG_API_ENTRY vgAppendPathData(VGPath dstPath,
598 VG_API_CALL void VG_API_ENTRY vgModifyPathCoords(VGPath dstPath, VGint startIndex,
601 VG_API_CALL void VG_API_ENTRY vgTransformPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT;
602 VG_API_CALL VGboolean VG_API_ENTRY vgInterpolatePath(VGPath dstPath,
    [all...]
  /external/mesa3d/include/VG/
openvg.h 593 VG_API_CALL void VG_API_ENTRY vgAppendPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT;
594 VG_API_CALL void VG_API_ENTRY vgAppendPathData(VGPath dstPath,
598 VG_API_CALL void VG_API_ENTRY vgModifyPathCoords(VGPath dstPath, VGint startIndex,
601 VG_API_CALL void VG_API_ENTRY vgTransformPath(VGPath dstPath, VGPath srcPath) VG_API_EXIT;
602 VG_API_CALL VGboolean VG_API_ENTRY vgInterpolatePath(VGPath dstPath,
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
Installer.java 106 public int movedex(String srcPath, String dstPath, String instructionSet) {
116 builder.append(dstPath);
  /ndk/tests/
run-tests.sh 860 DSTPATH="$DSTDIR/$DSTFILE"
861 run $ADB_CMD -s "$DEVICE" push "$SRCPATH" "$DSTPATH" &&
862 run $ADB_CMD -s "$DEVICE" shell chmod 0755 $DSTPATH
890 DSTPATH="$DSTDIR/$DSTFILE"
891 run $ADB_CMD -s "$DEVICE" push "$SRCPATH" "$DSTPATH" &&
892 run $ADB_CMD -s "$DEVICE" shell chmod 0755 $DSTPATH
907 PROGRAM="`basename $DSTPATH`"
913 adb_var_shell_cmd "$DEVICE" "" "rm -f $DSTPATH"
    [all...]
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/___PROJECTNAME___.xcodeproj/
project.pbxproj 22 dstPath = "";
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/___PROJECTNAME___.xcodeproj/
project.pbxproj 23 dstPath = "";

Completed in 2013 milliseconds

1 2