HomeSort by relevance Sort by last modified time
    Searched refs:local_path (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/chromium_org/ui/shell_dialogs/
selected_file_info.cc 14 local_path(in_local_path) {
15 if (local_path.empty())
16 local_path = file_path;
selected_file_info.h 27 base::FilePath local_path; member in struct:ui::SelectedFileInfo
  /external/chromium_org/tools/telemetry/telemetry/core/
extension_to_load.py 53 def local_path(self): member in class:ExtensionToLoad
58 @local_path.setter
59 def local_path(self, local_path): member in class:ExtensionToLoad
60 self._local_path = local_path
  /external/chromium_org/chrome/browser/chromeos/drive/file_system/
truncate_operation_unittest.cc 48 base::FilePath local_path; local
52 google_apis::test_util::CreateCopyResultCallback(&error, &local_path));
58 file_util::GetFileSize(local_path, &local_file_size);
107 base::FilePath local_path; local
111 google_apis::test_util::CreateCopyResultCallback(&error, &local_path));
117 ASSERT_TRUE(file_util::ReadFileToString(local_path, &content));
get_file_for_saving_operation_unittest.cc 80 base::FilePath local_path; local
84 &error, &local_path, &entry));
107 google_apis::test_util::WriteStringToFile(local_path, "hello");
122 base::FilePath local_path; local
126 &error, &local_path, &entry));
133 EXPECT_TRUE(file_util::GetFileSize(local_path, &size));
146 base::FilePath local_path; local
150 &error, &local_path, &entry));
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
mtp_device_async_delegate.h 44 const base::FilePath& local_path)> CreateSnapshotFileSuccessCallback;
60 // Copy the contents of |device_file_path| to |local_path|. Invokes the
64 const base::FilePath& local_path,
  /external/chromium_org/chrome/browser/drive/
drive_uploader_unittest.cc 318 base::FilePath local_path; local
321 temp_dir_.path(), 0, &local_path, &data));
327 MockDriveServiceWithUploadExpectation mock_service(local_path, data.size());
333 local_path,
353 base::FilePath local_path; local
356 temp_dir_.path(), 512 * 1024, &local_path, &data));
362 MockDriveServiceWithUploadExpectation mock_service(local_path, data.size());
368 local_path,
390 base::FilePath local_path; local
393 temp_dir_.path(), 512 * 1024, &local_path, &data))
417 base::FilePath local_path; local
443 base::FilePath local_path; local
470 base::FilePath local_path; local
496 base::FilePath local_path; local
509 local_path, local
543 base::FilePath local_path; local
562 local_path, local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
cloud_storage.py 83 def Get(bucket, remote_path, local_path):
85 logging.info('Downloading %s to %s' % (url, local_path))
86 _RunCommand(['cp', url, local_path])
89 def Insert(bucket, remote_path, local_path):
91 logging.info('Uploading %s to %s' % (local_path, url))
92 _RunCommand(['cp', local_path, url])
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_file_system.h 78 const base::FilePath& local_path,
103 const base::FilePath& local_path,
123 const base::FilePath& local_path,
private_api_file_system.cc 158 bool SetLastModifiedOnBlockingPool(const base::FilePath& local_path,
160 if (local_path.empty())
164 if (stat(local_path.value().c_str(), &stat_buffer) != 0)
170 return utime(local_path.value().c_str(), &times) == 0;
320 base::FilePath local_path = file_watch_url.path(); local
322 if (local_path.empty()) {
326 PerformFileWatchOperation(local_path, virtual_path, extension_id());
338 const base::FilePath& local_path,
346 local_path,
359 const base::FilePath& local_path,
    [all...]
file_watcher.h 57 // Starts watching a local file at |local_path|. |file_watcher_callback|
63 const base::FilePath& local_path,
file_watcher.cc 83 const base::FilePath& local_path,
94 local_path,
  /external/chromium_org/chrome/browser/sync_file_system/
mock_remote_change_processor.h 35 const base::FilePath& local_path,
remote_change_processor.h 55 // ADD_OR_UPDATE for a file, |local_path| needs to point to a
63 const base::FilePath& local_path,
fake_remote_change_processor.h 42 const base::FilePath& local_path,
  /external/chromium_org/third_party/
PRESUBMIT.py 14 local_path = f.LocalPath()
15 if input_api.os_path.dirname(local_path) == 'third_party':
17 if local_path.startswith('third_party' + input_api.os_path.sep):
19 if local_path.endswith("README.chromium"):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/config/
urls.py 32 def view_source_url(local_path):
33 return "http://trac.webkit.org/browser/trunk/%s" % local_path
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
functional.rb 25 def local_path( *parts ) method in class:ANTLR3.Test.Location
30 local_path( name )
110 path = local_path( name.to_s )
162 def local_path( *args ) method in class:ANTLR3.Test.Functional
163 self.class.local_path( *args )
  /external/chromium_org/webkit/browser/fileapi/
sandbox_file_system_test_helper.cc 71 base::FilePath local_path; local
73 file_util_->GetLocalFilePath(context.get(), CreateURL(path), &local_path);
74 return local_path;
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_operations_util.h 60 // Copies a data chunk from |stream| to the file specified by the |local_path|.
63 // On success, appends the data chunk in |local_path| and returns a non-zero
65 // by the |local_path|. If the end of the |stream| is not reached,
72 const base::FilePath& local_path,
  /external/chromium_org/content/shell/
shell_browser_main.cc 82 base::FilePath local_path; local
86 if (net::FileURLToFilePath(test_url, &local_path))
87 *current_working_directory = local_path.DirName();
  /external/chromium_org/chrome/browser/chromeos/drive/
fileapi_worker.cc 100 // Runs |callback| with arguments based on |error|, |local_path| and |entry|.
103 const base::FilePath& local_path,
133 callback.Run(base::PLATFORM_FILE_OK, file_info, local_path, scope_out_policy);
136 // Runs |callback| with arguments converted from |error| and |local_path|.
140 const base::FilePath& local_path,
143 callback.Run(FileErrorToPlatformError(error), local_path, close_callback); local
158 const base::FilePath& local_path,
169 // Here, the file should be at |local_path|, but there may be timing issue.
190 local_path, file_flags, static_cast<bool*>(NULL), result),
  /external/chromium_org/chrome/browser/chromeos/fileapi/
file_system_backend_unittest.cc 234 const base::FilePath::CharType* const local_path; member in class:__anon6853::TestCase::base::FilePath
255 base::FilePath local_path(kTestCases[i].local_path);
257 backend.GetVirtualPath(local_path, &virtual_path))
258 << "Resolving " << kTestCases[i].local_path;
267 << "Resolving " << kTestCases[i].local_path;
  /external/chromium_org/chrome/app/policy/
PRESUBMIT.py 32 local_path = input_api.PresubmitLocalPath()
33 template_path = os_path.join(local_path, 'policy_templates.json')
  /external/chromium_org/chrome/browser/media_galleries/mac/
mtp_device_delegate_impl_mac.h 51 const base::FilePath& local_path,
88 const base::FilePath& local_path,

Completed in 721 milliseconds

1 2 3 4