Home
last modified time | relevance | path

Searched refs:input_path (Results 1 – 16 of 16) sorted by relevance

/external/jsoncpp/test/
Drunjsontests.py52 for input_path in tests + test_jsonchecker:
53 expect_failure = os.path.basename( input_path ).startswith( 'fail' )
54 is_json_checker_test = (input_path in test_jsonchecker) or expect_failure
55 print('TESTING:', input_path, end=' ')
59 input_path) )
66 failed_tests.append( (input_path, 'Parsing should have failed:\n%s' %
67 safeReadFile(input_path)) )
73 failed_tests.append( (input_path, 'Parsing failed:\n' + process_output) )
77 base_path = os.path.splitext(input_path)[0]
83 failed_tests.append( (input_path, 'Parsing failed:\n' + process_output) )
[all …]
Dpyjsontestrunner.py12 input_path = sys.argv[1] variable
13 base_path = os.path.splitext(input_path)[0]
59 input = file( input_path, 'rt' ).read()
/external/pdfium/testing/tools/
Dtest_runner.py87 input_path = os.path.join(source_dir, input_root + '.in')
94 if not os.path.exists(input_path):
103 input_path])
124 def HandleResult(self, input_filename, input_path, result): argument
135 self.surprises.append(input_path)
138 self.failures.append(input_path)
200 input_path = os.path.join(walk_from_dir, file_name)
201 if not os.path.isfile(input_path):
205 test_cases.append((os.path.basename(input_path),
206 os.path.dirname(input_path)))
[all …]
Dfixup_pdf_template.py74 def expand_file(input_path, output_path): argument
77 with open(input_path, 'rb') as infile:
82 print >> sys.stderr, 'failed to process %s' % input_path
/external/autotest/client/site_tests/video_VideoEncodeAccelerator/
Dvideo_VideoEncodeAccelerator.py125 input_path = os.path.join(self.tmpdir, path.split('/')[-1])
126 _download_video(path, input_path)
128 input_path = os.path.join(self.cr_source_dir, path)
131 '%s.out' % input_path.split('/')[-1])
135 input_path, width, height, profile, output_path, bit_rate))
156 logging.exception('error while encoding %s', input_path)
161 _remove_if_exists(input_path)
/external/brotli/tools/
Dbro.c79 char **input_path, in ParseArgv() argument
91 *input_path = 0; in ParseArgv()
133 if (*input_path != 0) { in ParseArgv()
136 *input_path = argv[k + 1]; in ParseArgv()
194 static FILE* OpenInputFile(const char* input_path) { in OpenInputFile() argument
196 if (input_path == 0) { in OpenInputFile()
199 f = fopen(input_path, "rb"); in OpenInputFile()
248 static void CopyStat(const char* input_path, const char* output_path) { in CopyStat() argument
252 if (input_path == 0 || output_path == 0) { in CopyStat()
255 if (stat(input_path, &statbuf) != 0) { in CopyStat()
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
Dmain-scripts.rb38 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/ltp/android/tools/
Dmake_install_parser.py41 def ParseFile(self, input_path): argument
54 with open(input_path, 'r') as f:
88 result = make_install_parser.ParseFile(args.input_path)
Dmake_parser.py144 def ParseFile(self, input_path): argument
167 with open(input_path, 'r') as f:
202 result = make_parser.ParseFile(args.input_path)
/external/llvm/utils/lit/tests/
Dunittest-adaptor.py15 input_path = sys.argv[1] variable
16 unittest_suite = lit.discovery.load_test_suite([input_path])
/external/autotest/client/site_tests/video_VEAPerf/
Dvideo_VEAPerf.py239 input_path = os.path.join(self.tmpdir,
241 self._download_video(path, input_path)
243 input_path = os.path.join(self.cr_source_dir, path)
246 input_path, width, height, profile, output_path,
254 _remove_if_exists(input_path)
/external/libmojo/mojo/public/tools/
Dprepend.py25 input_path = options.input
32 with open(input_path, 'r') as input_file:
/external/llvm/utils/llvm-build/llvmbuild/
Dconfigutil.py8 def configure_file(input_path, output_path, substitutions): argument
27 f = open(input_path, "rb")
/external/v8/src/inspector/build/
Dgenerate_protocol_externs.py245 input_path = sys.argv[3] variable
246 generate_protocol_externs(output_path, input_path)
/external/skia/gn/
Dgn_to_cmake.py484 for input_path in target.properties.get('inputs', []):
485 input_abs_path = project.GetAbsolutePath(input_path)
/external/v8/tools/mb/
Dmb.py240 'argv[0] (input_path)', self.args.input_path[0])
963 '-G', 'config_path=%s' % self.args.input_path[0],
1283 path = self.args.input_path[0]