| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
| D | checker.py | 399 def _file_extension(self, file_path): argument 403 def _should_skip_file_path(self, file_path, skip_array_entry): argument 414 def should_skip_with_warning(self, file_path): argument 421 def should_skip_without_warning(self, file_path): argument 438 def should_check_and_strip_carriage_returns(self, file_path): argument 441 def _file_type(self, file_path): argument 469 def _create_checker(self, file_type, file_path, handle_style_error, argument 504 def dispatch(self, file_path, handle_style_error, min_confidence): argument 568 def is_reportable(self, category, confidence_in_error, file_path): argument 591 file_path, argument [all …]
|
| D | checker_unittest.py | 341 def dispatch(self, file_path): argument 350 def assert_checker_none(self, file_path): argument 355 def assert_checker(self, file_path, expected_class): argument 366 def assert_checker_cpp(self, file_path): argument 370 def assert_checker_json(self, file_path): argument 374 def assert_checker_python(self, file_path): argument 378 def assert_checker_text(self, file_path): argument 382 def assert_checker_xml(self, file_path): argument 644 def __init__(self, file_path, min_confidence, style_error_handler): argument 659 def should_skip_with_warning(self, file_path): argument [all …]
|
| /external/chromium_org/chrome/browser/chromeos/drive/ |
| D | dummy_file_system.h | 23 virtual void OpenFile(const base::FilePath& file_path, in OpenFile() 34 virtual void Remove(const base::FilePath& file_path, in Remove() 42 virtual void CreateFile(const base::FilePath& file_path, in CreateFile() 46 virtual void TouchFile(const base::FilePath& file_path, in TouchFile() 50 virtual void TruncateFile(const base::FilePath& file_path, in TruncateFile() 53 virtual void Pin(const base::FilePath& file_path, in Pin() 55 virtual void Unpin(const base::FilePath& file_path, in Unpin() 57 virtual void GetFile(const base::FilePath& file_path, in GetFile() 59 virtual void GetFileForSaving(const base::FilePath& file_path, in GetFileForSaving() 67 const base::FilePath& file_path, in GetResourceEntry() [all …]
|
| D | file_system.cc | 48 const base::FilePath& file_path, in GetLocallyStoredResourceEntry() 104 const base::FilePath& file_path, in PinInternal() 125 const base::FilePath& file_path, in UnpinInternal() 194 base::FilePath* file_path) { in GetPathFromResourceIdOnBlockingPool() 205 void GetPathFromResourceIdAfterGetPath(base::FilePath* file_path, in GetPathFromResourceIdAfterGetPath() 436 void FileSystem::Remove(const base::FilePath& file_path, in Remove() 478 void FileSystem::CreateFile(const base::FilePath& file_path, in CreateFile() 488 void FileSystem::TouchFile(const base::FilePath& file_path, in TouchFile() 498 void FileSystem::TruncateFile(const base::FilePath& file_path, in TruncateFile() 506 void FileSystem::Pin(const base::FilePath& file_path, in Pin() [all …]
|
| D | fake_file_system.cc | 54 void FakeFileSystem::OpenFile(const base::FilePath& file_path, in OpenFile() 74 void FakeFileSystem::Remove(const base::FilePath& file_path, in Remove() 88 void FakeFileSystem::CreateFile(const base::FilePath& file_path, in CreateFile() 95 void FakeFileSystem::TouchFile(const base::FilePath& file_path, in TouchFile() 102 void FakeFileSystem::TruncateFile(const base::FilePath& file_path, in TruncateFile() 108 void FakeFileSystem::Pin(const base::FilePath& file_path, in Pin() 113 void FakeFileSystem::Unpin(const base::FilePath& file_path, in Unpin() 118 void FakeFileSystem::GetFile(const base::FilePath& file_path, in GetFile() 123 void FakeFileSystem::GetFileForSaving(const base::FilePath& file_path, in GetFileForSaving() 129 const base::FilePath& file_path, in GetFileContent() [all …]
|
| D | file_change.cc | 95 void FileChange::Update(const base::FilePath file_path, in Update() 100 void FileChange::Update(const base::FilePath file_path, in Update() 109 void FileChange::Update(const base::FilePath file_path, in Update() 115 void FileChange::Update(const base::FilePath file_path, in Update()
|
| /external/chromium_org/third_party/skia/tools/ |
| D | sanitize_source_files.py | 85 def TrailingWhitespaceRemover(line, file_path, line_number): argument 93 def CrlfReplacer(line, file_path, line_number): argument 100 def TabReplacer(line, file_path, line_number): argument 117 def EOFOneAndOnlyOneNewlineAdder(file_content, file_path): argument 126 def SvnEOLChecker(file_content, file_path): argument
|
| /external/skia/tools/ |
| D | sanitize_source_files.py | 85 def TrailingWhitespaceRemover(line, file_path, line_number): argument 93 def CrlfReplacer(line, file_path, line_number): argument 100 def TabReplacer(line, file_path, line_number): argument 117 def EOFOneAndOnlyOneNewlineAdder(file_content, file_path): argument 126 def SvnEOLChecker(file_content, file_path): argument
|
| /external/chromium_org/base/files/ |
| D | file_util_proxy.cc | 29 void RunWorkForFilePath(const FilePath& file_path) { in RunWorkForFilePath() 50 File::Error DeleteAdapter(const FilePath& file_path, bool recursive) { in DeleteAdapter() 69 const FilePath& file_path, in GetFileInfo() 81 const FilePath& file_path, in DeleteFile() 93 const FilePath& file_path, in Touch()
|
| D | file_unittest.cc | 17 FilePath file_path = temp_dir.path().AppendASCII("create_file_1"); in TEST() local 104 FilePath file_path = temp_dir.path().AppendASCII("create_file"); in TEST() local 122 FilePath file_path = temp_dir.path().AppendASCII("create_file_1"); in TEST() local 149 FilePath file_path = temp_dir.path().AppendASCII("read_write_file"); in TEST() local 221 FilePath file_path = temp_dir.path().AppendASCII("append_file"); in TEST() local 269 FilePath file_path = temp_dir.path().AppendASCII("truncate_file"); in TEST() local 384 FilePath file_path = temp_dir.path().AppendASCII("read_at_current_position"); local 408 FilePath file_path = temp_dir.path().AppendASCII("write_at_current_position"); local 431 FilePath file_path = temp_dir.path().AppendASCII("seek_file"); local
|
| /external/chromium_org/chrome/browser/chromeos/drive/fileapi/ |
| D | async_file_util.cc | 138 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in CreateOrOpen() local 162 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in EnsureFileExists() local 185 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in CreateDirectory() local 205 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in GetFileInfo() local 225 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in ReadDirectory() local 247 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in Touch() local 268 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in Truncate() local 367 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in DeleteFile() local 387 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in DeleteDirectory() local 407 base::FilePath file_path = util::ExtractDrivePathFromFileSystemUrl(url); in DeleteRecursively() local [all …]
|
| D | fileapi_worker.cc | 219 void GetFileInfo(const base::FilePath& file_path, in GetFileInfo() 257 void ReadDirectory(const base::FilePath& file_path, in ReadDirectory() 267 void Remove(const base::FilePath& file_path, in Remove() 276 void CreateDirectory(const base::FilePath& file_path, in CreateDirectory() 287 void CreateFile(const base::FilePath& file_path, in CreateFile() 297 void Truncate(const base::FilePath& file_path, in Truncate() 307 void CreateSnapshotFile(const base::FilePath& file_path, in CreateSnapshotFile() 316 const base::FilePath& file_path, in CreateWritableSnapshotFile() 327 void OpenFile(const base::FilePath& file_path, in OpenFile() 357 void TouchFile(const base::FilePath& file_path, in TouchFile()
|
| /external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
| D | open_file_operation_unittest.cc | 46 base::FilePath file_path; in TEST_F() local 72 base::FilePath file_path; in TEST_F() local 92 base::FilePath file_path; in TEST_F() local 111 base::FilePath file_path; in TEST_F() local 144 base::FilePath file_path; in TEST_F() local 179 base::FilePath file_path; in TEST_F() local 209 base::FilePath file_path; in TEST_F() local
|
| D | download_operation_unittest.cc | 49 base::FilePath file_path; in TEST_F() local 78 base::FilePath file_path; in TEST_F() local 104 base::FilePath file_path; in TEST_F() local 169 base::FilePath file_path; in TEST_F() local 206 base::FilePath file_path; in TEST_F() local 227 base::FilePath file_path; in TEST_F() local 255 base::FilePath file_path; in TEST_F() local 371 base::FilePath file_path; in TEST_F() local 418 base::FilePath file_path; in TEST_F() local 438 base::FilePath file_path(FILE_PATH_LITERAL("drive/root/New File.txt")); in TEST_F() local [all …]
|
| D | touch_operation.cc | 26 const base::FilePath& file_path, in UpdateLocalState() 60 void TouchOperation::TouchFile(const base::FilePath& file_path, in TouchFile() 88 const base::FilePath& file_path, in TouchFileAfterUpdateLocalState()
|
| /external/chromium_org/storage/browser/fileapi/ |
| D | local_file_util.cc | 82 base::FilePath file_path; in CreateOrOpen() local 97 base::FilePath file_path; in EnsureFileExists() local 109 base::FilePath file_path; in CreateDirectory() local 121 base::FilePath file_path; in GetFileInfo() local 139 base::FilePath file_path; in CreateFileEnumerator() local 170 base::FilePath file_path; in Touch() local 181 base::FilePath file_path; in Truncate() local 234 base::FilePath file_path; in DeleteFile() local 244 base::FilePath file_path; in DeleteDirectory() local
|
| /external/chromium_org/storage/browser/database/ |
| D | vfs_backend.cc | 58 base::File VfsBackend::OpenFile(const base::FilePath& file_path, in OpenFile() 115 int VfsBackend::DeleteFile(const base::FilePath& file_path, bool sync_dir) { in DeleteFile() 137 uint32 VfsBackend::GetFileAttributes(const base::FilePath& file_path) { in GetFileAttributes() 153 int64 VfsBackend::GetFileSize(const base::FilePath& file_path) { in GetFileSize()
|
| /external/chromium_org/chrome/browser/chromeos/file_manager/ |
| D | open_util.cc | 40 const base::FilePath& file_path, in ShowWarningMessageBox() 142 const base::FilePath& file_path, in OnContinueOpenItemCompleted() 159 const base::FilePath& file_path, in ContinueOpenItem() 202 void OpenRemovableDrive(Profile* profile, const base::FilePath& file_path) { in OpenRemovableDrive() 213 void OpenItem(Profile* profile, const base::FilePath& file_path) { in OpenItem() 227 void ShowItemInFolder(Profile* profile, const base::FilePath& file_path) { in ShowItemInFolder()
|
| D | open_with_browser.cc | 59 bool IsViewableInBrowser(const base::FilePath& file_path) { in IsViewableInBrowser() 124 GURL ReadUrlFromGDocOnBlockingPool(const base::FilePath& file_path) { in ReadUrlFromGDocOnBlockingPool() 138 const base::FilePath file_path = file_system_url.path(); in OpenFileWithBrowser() local 186 const base::FilePath file_path = in ShouldBeOpenedWithPlugin() local
|
| /external/chromium_org/tools/findit/ |
| D | component_dictionary.py | 17 def AddFile(self, file_path, crashed_line_range, stack_frame_index, argument 41 def GetCrashedLineNumbers(self, file_path): argument 45 def GetCrashStackFrameIndices(self, file_path): argument 49 def GetCrashFunctions(self, file_path): argument
|
| /external/chromium_org/chrome/browser/chromeos/system_logs/ |
| D | debug_log_writer.cc | 43 const base::FilePath& file_path, in WriteDebugLogToFileCompleted() 64 const base::FilePath& file_path, in WriteDebugLogToFile() 205 const base::FilePath& file_path, in IntializeLogFile() 224 base::FilePath file_path = in StartLogRetrieval() local 251 base::FilePath file_path = in StoreLogs() local 265 base::FilePath file_path = in StoreCombinedLogs() local
|
| /external/chromium_org/chrome/browser/safe_browsing/ |
| D | binary_feature_extractor_posix.cc | 17 const base::FilePath& file_path, in CheckSignature() 21 const base::FilePath& file_path, in ExtractImageHeaders()
|
| /external/chromium_org/media/filters/ |
| D | pipeline_integration_test_base.cc | 105 bool PipelineIntegrationTestBase::Start(const base::FilePath& file_path, in Start() 130 bool PipelineIntegrationTestBase::Start(const base::FilePath& file_path, in Start() 138 bool PipelineIntegrationTestBase::Start(const base::FilePath& file_path) { in Start() 142 bool PipelineIntegrationTestBase::Start(const base::FilePath& file_path, in Start() 224 const base::FilePath& file_path) { in CreateDemuxer()
|
| /external/chromium_org/chrome/test/mini_installer/ |
| D | variable_expander.py | 15 def _GetFileVersion(file_path): argument 21 def _GetProductName(file_path): argument
|
| /external/chromium_org/chrome/browser/chromeos/file_system_provider/ |
| D | mount_path_util.h | 43 const base::FilePath& file_path() const { return file_path_; } in file_path() function 66 const base::FilePath& file_path() const { return file_path_; } in file_path() function
|