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

1 2

  /external/chromium_org/build/android/buildbot/
bb_host_steps.py 26 def SrcPath(*path):
32 RunCmd([SrcPath('android_webview', 'tools', 'webview_licenses.py'), 'scan'],
37 RunCmd([SrcPath('build', 'landmines.py')])
38 build_path = SrcPath('out', build_type)
95 RunCmd([SrcPath('build', 'android', 'findbugs_diff.py')] + build_type)
96 RunCmd([SrcPath(
102 RunCmd([SrcPath('tools', 'prepare-bisect-perf-regression.py'),
104 RunCmd([SrcPath('tools', 'run-bisect-perf-regression.py'),
bb_device_steps.py 52 def SrcPath(*path):
232 RunCmd([SrcPath('webkit/tools/layout_tests/run_webkit_tests.py'),
272 exit_code = RunCmd([SrcPath('webkit/tools/layout_tests/run_webkit_tests.py')]
521 RunCmd([SrcPath('build' , 'android', 'adb_logcat_printer.py'),
  /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 130 srcpath = os.path.join(srcroot, 'index.html')
142 RunTemplateFileIfChanged(srcpath, dstpath, replace)
147 srcpath = os.path.join(SDK_RESOURCE_DIR, 'manifest.json.template')
164 RunTemplateFileIfChanged(srcpath, dstpath, replace)
parse_dsc.py 159 def LoadProjectTreeUnfiltered(srcpath):
162 for root, _, files in os.walk(srcpath):
176 def LoadProjectTree(srcpath, include, exclude=None):
177 out = LoadProjectTreeUnfiltered(srcpath)
build_projects.py 42 srcpath = os.path.join(srcdir, filename)
44 buildbot_common.CopyFile(srcpath, dstpath)
  /external/skia/tools/
skimage_main.cpp 429 * @param srcPath The path to the file, for recreating the length-less stream.
430 * @param codec The SkImageDecoder originally used to decode srcPath, which will be used
435 static void test_stream_without_length(const char srcPath[], SkImageDecoder* codec,
441 SkASSERT(srcPath);
443 FILEStreamWithoutLength stream(srcPath);
450 srcPath);
456 "a digest\n", srcPath);
461 "that uses getLength\n", srcPath);
481 static void decodeFileAndWrite(const char srcPath[], const SkString* writePath) {
483 SkFILEStream stream(srcPath);
    [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/public/platform/
WebFileSystem.h 82 // Moves a file or directory at |srcPath| to |destPath|.
85 virtual void move(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); }
87 // Copies a file or directory at |srcPath| to |destPath|.
90 virtual void copy(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks) { BLINK_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/mesa3d/src/mapi/vgapi/
vgapi.csv 5 void, AppendPath, VGPath dstPath, VGPath srcPath
77 void, TransformPath, VGPath dstPath, VGPath srcPath
  /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);
  /external/antlr/antlr-3.4/antlr3-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
Antlr3Mojo.java 483 String srcPath = sourceDirectory.getPath() + File.separator;
485 if (!grammarFileName.startsWith(srcPath)) {
489 File unprefixedGrammarFileName = new File(grammarFileName.substring(srcPath.length()));
  /external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 141 final Path srcpath = m_reportCfg.getSourcepath (); local
142 if (srcpath != null)
145 super.createArg ().setValue (Strings.toListForm (srcpath.list (), ','));

Completed in 894 milliseconds

1 2