HomeSort by relevance Sort by last modified time
    Searched refs:file_path (Results 151 - 175 of 684) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/net/base/
upload_element.h 11 #include "base/files/file_path.h"
32 const base::FilePath& file_path() const { return file_path_; } function in class:net::UploadElement
93 return a.file_path() == b.file_path() &&
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 50 def __init__(self, file_path, handle_style_error, host=None):
51 self._file_path = file_path
53 self._tab_checker = TabChecker(file_path, handle_style_error)
jsonchecker.py 34 def __init__(self, file_path, handle_style_error):
xml.py 33 def __init__(self, file_path, handle_style_error):
  /external/chromium_org/tools/perf/page_sets/
PRESUBMIT.py 42 file_path, extension = os.path.splitext(hash_path)
57 if not os.path.exists(file_path):
61 if cloud_storage.GetHash(file_path) != file_hash:
67 cloud_storage.Insert(cloud_storage.INTERNAL_BUCKET, file_hash, file_path)
  /development/testrunner/coverage/
coverage_targets.py 55 def Parse(self, file_path):
59 file_path: absolute file path to parse
61 errors.ParseError if file_path cannot be parsed
64 doc = xml.dom.minidom.parse(file_path)
67 logger.Log('Results file %s does not exist' % file_path)
70 logger.Log('Error Parsing xml file: %s ' % file_path)
125 """parses out a file_path class from given path to xml"""
  /external/chromium/base/
file_version_info.h 34 static FileVersionInfo* CreateFileVersionInfo(const FilePath& file_path);
platform_file_unittest.cc 64 FilePath file_path = temp_dir.path().AppendASCII("create_file_1"); local
69 file_path, base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ,
78 file_path, base::PLATFORM_FILE_OPEN_ALWAYS | base::PLATFORM_FILE_READ,
88 file_path, base::PLATFORM_FILE_OPEN | base::PLATFORM_FILE_READ,
97 file_path, base::PLATFORM_FILE_CREATE | base::PLATFORM_FILE_READ,
106 file_path, base::PLATFORM_FILE_CREATE_ALWAYS | base::PLATFORM_FILE_READ,
115 file_path = temp_dir.path().AppendASCII("create_file_2");
117 file_path,
127 EXPECT_FALSE(file_util::PathExists(file_path));
133 FilePath file_path = temp_dir.path().AppendASCII("read_write_file") local
205 FilePath file_path = temp_dir.path().AppendASCII("truncate_file"); local
    [all...]
  /external/chromium/chrome/browser/
mock_browsing_data_indexed_db_helper.h 41 virtual void DeleteIndexedDBFile(const FilePath& file_path);
mock_browsing_data_local_storage_helper.h 28 virtual void DeleteLocalStorageFile(const FilePath& file_path);
  /external/chromium_org/base/files/
file_util_proxy.h 10 #include "base/files/file_path.h"
51 // create a new file at the given |file_path| and calls back with
52 // PLATFORM_FILE_ERROR_FILE_EXISTS if the |file_path| already exists.
56 const FilePath& file_path,
86 const FilePath& file_path,
100 const FilePath& file_path,
144 const FilePath& file_path,
  /external/chromium_org/chrome/browser/chromeos/drive/
file_system_util.h 191 bool CreateGDocFile(const base::FilePath& file_path,
195 // Returns true if |file_path| has a GDoc file extension. (e.g. ".gdoc")
196 bool HasGDocFileExtension(const base::FilePath& file_path);
199 GURL ReadUrlFromGDocFile(const base::FilePath& file_path);
202 std::string ReadResourceIdFromGDocFile(const base::FilePath& file_path);
local_file_reader.h 35 // Opens the file at |file_path|. The initial position of the read will be
39 void Open(const base::FilePath& file_path,
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_mount.h 13 #include "base/files/file_path.h"
41 const base::FilePath& file_path);
  /external/chromium_org/chrome/common/safe_browsing/
zip_analyzer.cc 31 const base::FilePath& file = reader.current_entry_info()->file_path();
  /external/chromium_org/content/browser/android/
tracing_controller_android.h 9 #include "base/files/file_path.h"
29 void OnTracingStopped(const base::FilePath& file_path);
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
in_generator.py 58 def _forcibly_create_text_file_at_path_with_contents(self, file_path, contents):
64 shutil.rmtree(file_path, ignore_errors=True)
66 directory = os.path.dirname(file_path)
70 with open(file_path, "w") as file_to_write:
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
error_handlers.py 59 def __init__(self, file_path, configuration, increment_error_count,
64 file_path: The path to the file containing the error. This
80 self._file_path = file_path
145 file_path=self._file_path):
158 file_path=self._file_path,
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
file_input_stream.h 47 virtual bool Open(const char* file_path);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_font_utils.cc 83 void SerializeToFile(MemoryOutputStream* output_stream, const char* file_path) {
84 assert(file_path);
89 fopen_s(&output_file, file_path, "wb");
91 output_file = fopen(file_path, "wb");
  /external/chromium_org/tools/resources/
find_unused_resources.py 139 file_path = os.path.join(resources_path, file_entry)
140 if os.path.isdir(file_path) and file_path.endswith('_percent'):
141 scale_directories.append(file_path)
  /external/chromium_org/ui/shell_dialogs/
select_file_dialog_android.cc 35 base::FilePath file_path = base::FilePath(path); local
37 file_info.file_path = file_path;
38 file_info.local_path = file_path;
  /external/chromium_org/webkit/browser/blob/
file_stream_reader.h 33 // Creates a new FileReader for a local file |file_path|.
44 const base::FilePath& file_path,
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.h 47 virtual bool Open(const char* file_path);
  /external/sfntly/cpp/src/test/
test_font_utils.cc 83 void SerializeToFile(MemoryOutputStream* output_stream, const char* file_path) {
84 assert(file_path);
89 fopen_s(&output_file, file_path, "wb");
91 output_file = fopen(file_path, "wb");

Completed in 1628 milliseconds

1 2 3 4 5 67 8 91011>>