HomeSort by relevance Sort by last modified time
    Searched refs:file_path (Results 201 - 225 of 422) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libchrome/base/files/
file_util.h 21 #include "base/files/file_path.h"
273 BASE_EXPORT bool GetFileSize(const FilePath& file_path, int64_t* file_size);
300 BASE_EXPORT bool IsLink(const FilePath& file_path);
303 BASE_EXPORT bool GetFileInfo(const FilePath& file_path, File::Info* info);
  /external/noto-fonts/emoji-compat/
createfont.py 132 def prepend_header_to_file(file_path):
135 with open(file_path, "r+") as original_file:
244 def read_emoji_lines(file_path, optional=False):
247 :param file_path: unicode emoji file path
253 with open(file_path) as file_stream:
303 def read_emoji_intervals(emoji_data_map, file_path, emoji_style_exceptions):
308 lines = read_emoji_lines(file_path)
328 def read_emoji_sequences(emoji_data_map, file_path, optional=False):
331 lines = read_emoji_lines(file_path, optional)
431 def add_file_to_sha(sha_algo, file_path)
    [all...]
  /external/pdfium/fpdfsdk/
fpdf_dataavail_embeddertest.cpp 37 std::string file_path; local
38 if (!PathService::GetTestFilePath(file_name, &file_path))
40 file_contents_ = GetFileContents(file_path.c_str(), &file_length_);
  /external/skia/tools/skdiff/
skdiff_utils.cpp 29 sk_sp<SkData> read_file(const char* file_path) {
30 sk_sp<SkData> data(SkData::MakeFromFileName(file_path));
32 SkDebugf("WARNING: could not open file <%s> for reading\n", file_path);
  /external/skqp/tools/skdiff/
skdiff_utils.cpp 29 sk_sp<SkData> read_file(const char* file_path) {
30 sk_sp<SkData> data(SkData::MakeFromFileName(file_path));
32 SkDebugf("WARNING: could not open file <%s> for reading\n", file_path);
  /external/tensorflow/tensorflow/core/api_def/
api_test.cc 56 for (auto& file_path : matching_paths) {
58 TF_CHECK_OK(ReadFileToString(env, file_path, &file_contents));
64 << "Failed to load " << file_path;
  /tools/test/connectivity/acts/tests/google/net/
DataCostTest.py 193 file_path = os.path.join(file_folder, file_name)
194 self.log.info("File path: %s" % file_path)
195 if _check_file_existance(ad, file_path):
  /development/tools/privapp_permissions/
privapp_permissions.py 326 def _resolve_sys_path(self, file_path):
329 return os.path.join(os.environ['ANDROID_PRODUCT_OUT'], file_path)
331 return self.adb.pull(file_path)
469 file_path = os.path.join(dirName, file)
470 xml_files.append(file_path)
  /system/iot/attestation/at-factory-tool/
atftman.py 165 def Flash(self, partition, file_path):
166 return self._fastboot_device_controller.Flash(partition, file_path)
168 def Upload(self, file_path):
169 return self._fastboot_device_controller.Upload(file_path)
171 def Download(self, file_path):
172 return self._fastboot_device_controller.Download(file_path)
634 file_path = os.path.join(tmp_folder, tmp_file_name)
636 src.Upload(file_path)
638 dst.Download(file_path)
640 if os.path.exists(file_path)
    [all...]
  /external/libchrome/base/debug/
stack_trace_posix.cc 482 // Returns a O_RDONLY file descriptor for |file_path| if it was opened
487 int GetFileDescriptor(const char* file_path) {
491 if (file_path) {
497 if (strcmp((it->first).c_str(), file_path) == 0) {
527 uint64_t& base_address, char* file_path,
562 if (file_path && file_path_size > 0) {
563 strncpy(file_path, region.path.c_str(), file_path_size);
565 file_path[file_path_size - 1] = '\0';
  /external/autotest/scheduler/
drone_manager.py     [all...]
  /external/autotest/utils/
test_importer.py 358 @return dictionary of the form: tests[file_path] = parsed_object
460 for file_path in whitelist_set:
461 if file_path.find('client/profilers') == -1:
463 found_test = control_data.parse_control(file_path,
465 tests[file_path] = found_test
469 profilers[file_path] = compiler.parseFile(file_path).doc
  /external/google-breakpad/src/testing/gtest/test/
gtest-filepath_test.cc 580 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_,
582 EXPECT_STREQ(unique_file0_.c_str(), file_path.c_str());
583 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there
586 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there
587 CreateTextFile(file_path.c_str());
588 EXPECT_TRUE(file_path.FileOrDirectoryExists());
  /external/googletest/googletest/test/
gtest-filepath_test.cc 546 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_,
548 EXPECT_EQ(unique_file0_.string(), file_path.string());
549 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there
552 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there
553 CreateTextFile(file_path.c_str());
554 EXPECT_TRUE(file_path.FileOrDirectoryExists());
  /external/protobuf/gtest/test/
gtest-filepath_test.cc 574 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_,
576 EXPECT_STREQ(unique_file0_.c_str(), file_path.c_str());
577 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there
580 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there
581 CreateTextFile(file_path.c_str());
582 EXPECT_TRUE(file_path.FileOrDirectoryExists());
  /external/v8/testing/gtest/test/
gtest-filepath_test.cc 546 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_,
548 EXPECT_EQ(unique_file0_.string(), file_path.string());
549 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there
552 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there
553 CreateTextFile(file_path.c_str());
554 EXPECT_TRUE(file_path.FileOrDirectoryExists());
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-filepath_test.cc 564 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_,
566 EXPECT_EQ(unique_file0_.string(), file_path.string());
567 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there
570 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there
571 CreateTextFile(file_path.c_str());
572 EXPECT_TRUE(file_path.FileOrDirectoryExists());
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest-filepath_test.cc 572 FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_,
574 EXPECT_EQ(unique_file0_.string(), file_path.string());
575 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file not there
578 EXPECT_FALSE(file_path.FileOrDirectoryExists()); // file still not there
579 CreateTextFile(file_path.c_str());
580 EXPECT_TRUE(file_path.FileOrDirectoryExists());
  /system/extras/simpleperf/
record_file_reader.cpp 443 std::string* file_path,
470 *file_path = p;
471 p += file_path->size() + 1;
517 std::string file_path;
523 read_pos, &file_path, &file_type, &min_vaddr, &symbols)) {
524 thread_tree.AddDsoInfo(file_path, file_type, min_vaddr, &symbols);
  /system/extras/simpleperf/scripts/
utils.py 537 (file_path, line_number) = items
543 file_id = self._get_file_id(file_path)
560 def _get_file_id(self, file_path):
561 file_id = self.file_name_to_id.get(file_path)
563 file_id = self.file_name_to_id[file_path] = len(self.file_id_to_name)
564 self.file_id_to_name.append(file_path)
  /external/autotest/client/cros/cellular/pseudomodem/
pseudomodem_context.py 399 for file_path in self._temp_files:
401 os.remove(file_path)
404 file_path, str(e))
  /external/chromium-trace/catapult/devil/devil/android/tools/
device_status.py 185 def _WriteBuildbotFile(file_path, statuses):
186 buildbot_path, _ = os.path.split(file_path)
188 with open(file_path, 'w') as f:
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 312 char file_path[NAME_MAX]; local
314 mapping, file_path, sizeof(file_path), file_name, sizeof(file_name));
  /external/google-breakpad/src/client/mac/tests/
crash_generation_server_test.cc 151 const std::string &file_path) {
155 if (!file_path.empty())
156 self->last_dump_name = file_path;
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
device_status.py 189 def _WriteBuildbotFile(file_path, statuses):
190 buildbot_path, _ = os.path.split(file_path)
192 with open(file_path, 'w') as f:

Completed in 2145 milliseconds

1 2 3 4 5 6 7 891011>>