HomeSort by relevance Sort by last modified time
    Searched defs:filepath (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /external/chromium_org/third_party/skia/platform_tools/android/bin/
download_toolchains.py 12 filepath = sys.argv[2] variable
15 download_utils.SyncURL(url, filepath)
  /external/skia/platform_tools/android/bin/
download_toolchains.py 12 filepath = sys.argv[2] variable
15 download_utils.SyncURL(url, filepath)
  /external/chromium_org/net/base/
filename_util_unsafe.cc 17 const base::FilePath::CharType illegal_characters[] =
21 void ReplaceIllegalCharactersInPath(base::FilePath::StringType* file_name,
25 base::FilePath::StringType(1, replace_char),
33 base::FilePath::StringType GenerateFileExtensionUnsafe(
40 base::FilePath filepath = local
48 return filepath.Extension();
  /external/e2fsprogs/util/
libecho.c 43 char filepath[256]; local
52 strcpy(filepath, f);
54 slash = strrchr(filepath, '\\');
60 filepath[0] = '\0';
70 printf("%s%s%s\n", prefix, filepath, fdt.name);
75 printf("%s%s%s\n", prefix, filepath, fdt.name);
  /external/chromium_org/skia/tools/filter_fuzz_stub/
filter_fuzz_stub.cc 16 base::FilePath filepath = base::FilePath::FromUTF8Unsafe(filename); local
18 if (!base::ReadFileToString(filepath, ipc_filter_message)) {
  /external/chromium_org/testing/gtest/test/
gtest_premature_exit_test.cc 54 static bool FileExists(const char* filepath) {
56 return Stat(filepath, &stat) == 0;
106 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); local
107 ASSERT_TRUE(filepath != NULL);
108 ASSERT_NE(*filepath, '\0');
132 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); local
133 if (filepath != NULL && *filepath != '\0') {
134 if (PrematureExitTest::FileExists(filepath)) {
137 filepath);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_fileutils.cc 56 std::string filepath = webrtc::test::ResourcePath(filename, extension); local
57 FILE* file = fopen(filepath.c_str(), "rb");
60 BWE_TEST_LOGGING_LOG1("Create", "Can't read file: %s", filepath.c_str());
84 std::string filepath = webrtc::test::OutputPath() + filename + "." + local
86 FILE* file = fopen(filepath.c_str(), "wb");
89 BWE_TEST_LOGGING_LOG1("Create", "Can't write file: %s", filepath.c_str());
bwe_test_baselinefile.cc 44 BaseLineFileVerify(const std::string& filepath, bool allow_missing_file)
48 reader.reset(ResourceFileReader::Create(filepath, "bin"));
51 filepath.c_str());
61 filepath.c_str());
102 BaseLineFileUpdate(const std::string& filepath,
106 filepath_(filepath) {
154 std::string filepath = filename; local
155 std::replace(filepath.begin(), filepath.end(), '/', '_');
156 filepath = std::string(kResourceSubDir) + "/" + filepath
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
rtp_file_reader_unittest.cc 24 std::string filepath = local
26 rtp_packet_source_.reset(CreateRtpFileReader(filepath));
pcap_file_reader_unittest.cc 28 std::string filepath = local
30 rtp_packet_source_.reset(CreatePcapFileReader(filepath));
  /external/gtest/test/
gtest_premature_exit_test.cc 54 static bool FileExists(const char* filepath) {
56 return Stat(filepath, &stat) == 0;
104 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); local
105 ASSERT_TRUE(filepath != NULL);
106 ASSERT_NE(*filepath, '\0');
130 const char* const filepath = GetEnv("TEST_PREMATURE_EXIT_FILE"); local
131 if (filepath != NULL && *filepath != '\0') {
132 if (PrematureExitTest::FileExists(filepath)) {
135 filepath);
    [all...]
  /external/chromium_org/components/metrics/chromeos/
serialization_utils_unittest.cc 22 base::FilePath dir_path = temporary_dir.path();
24 filepath = base::FilePath(filename);
29 base::DeleteFile(filepath, false);
43 base::FilePath filepath; member in class:metrics::__anon11001::SerializationUtilsChromeOSTest
78 ASSERT_TRUE(!PathExists(filepath) || base::GetFileSize(filepath, &size));
94 ASSERT_TRUE(base::GetFileSize(filepath, &size));
112 ASSERT_TRUE(base::GetFileSize(filepath, &size))
    [all...]
  /external/chromium_org/chrome/browser/ui/pdf/
adobe_reader_info_win.cc 42 base::FilePath GetInstalledPath(const base::char16* app) {
47 base::FilePath filepath; local
53 filepath = base::FilePath(path);
57 filepath = base::FilePath(path);
60 return filepath.Append(app);
116 bool IsAdobeReaderDefaultPDFViewerInternal(base::FilePath* path) {
125 base::FilePath install_path = GetInstalledPath(kRegistryAcrobatReader)
    [all...]
  /external/chromium_org/net/tools/dns_fuzz_stub/
dns_fuzz_stub.cc 53 base::FilePath filepath = base::FilePath::FromUTF8Unsafe(filename); local
56 if (!base::ReadFileToString(filepath, &json)) {
  /external/protobuf/python/
setup.py 92 filepath = os.path.join(dirpath, filename) variable
93 if filepath.endswith("_pb2.py") or filepath.endswith(".pyc"):
94 os.remove(filepath)
  /prebuilts/devtools/tools/lib/
screenshot2.jar 
  /cts/tests/tests/security/src/android/security/cts/
BrowserTest.java 175 String filepath = mContext.getFileStreamPath(filename).getAbsolutePath(); local
176 Uri uri = Uri.parse("file://" + filepath);
  /system/extras/tests/sdcard/
sdcard_perf_test.cpp 610 char filepath[MAX_PATH]; local
621 strcpy(filepath, path);
623 char* nameStart = filepath + pathlen;
626 writeTestFile(testCase, filepath);
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.cc 65 explicit SkPictureSerializer(const base::FilePath& dirpath)
91 std::string filepath = dirpath_.AppendASCII(filename).MaybeAsASCII(); local
92 DCHECK(!filepath.empty());
93 SkFILEWStream file(filepath.c_str());
99 base::FilePath dirpath_;
414 base::FilePath dirpath(
415 base::FilePath::StringType(*dirname, *dirname + dirname.length()));
    [all...]
  /external/chromium_org/third_party/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c 430 const char filepath[] = "/proc/self/auxv"; local
431 int fd = open(filepath, O_RDONLY);
433 D("Could not open %s: %s\n", filepath, strerror(errno));
444 D("Error while reading %s: %s\n", filepath, strerror(errno));
  /external/skia/platform_tools/android/third_party/cpufeatures/
cpu-features.c 430 const char filepath[] = "/proc/self/auxv"; local
431 int fd = open(filepath, O_RDONLY);
433 D("Could not open %s: %s\n", filepath, strerror(errno));
444 D("Error while reading %s: %s\n", filepath, strerror(errno));
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 144 String filepath = obtainPath(i); local
145 ParcelFileDescriptor pfd = obtainParcelDescriptor(filepath);
149 BitmapRegionDecoder.newInstance(filepath, false);
248 String filepath = obtainPath(i); local
255 BitmapRegionDecoder.newInstance(filepath, false);
256 Bitmap wholeImage = BitmapFactory.decodeFile(filepath, opts);
264 ParcelFileDescriptor pfd1 = obtainParcelDescriptor(filepath);
267 ParcelFileDescriptor pfd2 = obtainParcelDescriptor(filepath);
  /ndk/sources/android/cpufeatures/
cpu-features.c 501 const char filepath[] = "/proc/self/auxv"; local
502 int fd = TEMP_FAILURE_RETRY(open(filepath, O_RDONLY));
504 D("Could not open %s: %s\n", filepath, strerror(errno));
514 D("Error while reading %s: %s\n", filepath, strerror(errno));
    [all...]
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 199 size_t path_last_dirsep(const String& filepath) {
201 size_t sep_slash = filepath.rfind(_T('/'));
202 size_t sep_backslash = filepath.rfind(_T('\\'));
211 size_t sep = filepath.rfind(_T('/'));
217 String path_dirname(const String& filepath) {
218 size_t sep = path_last_dirsep(filepath);
224 return filepath.substr(0, sep);
228 String path_basename(const String& filepath) {
229 size_t sep = path_last_dirsep(filepath);
231 return filepath;
844 String filepath; local
    [all...]
  /packages/apps/Camera/src/com/android/camera/
PanoramaModule.java 912 String filepath = Storage.generateFilepath(filename); local
    [all...]

Completed in 536 milliseconds

1 2 3 4