HomeSort by relevance Sort by last modified time
    Searched refs:full_path (Results 51 - 75 of 152) sorted by null

1 23 4 5 6 7

  /external/chromium_org/components/search_engines/
template_url_parser_unittest.cc 97 base::FilePath full_path; local
98 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &full_path));
99 full_path = full_path.AppendASCII("osdd");
100 full_path = full_path.AppendASCII(file_name);
101 ASSERT_TRUE(base::PathExists(full_path));
104 ASSERT_TRUE(base::ReadFileToString(full_path, &contents));
  /external/chromium_org/content/browser/download/
save_item.h 51 void Rename(const base::FilePath& full_path);
59 const base::FilePath& full_path() const { return full_path_; } function in class:content::SaveItem
download_file_impl.cc 110 const base::FilePath& full_path,
113 full_path, UNIQUIFY, kMaxRenameRetries, base::TimeTicks(), callback);
117 const base::FilePath& full_path,
119 RenameWithRetryInternal(full_path,
142 const base::FilePath& full_path,
149 base::FilePath new_path(full_path);
151 if ((option & UNIQUIFY) && full_path != file_.full_path()) {
164 // have less assurance that the file at file_.full_path() was the one we were
174 full_path,
    [all...]
save_file.h 30 DownloadInterruptReason Rename(const base::FilePath& full_path);
download_file_impl.h 52 const base::FilePath& full_path,
55 const base::FilePath& full_path,
  /external/chromium_org/sandbox/win/src/
win_utils.h 78 DWORD IsReparsePoint(const base::string16& full_path, bool* result);
81 bool SameObject(HANDLE handle, const wchar_t* full_path);
interception_agent.cc 63 bool InterceptionAgent::DllMatch(const UNICODE_STRING* full_path,
73 if (full_path &&
74 !g_nt.RtlCompareUnicodeString(&current_name, full_path, case_insensitive))
84 bool InterceptionAgent::OnDllLoad(const UNICODE_STRING* full_path,
90 if (DllMatch(full_path, name, dll_info))
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-base-address.py 24 full_path = test.built_file_path(exe, chdir=CHDIR)
25 return test.run_dumpbin('/headers', full_path)
  /development/testrunner/test_defs/
native_test.py 85 full_path = os.path.join(os.sep, "data", "nativetest", f)
89 "(cd /sdcard;%s)" % full_path,
100 adb.SendShellCommand("rm %s" % full_path)
184 full_path = os.path.join(android_build.GetHostBin(), binary)
185 return run_command.RunHostCommand(full_path, valgrind=valgrind)
  /external/chromium_org/chrome/common/extensions/docs/server2/
local_file_system.py 86 full_path = os.path.join(self._base_path,
89 result[path] = _ListDir(full_path)
92 result[path] = _ReadFile(full_path)
105 full_path = os.path.join(self._base_path,
107 return _CreateStatInfo(full_path)
  /external/lldb/test/unittest2/
loader.py 241 def _match_path(self, path, full_path, pattern):
250 full_path = os.path.join(start_dir, path)
251 if os.path.isfile(full_path):
255 if not self._match_path(path, full_path, pattern):
258 name = self._get_name_from_path(full_path)
264 mod_file = os.path.abspath(getattr(module, '__file__', full_path))
266 fullpath_noext = os.path.splitext(full_path)[0]
269 mod_name = os.path.splitext(os.path.basename(full_path))[0]
270 expected_dir = os.path.dirname(full_path)
275 elif os.path.isdir(full_path)
    [all...]
  /external/chromium_org/net/tools/crash_cache/
crash_cache.cc 90 // Creates the destinaton folder for this run, and returns it on full_path.
92 base::FilePath* full_path) {
121 *full_path = path.AppendASCII(folders[action]);
123 if (base::PathExists(*full_path))
126 return base::CreateDirectory(*full_path);
326 base::FilePath full_path; local
327 if (!CreateTargetFolder(path, action, &full_path)) {
338 return SimpleInsert(full_path, action, &cache_thread);
341 return LoadOperations(full_path, action, &cache_thread);
344 return SimpleRemove(full_path, action, &cache_thread)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
generate_event_interfaces.py 85 def interface_line(full_path):
86 relative_path_local, _ = os.path.splitext(os.path.relpath(full_path, source_dir))
89 idl_file_contents = get_file_contents(full_path)
compute_global_objects.py 61 full_path = os.path.realpath(idl_filename)
62 idl_file_contents = get_file_contents(full_path)
  /external/chromium_org/base/files/
file_enumerator_posix.cc 94 FilePath full_path = root_path_.Append(i->filename_); local
95 if (ShouldSkip(full_path))
99 fnmatch(pattern_.c_str(), full_path.value().c_str(), FNM_NOESCAPE))
103 pending_paths_.push(full_path);
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
file_browser_handler_api.h 103 // |full_path| The selected file path if one was selected. It is ignored if
105 void OnFilePathSelected(bool success, const base::FilePath& full_path);
  /external/chromium_org/content/test/gpu/gpu_tests/
webgl_conformance.py 129 full_path = os.path.normpath(os.path.join(conformance_path, path))
131 if not os.path.exists(full_path):
133 'does not exist: ' + full_path)
135 with open(full_path, 'r') as f:
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_shared_library.cpp 186 uint8_t* ReadPackedRelocations(const char* full_path,
191 if (!fd.OpenReadOnly(full_path)) {
192 error->Format("Error opening file '%s'", full_path);
196 error->Format("Error seeking to %d in file '%s'", offset, full_path);
203 error->Format("Error reading %d bytes from file '%s'", bytes, full_path);
228 bool SharedLibrary::Load(const char* full_path,
233 LOG("%s: full path '%s'\n", __FUNCTION__, full_path);
235 size_t full_path_len = strlen(full_path);
237 error->Format("Path too long: %s", full_path);
241 strlcpy(full_path_, full_path, sizeof(full_path_))
    [all...]
  /external/chromium_org/chrome/utility/
shell_handler_win.cc 33 void ShellHandler::OnOpenItemViaShell(const base::FilePath& full_path) {
34 ui::win::OpenItemViaShell(full_path);
  /external/chromium_org/tools/android/checkstyle/
checkstyle.py 66 full_path, end = error.split(':', 1)
67 rel_path = os.path.relpath(full_path, local_path)
  /external/chromium_org/tools/json_schema_compiler/
features_compiler.py 37 full_path = os.path.join(relpath, schema)
47 code = generator.Generate(feature_list, full_path, namespace).Render()
preview.py 288 full_path = os.path.join(path, filename)
289 (file_root, file_ext) = os.path.splitext(full_path)
290 if os.path.isdir(full_path) and not full_path.endswith('.xcodeproj'):
291 html.Append('<li><a href="/%s/">%s/</a>' % (full_path, filename))
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
server.py 39 full_path = os.path.join(extra_dir, os.path.basename(path))
40 if os.path.isfile(full_path):
41 return full_path
54 full_path = os.path.join(extra_dir, path)
55 if os.path.isfile(full_path):
56 return full_path
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader_multipart.py 104 full_path = self._host.filesystem.join(self._build_dir, binary)
105 if not self._host.filesystem.exists(full_path):
108 _log.error(' at %s' % full_path)
139 full_path = self._host.filesystem.join(self._build_dir, binary)
142 '--binary=%s' % full_path,
  /external/chromium_org/tools/
check_grd_for_unused_strings.py 88 full_path = os.path.join(root, file)
89 src_file_contents = open(full_path).read()
96 (full_path, match)
98 full_path = os.path.join(root, file)
99 print 'Skipping %s.' % (full_path)

Completed in 269 milliseconds

1 23 4 5 6 7