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

1 2

  /external/chromium_org/build/android/buildbot/
bb_host_steps.py 24 def SrcPath(*path):
30 RunCmd([SrcPath('android_webview', 'tools', 'webview_licenses.py'), 'scan'],
35 RunCmd([SrcPath('build', 'landmines.py')])
36 build_path = SrcPath('out', build_type)
73 '--build-dir', SrcPath('out'),
82 '--build-dir', SrcPath('build'), '--build-output-dir',
83 SrcPath('out')] + bb_utils.EncodeProperties(options),
92 RunCmd([SrcPath('build', 'android', 'findbugs_diff.py')] + build_type)
93 RunCmd([SrcPath(
100 RunCmd([SrcPath('tools', 'prepare-bisect-perf-regression.py')
    [all...]
  /developers/build/
build.gradle 110 def srcPath = "${inputPath}/src/${input}/${filetype[0]}"
112 from(srcPath)
149 def srcPath = "${inputPath}/${samplegen.targetSampleModule()}/src/${input}/${filetype}"
151 from(srcPath)
198 srcDirs.each { srcPath ->
199 println srcPath;
201 def javaPath = "${srcPath}/java";
214 from("${srcPath}/res")
216 into(".") {from("${srcPath}/AndroidManifest.xml")}
  /external/chromium_org/native_client_sdk/src/build_tools/
easy_template.py 63 def RunTemplateFile(srcpath, dstpath, template_dict, statement_re=None,
65 with open(srcpath) as srcfile:
70 def RunTemplateFileIfChanged(srcpath, dstpath, replace):
72 with open(srcpath) as srcfile:
generate_make.py 123 srcpath = os.path.join(srcroot, 'index.html')
135 RunTemplateFileIfChanged(srcpath, dstpath, replace)
140 srcpath = os.path.join(SDK_EXAMPLE_DIR, 'resources', 'manifest.json.template')
156 RunTemplateFileIfChanged(srcpath, dstpath, replace)
parse_dsc.py 155 def LoadProjectTreeUnfiltered(srcpath):
158 for root, _, files in os.walk(srcpath):
172 def LoadProjectTree(srcpath, include, exclude=None):
173 out = LoadProjectTreeUnfiltered(srcpath)
  /external/skia/tools/
skimage_main.cpp 320 static void decodeFileAndWrite(const char srcPath[], const SkString* writePath) {
322 SkFILEStream stream(srcPath);
324 gInvalidStreams.push_back().set(srcPath);
330 gMissingCodecs.push_back().set(srcPath);
340 SkString basename = SkOSPath::SkBasename(srcPath);
347 "failed to decode %s, which is a known failure.", srcPath);
349 gDecodeFailures.push_back().set(srcPath);
359 SkString failure = SkStringPrintf("failed to decode bounds for %s", srcPath);
364 SkString failure = SkStringPrintf("bounds do not match for %s", srcPath);
373 gSuccessfulDecodes.push_back().printf("%s [%d %d]", srcPath, bitmap.width()
    [all...]
  /frameworks/native/cmds/installd/
commands.c 797 int movefileordir(char* srcpath, char* dstpath, int dstbasepos,
804 int srcend = strlen(srcpath);
807 if (lstat(srcpath, statbuf) < 0) {
808 ALOGW("Unable to stat %s: %s\n", srcpath, strerror(errno));
815 ALOGV("Renaming %s to %s (uid %d)\n", srcpath, dstpath, dstuid);
816 if (rename(srcpath, dstpath) >= 0) {
824 srcpath, dstpath, strerror(errno));
830 d = opendir(srcpath);
832 ALOGW("Unable to opendir %s: %s\n", srcpath, strerror(errno));
847 ALOGW("Source path too long; skipping: %s/%s\n", srcpath, name)
886 char srcpath[PKG_PATH_MAX]; local
    [all...]
  /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) {
132 src = handle_to_path(srcPath);
221 void vegaTransformPath(VGPath dstPath, VGPath srcPath)
226 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) {
230 src = handle_to_path(srcPath);
  /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) {
132 src = handle_to_path(srcPath);
221 void vegaTransformPath(VGPath dstPath, VGPath srcPath)
226 if (dstPath == VG_INVALID_HANDLE || srcPath == VG_INVALID_HANDLE) {
230 src = handle_to_path(srcPath);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
AsyncFileSystem.h 68 // Moves a file or directory from srcPath to destPath.
71 virtual void move(const KURL& srcPath, const KURL& destPath, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
73 // Copies a file or directory from srcPath to destPath.
76 virtual void copy(const KURL& srcPath, const KURL& destPath, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
WorkerFileSystemCallbacksBridge.h 87 void postMoveToMainThread(WebFileSystem*, const WebCore::KURL& srcPath, const WebCore::KURL& destPath, const String& mode);
88 void postCopyToMainThread(WebFileSystem*, const WebCore::KURL& srcPath, const WebCore::KURL& destPath, const String& mode);
112 static void moveOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const WebCore::KURL& srcPath, const WebCore::KURL& destPath, PassRefPtr<WorkerFileSystemCallbacksBridge>, const String& mode);
113 static void copyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const WebCore::KURL& srcPath, const WebCore::KURL& destPath, PassRefPtr<WorkerFileSystemCallbacksBridge>, const String& mode);
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileSystem.h 58 // Moves a file or directory at |srcPath| to |destPath|.
61 virtual void move(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
63 // Copies a file or directory at |srcPath| to |destPath|.
66 virtual void copy(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/icu/source/test/intltest/
regextst.h 53 const UnicodeString &input, const char *srcPath, int32_t line);
dcfmtest.cpp 182 const char *srcPath;
189 srcPath=getPath(tdd, "dcfmtest.txt");
190 if(srcPath==NULL) {
195 UChar *testData = ReadAndConvertFile(srcPath, len, status);
  /external/icu4c/test/intltest/
regextst.h 57 const UnicodeString &input, const char *srcPath, int32_t line);
  /external/emma/ant/ant14/com/vladium/emma/report/
reportTask.java 58 final Path srcpath = m_reportCfg.getSourcepath (); local
74 processor.setSourcePath (srcpath != null ? srcpath.list () : null);
  /frameworks/native/cmds/rawbu/
backup.cpp 256 static int backup_dir(FILE* fh, const char* srcPath)
261 int srcLen = strlen(srcPath);
265 dir = opendir(srcPath);
269 srcPath, strerror(errno));
291 strcpy(fullPath, srcPath);
503 static int restore_data(const char* srcPath)
507 FILE* fh = fopen(srcPath, "r");
510 srcPath, strerror(errno));
527 backupFilePath = strdup(srcPath);
534 printf("Restoring from %s to /data...\n", srcPath);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
VideoUtils.java 117 * @param srcPath the path of source video file.
127 private static void genVideoUsingMuxer(String srcPath, String dstPath,
132 extractor.setDataSource(srcPath);
174 retrieverSrc.setDataSource(srcPath);
  /external/chromium_org/third_party/mesa/src/src/mapi/vgapi/
vgapi.csv 5 void, AppendPath, VGPath dstPath, VGPath srcPath
77 void, TransformPath, VGPath dstPath, VGPath srcPath
  /external/chromium_org/third_party/skia/include/core/
SkDraw.h 38 * To save on mallocs, we allow a flag that tells us that srcPath is
46 void drawPath(const SkPath& srcPath, const SkPaint&,
  /external/mesa3d/src/mapi/vgapi/
vgapi.csv 5 void, AppendPath, VGPath dstPath, VGPath srcPath
77 void, TransformPath, VGPath dstPath, VGPath srcPath
  /external/skia/include/core/
SkDraw.h 40 * To save on mallocs, we allow a flag that tells us that srcPath is
48 void drawPath(const SkPath& srcPath, const SkPaint&,
  /external/compiler-rt/
Makefile 233 $(call Set,Tmp.SrcPath,$(ProjSrcRoot)/$(Tmp.SubDir))
250 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.s $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
253 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.S $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
256 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.c $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
259 $(Tmp.ObjPath)/%.o: $(Tmp.SrcPath)/%.cc $(Tmp.Dependencies) $(Tmp.ObjPath)/.dir
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 413 srcpath = os.path.join(srctree, this)
415 if os.path.isdir(srcpath):
417 elif os.path.islink(srcpath):
418 endpoint = os.readlink(srcpath)
424 shutil.copy2(srcpath, dstpath)
  /frameworks/base/services/java/com/android/server/pm/
Installer.java 214 public int movedex(String srcPath, String dstPath) {
217 builder.append(srcPath);

Completed in 1660 milliseconds

1 2