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

1 2

  /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 52 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...]
pyjsontestrunner.py 12 input_path = sys.argv[1] variable
13 base_path = os.path.splitext(input_path)[0]
59 input = file( input_path, 'rt' ).read()
  /external/autotest/client/site_tests/video_VideoEncodeAccelerator/
video_VideoEncodeAccelerator.py 62 input_path = os.path.join(self.tmpdir, path.split('/')[-1])
63 _download_video(path, input_path)
65 input_path = os.path.join(self.cr_source_dir, path)
68 '%s.out' % input_path.split('/')[-1])
71 input_path, width, height, profile, output_path, bit_rate)
79 logging.exception('error while encoding %s', input_path)
84 _remove_if_exists(input_path)
  /external/pdfium/testing/tools/
run_corpus_tests.py 31 input_path = os.path.join(source_dir, input_filename)
40 shutil.copyfile(input_path, pdf_path)
75 def handle_result(test_suppressor, input_filename, input_path, result,
79 surprises.append(input_path)
82 failures.append(input_path)
117 input_path = os.path.join(walk_from_dir, file_name)
118 if not os.path.isfile(input_path):
122 test_cases.append((os.path.basename(input_path),
123 os.path.dirname(input_path)))
128 input_path = os.path.join(source_dir, input_filename
    [all...]
run_javascript_tests.py 24 input_path = os.path.join(source_dir, input_root + '.in')
31 [sys.executable, fixup_path, '--output-dir=' + working_dir, input_path])
77 input_path = os.path.join(source_dir, input_filename)
78 if os.path.isfile(input_path):
82 failures.append(input_path)
run_pixel_tests.py 26 input_path = os.path.join(source_dir, input_root + '.in')
39 [sys.executable, fixup_path, '--output-dir=' + working_dir, input_path])
87 input_path = os.path.join(source_dir, input_filename)
88 if os.path.isfile(input_path):
94 failures.append(input_path)
fixup_pdf_template.py 74 def expand_file(input_path, output_path):
77 with open(input_path, 'rb') as infile:
82 print >> sys.stderr, 'failed to process %s' % input_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)
  /bionic/linker/
linker_utils.h 26 bool parse_zip_path(const char* input_path, std::string* zip_path, std::string* entry_path);
linker_utils.cpp 85 bool parse_zip_path(const char* input_path, std::string* zip_path, std::string* entry_path) {
87 if (!normalize_path(input_path, &normalized_path)) {
92 TRACE("Trying zip file open from path \"%s\" -> normalized \"%s\"", input_path, path);
  /external/autotest/server/site_tests/android_ACTS/
android_ACTS.py 31 def fetch_file(self, input_path, sub_dir_name):
33 specified by input_path does not exist, attempt to locate it in ACTS
36 @param input_path: A string that's the path to a file.
40 if os.path.exists(input_path):
41 self.test_station.send_file(input_path, self.ts_tempfolder)
45 input_path)
  /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);
  /system/tools/aidl/tests/
end_to_end_tests.cpp 98 const string input_path = CanonicalNameToPath(kCanonicalName, ".aidl"); local
102 "aidl-cpp", "-ddeps.P", "-I.", input_path.c_str(), kGenHeaderDir,
108 io_delegate_.SetFileContents(input_path, kInterfaceDefinition);
  /bootable/recovery/uncrypt/
uncrypt.cpp 417 static int uncrypt(const char* input_path, const char* map_file, const int socket) {
418 ALOGI("update package is \"%s\"", input_path);
423 if (realpath(input_path, path) == NULL) {
424 ALOGE("failed to convert \"%s\" to absolute path: %s", input_path, strerror(errno));
459 static bool uncrypt_wrapper(const char* input_path, const char* map_file, const int socket) {
461 if (input_path == nullptr) {
466 input_path = package.c_str();
469 int status = uncrypt(input_path, map_file, socket);
545 const char* input_path = nullptr; local
555 input_path = argv[1]
    [all...]
  /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/autotest/client/site_tests/video_VEAPerf/
video_VEAPerf.py 241 input_path = os.path.join(self.tmpdir,
243 self._download_video(path, input_path)
245 input_path = os.path.join(self.cr_source_dir, path)
248 input_path, width, height, profile, output_path,
256 _remove_if_exists(input_path)
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 230 const std::string &input_path = OptInputFilenames[0]; local
231 llvm::SmallString<200> output_path(input_path);
235 llvm::errs() << "Failed to determine the absolute path of `" << input_path
  /frameworks/compile/mclinker/lib/LD/
GNUArchiveReader.cpp 217 sys::fs::Path input_path(pArchiveFile.path().parent_path());
218 if (!input_path.empty())
219 input_path.append(sys::fs::Path(member_name));
221 input_path.assign(member_name);
224 pArchiveFile, isThinAR, member_name, input_path);
  /system/tools/aidl/
aidl_unittest.cpp 271 const string input_path = "p/IFoo.aidl"; local
275 auto cpp_parse_result = Parse(input_path, input, &cpp_types_);
286 auto java_parse_result = Parse(input_path, input, &java_types_);
  /development/testrunner/coverage/
coverage.py 183 for input_path in input_paths:
184 input_list.append("-in %s" % input_path)
  /build/tools/releasetools/
ota_from_target_files 734 script.AddToZip(input_zip, output_zip, input_path=OPTIONS.updater_binary)
    [all...]
ota_from_target_files.py 734 script.AddToZip(input_zip, output_zip, input_path=OPTIONS.updater_binary)
    [all...]

Completed in 795 milliseconds

1 2