/external/jsoncpp/test/ |
D | runjsontests.py | 51 for input_path in tests + test_jsonchecker: 52 expect_failure = os.path.basename( input_path ).startswith( 'fail' ) 53 is_json_checker_test = (input_path in test_jsonchecker) or expect_failure 54 print 'TESTING:', input_path, 58 input_path) ) 65 failed_tests.append( (input_path, 'Parsing should have failed:\n%s' % 66 safeReadFile(input_path)) ) 72 failed_tests.append( (input_path, 'Parsing failed:\n' + process_output) ) 76 base_path = os.path.splitext(input_path)[0] 82 failed_tests.append( (input_path, 'Parsing failed:\n' + process_output) ) [all …]
|
/external/chromium_org/net/tools/dump_cache/ |
D | dump_cache.cc | 117 base::FilePath input_path = command_line.GetSwitchValuePath(kInputPath); in main() local 118 if (input_path.empty()) in main() 128 int version = GetMajorVersion(input_path); in main() 144 return RunSlave(input_path, pipe_number); in main() 176 net::SimpleCacheDumper dumper(input_path, output_path); in main() 182 return DumpContents(input_path); in main() 185 return DumpHeaders(input_path); in main()
|
D | dump_files.cc | 310 int GetMajorVersion(const base::FilePath& input_path) { in GetMajorVersion() argument 311 base::FilePath index_name(input_path.Append(kIndexName)); in GetMajorVersion() 317 base::FilePath data_name(input_path.Append(FILE_PATH_LITERAL("data_0"))); in GetMajorVersion() 321 data_name = input_path.Append(FILE_PATH_LITERAL("data_1")); in GetMajorVersion() 325 data_name = input_path.Append(FILE_PATH_LITERAL("data_2")); in GetMajorVersion() 329 data_name = input_path.Append(FILE_PATH_LITERAL("data_3")); in GetMajorVersion() 337 int DumpHeaders(const base::FilePath& input_path) { in DumpHeaders() argument 338 base::FilePath index_name(input_path.Append(kIndexName)); in DumpHeaders() 342 base::FileEnumerator iter(input_path, false, in DumpHeaders() 348 DumpStats(input_path, stats_addr); in DumpHeaders() [all …]
|
D | dump_files.h | 15 int GetMajorVersion(const base::FilePath& input_path); 18 int DumpContents(const base::FilePath& input_path); 21 int DumpHeaders(const base::FilePath& input_path);
|
D | upgrade_win.h | 19 int RunSlave(const base::FilePath& input_path,
|
D | simple_cache_dumper.cc | 22 SimpleCacheDumper::SimpleCacheDumper(base::FilePath input_path, in SimpleCacheDumper() argument 25 input_path_(input_path), in SimpleCacheDumper()
|
D | simple_cache_dumper.h | 29 SimpleCacheDumper(base::FilePath input_path, base::FilePath output_path);
|
/external/chromium_org/build/android/gyp/ |
D | emma_instr.py | 81 if not (options.input_path and options.output_path and 94 if os.path.isdir(options.input_path): 96 shutil.copytree(options.input_path, options.output_path) 98 shutil.copy(options.input_path, options.output_path) 146 if not (options.input_path and options.output_path and 161 '-ip', options.input_path,
|
D | proguard.py | 14 injars = options.input_path
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/ |
D | main-scripts.rb | 38 input_path = local_path( 'input.txt' ) 39 open( input_path, 'w' ) { |f| f.write( "yada yada" ) } 51 input = File.open( input_path ) 57 File.delete( input_path )
|
/external/chromium_org/tools/gyp/test/rules-variables/src/subdir/ |
D | test.c | 7 extern void input_path(); 14 input_path(); in main()
|
/external/llvm/utils/lit/tests/ |
D | unittest-adaptor.py | 15 input_path = sys.argv[1] variable 16 unittest_suite = lit.discovery.load_test_suite([input_path])
|
/external/chromium_org/tools/generate_stubs/ |
D | generate_stubs.py | 1009 for input_path in sig_files: 1010 infile = open(input_path, 'r') 1013 module_name = ExtractModuleName(os.path.basename(input_path)) 1029 for input_path in sig_files: 1030 infile = open(input_path, 'r') 1089 for input_path in sig_files: 1090 name = ExtractModuleName(input_path) 1091 infile = open(input_path, 'r')
|
/external/llvm/utils/llvm-build/llvmbuild/ |
D | configutil.py | 8 def configure_file(input_path, output_path, substitutions): argument 27 f = open(input_path, "rb")
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
D | generate_protocol_externs.py | 84 def generate_protocol_externs(output_path, input_path): argument 85 input_file = open(input_path, "r") 217 input_path = sys.argv[3] variable 218 generate_protocol_externs(output_path, input_path)
|
/external/chromium_org/build/android/ |
D | instr_action.gypi | 11 'input_path%': '', 48 '--input-path=<(input_path)',
|
/external/chromium_org/device/usb/tools/ |
D | usb_ids.py | 18 def ParseTable(input_path): argument 19 input_file = open(input_path, "r")
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | generate-inspector-protocol-version | 407 input_path = sys.argv[3] 408 dir_name = os.path.dirname(input_path) 409 schema = load_json(input_path) 428 load_json(input_path)["domains"], load_json(baseline_path)["domains"], True)
|
D | CodeGeneratorInstrumentation.py | 479 def generate(input_path, output_dir): argument 480 fin = open(input_path, "r") 520 input_path = arg_values[0] variable 531 generate(input_path, output_dirpath)
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | create-html-entity-table | 62 input_path = sys.argv[3] variable 64 with open(input_path) as html_entity_names_file:
|
/external/chromium_org/tools/gyp/test/rules-variables/src/input_path/subdir/ |
D | test.c | 7 void input_path() { in input_path() function
|
/external/chromium_org/gpu/tools/compositor_model_bench/ |
D | compositor_model_bench.cc | 47 base::FilePath input_path; member 93 spec.input_path = path; in QueueTest() 225 const base::FilePath& path = spec.input_path; in InitializeNextTest()
|
/external/chromium_org/tools/gyp/test/rules-variables/src/ |
D | variables.gyp | 30 'input_path/<(RULE_INPUT_PATH)',
|
/external/chromium_org/components/url_fixer/ |
D | url_fixer.cc | 158 base::FilePath input_path(base::UTF8ToWide(text)); in FixupPath() local 159 PrepareStringForFileOps(input_path, &filename); in FixupPath() 165 base::FilePath input_path(text); in FixupPath() local 166 PrepareStringForFileOps(input_path, &filename); in FixupPath()
|
/external/chromium_org/components/ |
D | policy.gypi | 409 'input_path': '<(grit_out_dir)/app/policy/mac/strings', 420 …'>!@(<(apply_locales_cmd) -d \'<(input_path)/ZZLOCALE.lproj/Localizable.strings\' <(available_loca… 428 '<(input_path)/',
|