HomeSort by relevance Sort by last modified time
    Searched refs:input_path (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium_org/net/tools/dump_cache/
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);
dump_cache.cc 61 base::FilePath input_path = command_line.GetSwitchValuePath(kInputPath); local
62 if (input_path.empty())
71 int version = GetMajorVersion(input_path);
76 net::SimpleCacheDumper dumper(input_path, output_path);
82 return DumpContents(input_path);
85 return DumpHeaders(input_path);
dump_files.cc 310 int GetMajorVersion(const base::FilePath& input_path) {
311 base::FilePath index_name(input_path.Append(kIndexName));
317 base::FilePath data_name(input_path.Append(FILE_PATH_LITERAL("data_0")));
321 data_name = input_path.Append(FILE_PATH_LITERAL("data_1"));
325 data_name = input_path.Append(FILE_PATH_LITERAL("data_2"));
329 data_name = input_path.Append(FILE_PATH_LITERAL("data_3"));
337 int DumpHeaders(const base::FilePath& input_path) {
338 base::FilePath index_name(input_path.Append(kIndexName));
342 base::FileEnumerator iter(input_path, false,
348 DumpStats(input_path, stats_addr)
    [all...]
simple_cache_dumper.h 25 SimpleCacheDumper(base::FilePath input_path, base::FilePath output_path);
  /external/chromium_org/tools/gyp/test/rules-variables/src/input_path/subdir/
test.c 7 void input_path() { function
8 printf("input_path\n");
  /external/chromium_org/tools/gyp/test/rules-variables/src/subdir/
test.c 7 extern void input_path();
14 input_path();
  /external/llvm/utils/lit/tests/
unittest-adaptor.py 15 input_path = sys.argv[1] variable
16 unittest_suite = lit.discovery.load_test_suite([input_path])
  /external/jsoncpp/test/
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/third_party/WebKit/Source/devtools/scripts/
build_applications.py 24 input_path_flag_index = argv.index('--input_path')
25 input_path = argv[input_path_flag_index + 1]
32 print('Usage: %s app_1 app_2 ... app_N --input_path <input_path> --output_path <output_path> --debug <0_or_1>' % argv[0])
35 loader = modular_build.DescriptorLoader(input_path)
37 concatenate_application_code.build_application(app, loader, input_path, output_path, minify)
generate_protocol_externs.py 84 def generate_protocol_externs(output_path, input_path):
85 input_file = open(input_path, "r")
215 input_path = sys.argv[3] variable
216 generate_protocol_externs(output_path, input_path)
  /external/chromium_org/tools/relocation_packer/test_data/
generate_elf_file_unittest_relocs.py 23 input_path,
31 input_path, output_path]
40 input_path,
42 shutil.copy(input_path, output_path)
  /frameworks/base/tools/layoutlib/rename_font/
build_font_single.py 73 input_path = argv[0]
74 extension = os.path.splitext(input_path)[1].lower()
77 convert_font(input_path, dest_path)
79 shutil.copy(input_path, dest_path)
82 def convert_font(input_path, dest_path):
83 filename = os.path.basename(input_path)
90 ttx_args = ['-q', '-o', ttx_path, input_path]
110 shutil.copy(input_path, dest_path)
build_font.py 83 input_path = os.path.join(dirname, filename)
86 input_fonts.append(input_path)
88 shutil.copy(input_path, dest_dir)
97 def convert_font(input_path):
98 filename = os.path.basename(input_path)
106 ttx_args = ['-q', '-d', dest_dir, input_path]
126 shutil.copy(input_path, dest_dir)
  /external/llvm/utils/llvm-build/llvmbuild/
configutil.py 8 def configure_file(input_path, output_path, substitutions):
9 """configure_file(input_path, output_path, substitutions) -> bool
27 f = open(input_path, "rb")
  /system/core/libsparse/
append2simg.c 57 char *input_path; local
67 input_path = argv[2];
91 input = open(input_path, O_RDONLY | O_BINARY);
  /external/chromium_org/build/android/gyp/
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,
proguard.py 14 injars = options.input_path
  /bootable/recovery/uncrypt/
uncrypt.c 364 const char* input_path; local
376 input_path = argv[1];
380 input_path = parse_recovery_command_file();
381 if (input_path == NULL) {
392 ALOGI("update package is %s", input_path);
397 if (realpath(input_path, path) == NULL) {
398 ALOGE("failed to convert %s to absolute path: %s", input_path, strerror(errno));
  /external/chromium_org/device/usb/tools/
usb_ids.py 18 def ParseTable(input_path):
19 input_file = open(input_path, "r")
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
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/third_party/WebKit/Source/core/html/parser/
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/generate_stubs/
generate_stubs.py     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
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)
  /external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
environment_data_collection_win_unittest.cc 158 base::string16 input_path = local
165 blacklist_registry_key.WriteValue(input_path.c_str(), input_path.c_str());
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 219 const std::string &input_path = OptInputFilenames[0]; local
220 llvm::SmallString<200> output_path(input_path);
224 llvm::errs() << "Failed to determine the absolute path of `" << input_path

Completed in 1247 milliseconds

1 2