/external/tensorflow/tensorflow/python/debug/cli/ |
analyzer_cli.py | 836 for depth, (file_path, line, function_name, text) in enumerate( 838 lines.append("%d: %s" % (depth, file_path)) 841 "", "ps %s -b %d" % (file_path, line)) if text else None [all...] |
/hardware/qcom/display/msm8909/sdm/libs/core/fb/ |
hw_hdmi.cpp | 573 char file_path[kMaxStringLength]; local 574 memset(file_path, 0, sizeof(file_path)); 575 snprintf(file_path , sizeof(file_path), "%s%d/res_info", fb_path_, fb_node_index_); 577 int fd = Sys::open_(file_path, file_mode); 580 DLOGE("file '%s' not found : ret = %d err str: %s", file_path, fd, strerror(errno)); [all...] |
/external/autotest/client/common_lib/ |
base_job_unittest.py | 42 def read_from_file(self, file_path): 45 def write_to_file(self, file_path): 48 def set_backing_file(self, file_path): 746 def read_from_file(self, file_path, merge=True): 747 if self._backing_file and file_path == self._backing_file: 750 file_path, merge=True) 751 def write_to_file(self, file_path): 752 if self._backing_file and file_path == self._backing_file: 754 return super(mocked_job_state, self).write_to_file(file_path) [all...] |
/external/google-breakpad/src/testing/gtest/scripts/ |
pump.py | 828 file_path = argv[-1] 829 output_str = ConvertFromPumpSource(file(file_path, 'r').read()) 830 if file_path.endswith('.pump'): 831 output_file_path = file_path[:-5] 840 (os.path.basename(__file__), os.path.basename(file_path)))
|
/external/googletest/googletest/scripts/ |
pump.py | 836 file_path = argv[-1] 837 output_str = ConvertFromPumpSource(file(file_path, 'r').read()) 838 if file_path.endswith('.pump'): 839 output_file_path = file_path[:-5] 848 (os.path.basename(__file__), os.path.basename(file_path)))
|
/external/v8/testing/gtest/scripts/ |
pump.py | 836 file_path = argv[-1] 837 output_str = ConvertFromPumpSource(file(file_path, 'r').read()) 838 if file_path.endswith('.pump'): 839 output_file_path = file_path[:-5] 848 (os.path.basename(__file__), os.path.basename(file_path)))
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/ |
pump.py | 836 file_path = argv[-1] 837 output_str = ConvertFromPumpSource(file(file_path, 'r').read()) 838 if file_path.endswith('.pump'): 839 output_file_path = file_path[:-5] 848 (os.path.basename(__file__), os.path.basename(file_path)))
|
/prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/scripts/ |
pump.py | 836 file_path = argv[-1] 837 output_str = ConvertFromPumpSource(file(file_path, 'r').read()) 838 if file_path.endswith('.pump'): 839 output_file_path = file_path[:-5] 848 (os.path.basename(__file__), os.path.basename(file_path)))
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
monsoon.py | 519 def save_to_text_file(monsoon_data, file_path): 525 file_path: The full path of the file to save to, including the file 531 utils.create_dir(os.path.dirname(file_path)) 532 with open(file_path, 'a') as f: 538 def from_text_file(file_path): 543 file_path: The full path of the file load from, including the file 550 with open(file_path, 'r') as f: [all...] |
/bionic/libc/tools/ |
gensyscalls.py | 511 def parse_file(self, file_path): 512 logging.debug("parse_file: %s" % file_path) 513 with open(file_path) as fp:
|
/external/pdfium/fpdfsdk/ |
fpdfview_embeddertest.cpp | 590 std::string file_path; local 592 PathService::GetTestFilePath("unsupported_feature.pdf", &file_path)); 596 FPDF_DOCUMENT doc = FPDF_LoadDocument(file_path.c_str(), "");
|
/external/pdfium/testing/tools/ |
safetynet_compare.py | 61 file_path = os.path.join(file_dir, input_filename) 62 if os.path.isfile(file_path): 63 self.test_cases.append(file_path)
|
/external/python/cpython3/Lib/test/ |
test_ntpath.py | 470 self.file_path = self.PathLike(support.TESTFN) 476 self.assertEqual(func(self.file_path), func(self.file_name)) 531 common_path = self.path.commonpath([self.file_path, self.file_name])
|
/external/tensorflow/tensorflow/core/platform/ |
env.cc | 315 string file_path = WindowsFileSystem::WideCharToUtf8(wc_file_path); local 316 std::copy(file_path.begin(), file_path.end(), exe_path);
|
/external/tensorflow/tensorflow/python/keras/_impl/keras/utils/ |
data_utils.py | 96 def _extract_archive(file_path, path='.', archive_format='auto'): 100 file_path: path to the archive file 127 if is_match_fn(file_path): 128 with open_fn(file_path) as archive:
|
/external/v8/tools/ |
presubmit.py | 498 for file_path in files: 499 if file_path.startswith(test_path): 501 pieces = file_path[len(test_path):].lstrip(os.sep).split(os.sep)
|
/tools/acloud/public/ |
device_driver.py | 318 file_path = os.path.join(tempdir, file_name) 319 src_dict[file_path] = file_name 320 with open(file_path, "w") as f:
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
PowerBaseTest.py | 444 def save_to_text_file(bt_monsoon_data, file_path): 451 file_path: The full path of the file to save to, including the file 459 utils.create_dir(os.path.dirname(file_path)) 461 with open(file_path, 'w') as f:
|
/external/autotest/database/ |
database_connection.py | 324 def get_test_database(cls, file_path=':memory:', **constructor_kwargs): 331 database.connect(db_type='sqlite', db_name=file_path)
|
/external/google-breakpad/src/client/windows/crash_generation/ |
minidump_generator.cc | 564 bool MinidumpGenerator::GenerateDumpFilePath(wstring* file_path) { 575 *file_path = dump_path_ + TEXT("\\") + id_str + TEXT(".dmp");
|
/external/python/cpython3/Lib/idlelib/ |
query.py | 201 file_path = spec.loader.get_filename(name) 206 return file_path
|
/external/webrtc/ |
PRESUBMIT.py | 151 def _IsLintWhitelisted(whitelist_dirs, file_path): 154 if os.path.dirname(file_path).startswith(path):
|
/external/webrtc/webrtc/base/ |
filerotatingstream_unittest.cc | 76 const std::string& file_path) { 78 scoped_ptr<FileStream> stream(Filesystem::OpenFile(file_path, "r"));
|
/system/update_engine/common/ |
test_utils.cc | 255 ScopedLoopMounter::ScopedLoopMounter(const string& file_path, 263 new ScopedLoopbackDeviceBinder(file_path, true, &loop_dev));
|
/tools/test/connectivity/acts/framework/acts/test_utils/tel/ |
tel_test_utils.py | [all...] |