/external/chromium_org/tools/gyp/test/mac/ |
gyptest-strip.py | 26 def OutPath(s): 42 CheckNsyms(OutPath('no_postprocess'), 29) 43 CheckNsyms(OutPath('no_strip'), 29) 44 CheckNsyms(OutPath('strip_all'), 0) 45 CheckNsyms(OutPath('strip_nonglobal'), 6) 46 CheckNsyms(OutPath('strip_debugging'), 7) 47 CheckNsyms(OutPath('strip_all_custom_flags'), 0) 51 CheckNsyms(OutPath('strip_save'), 7)
|
gyptest-strip-default.py | 27 def OutPath(s): 47 CheckNsyms(OutPath('libsingle_dylib.dylib'), 56 CheckNsyms(OutPath('single_so.so'), 65 CheckNsyms(OutPath('single_exe'),
|
/external/chromium_org/tools/perf/measurements/ |
skpicture_printer.py | 27 outpath = os.path.abspath( 31 js = _JS.format(outpath.replace('\\', '\\\\')) 33 results.Add('output_path', 'path', outpath)
|
/external/webrtc/src/modules/audio_processing/test/ |
apmtest.m | 56 outpath = [filepath 'output/']; 130 outpathtest = [outpath testdir]; 169 function [nErrOut, nCases] = recurseDir(inpath, outpath, refpath, ... 203 opt = [opt ' ' outpath vadoutfile]; 205 opt = [opt ' --vad_out_file ' outpath vadoutfile]; 242 command = [progname ' -o ' outpath outfile ' ' opt]; 257 command = [progname inputCmd ' -o ' outpath outfile ' ' opt]; 268 equal_to_ref = are_files_equal([outpath vadoutfile], ... 276 [equal_to_ref, diffvector] = are_files_equal([outpath outfile], ... 291 [outpath outfile], diffvector) [all...] |
/build/tools/atree/ |
files.h | 33 string outPath;
|
atree.cpp | 233 directories.insert(it->outPath); 235 string s = dir_part(it->outPath); 247 deleted.insert(it->outPath); 267 deleted.count(it->outPath) == 0) { 268 debug_printf("remove %s\n", it->outPath.c_str()); 269 err = remove_recursively(it->outPath); 297 it->outPath.c_str(), it->outMod); 300 err = copy_file(it->sourcePath, it->outPath); 310 debug_printf("strip %s\n", it->outPath.c_str()); 311 err = strip_file(it->outPath); [all...] |
files.cpp | 366 rec->outPath = path_append(base, rec->outName); 370 err = stat(rec->outPath.c_str(), &st);
|
/external/chromium_org/tools/win/link_limiter/ |
build_link_limiter.py | 45 outpath = os.path.join(BUILD_DIR, outfile) 47 if not os.path.exists(outpath) or cpptime > os.path.getmtime(outpath): 59 return outpath
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
applesingle.py | 107 def decode(infile, outpath, resonly=False, verbose=False): 108 """decode(infile, outpath [, resonly=False, verbose=False]) 112 outpath containing only the resource fork from infile. 113 Otherwise it will create an AppleDouble file at outpath 132 asfile.tofile(outpath, resonly=resonly)
|
/cts/tools/utils/ |
android_api_description_splitter.py | 85 def __init__(self, xmlfile, outPath):
88 self.out = os.path.join(outPath, "xml")
148 print "Usage: splitxml.py xmlfile outpath tagname"
|
/developers/build/ |
build.gradle | 32 String outPath(String buildType) { 103 def outputPath = outPath("ant"); 122 def outputPath = outPath("gradle") 182 def outputPath =outPath("browseable"); 224 def inputPath = outPath("gradle")
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
generate_make.py | 97 outpath = os.path.join(relpath, 'make.exe') 100 outpath = outpath.replace(os.path.sep, '\\') 101 fp.write('@%s %%*\n' % outpath)
|
/external/clang/lib/ARCMigrate/ |
PlistReporter.cpp | 94 void arcmt::writeARCDiagsToPlist(const std::string &outPath, 119 llvm::raw_fd_ostream o(outPath.c_str(), errMsg); 121 llvm::errs() << "error: could not create file: " << outPath << '\n';
|
Internals.h | 44 void writeARCDiagsToPlist(const std::string &outPath,
|
/external/chromium_org/tools/gen_keyboard_overlay_data/ |
gen_keyboard_overlay_data.py | 427 def OutputFile(outpath, snippet): 429 out = file(outpath, 'w') 432 print 'Output ' + os.path.normpath(outpath) 443 outpath = os.path.join(outdir, original_filename) 445 outpath = original_path 446 out = file(outpath, 'w') 453 print 'Output ' + os.path.normpath(outpath) 469 outpath = GetPath(os.path.join(outdir, JS_FILENAME)) 476 OutputFile(outpath, snippet)
|
/external/skia/tools/ |
render_pictures_main.cpp | 120 SkString outPath; 125 sk_tools::make_filepath(&outPath, dir, name); 126 SkFILEWStream fileStream(outPath.c_str()); 128 SkDebugf("Failed to write encoded data to \"%s\"\n", outPath.c_str());
|
skimage_main.cpp | 671 SkString outPath; 672 make_outname(&outPath, writePath->c_str(), filename, suffix_for_type(type)); 673 SkFILEWStream file(outPath.c_str()); 675 gSuccessfulDecodes.push_back().appendf("\twrote %s", outPath.c_str()); 677 gEncodeFailures.push_back().printf("Failed to write %s", outPath.c_str()); [all...] |
/cts/tools/dasm/src/dasm/ |
Main.java | 232 .println("dasm [-d <outpath>] [-g] [-h] [-e <encoding>] <file>"
|
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 517 String outPath = outFile.getCanonicalPath(); 518 if (outPath.startsWith(basePath + File.separatorChar)) { 519 if (DEBUG) Log.i(TAG, "[" + domain + " : " + path + "] mapped to " + outPath); 525 Log.e(TAG, "Cross-domain restore attempt: " + outPath);
|
/external/llvm/utils/llvm-build/llvmbuild/ |
main.py | 887 outpath = os.path.join(opts.build_root, subpath) variable [all...] |
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFDevice.cpp | 352 * outPath may alias with invPath (since this is supported by PathOps). 355 SkPath* outPath) { 361 return Op(clipPath, invPath, kIntersect_PathOp, outPath); [all...] |
/external/skia/src/pdf/ |
SkPDFDevice.cpp | 352 * outPath may alias with invPath (since this is supported by PathOps). 355 SkPath* outPath) { 361 return Op(clipPath, invPath, kIntersect_PathOp, outPath); [all...] |