Searched refs:path (Results 151 - 175 of 6566) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_jpeg_factory.cc15 bool MetadataParserJpegFactory::CanParse(const FilePath& path, argument
23 return path.MatchesExtension(ext);
26 MetadataParser* MetadataParserJpegFactory::CreateParser(const FilePath& path) { argument
28 parser = new JpegMetadataParser(path);
/external/chromium_org/build/android/pylib/utils/
H A Dhost_path_finder.py11 """Returns the most recent existing full path for the given file name.
13 Returns: An empty string if no path could be found.
15 out_dir = os.path.join(
18 lambda build_type: os.path.join(out_dir, build_type, file_name),
20 candidate_paths = filter(os.path.exists, candidate_paths)
21 candidate_paths = sorted(candidate_paths, key=os.path.getmtime, reverse=True)
/external/chromium_org/build/toolchain/win/
H A Dsetup_toolchain.py25 # Chromium rely on python being in the path. Add the path to this
26 # python here so that if it's not in the path when ninja is run
28 result[envvar.upper()] = os.path.dirname(sys.executable) + \
35 'required to be set to valid path' % required)
39 # VC setup will add a path like this in 32-bit mode:
45 # What we get as the path when running this will depend on which VS setup
49 def FixupPath32(path):
52 for i in range(len(path)):
53 if find_64.search(path[
113 path = important_env_vars["PATH"].split(";") variable
[all...]
/external/chromium_org/build/win/
H A Dsetup_cygwin_mount.py12 self_dir = os.path.dirname(sys.argv[0])
13 mount_path = os.path.join(self_dir, "../../third_party/cygwin")
14 batch_path = os.path.join(mount_path, "setup_mount.bat")
15 return os.system(os.path.normpath(batch_path) + ">nul")
/external/chromium_org/chrome/browser/parsers/
H A Dmetadata_parser_jpeg_factory.cc15 bool MetadataParserJpegFactory::CanParse(const base::FilePath& path, argument
23 return path.MatchesExtension(ext);
27 const base::FilePath& path) {
29 parser = new JpegMetadataParser(path);
26 CreateParser( const base::FilePath& path) argument
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawClip.cpp20 SK_MEMBER(path, Path),
28 SkDrawClip::SkDrawClip() : rect(NULL), path(NULL) {
35 SkASSERT(path != NULL);
36 maker.fCanvas->clipPath(path->fPath);
/external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/
H A Dconfig.h2 #define yasm__splitpath(path, tail) yasm__splitpath_win(path, tail)
3 #define yasm__abspath(path) yasm__abspath_win(path)
/external/chromium_org/tools/valgrind/drmemory/
H A DPRESUBMIT.py17 old_path = sys.path
19 sys.path = sys.path + [tools_vg_path]
23 sys.path = old_path
/external/chromium_org/tools/valgrind/tsan/
H A DPRESUBMIT.py17 old_path = sys.path
19 sys.path = sys.path + [tools_vg_path]
23 sys.path = old_path
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Drunrc.cmd21 parse arg name path rest
33 call runit name path
37 parse arg name path dir
39 if path \= '' & path \= '-r' then do
40 dir = value(translate(path),,'OS2ENVIRONMENT')
42 dir = translate(dir, '\', '/') /* change UNIX-like path to OS/2 */
47 if path = '-r' then do /* recursive call */
48 subdir = filespec('path', dir)
51 call runit name path filespe
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DWorkDir.h8 UString GetWorkDir(const NWorkDir::CInfo &workDirInfo, const UString &path);
/external/qemu/android/utils/
H A Dfilelock.h22 ** NULL only if the corresponding path is already locked by another emulator
23 ** of if the path is read-only.
25 ** note that 'path' can designate a non-existing path and that the lock creation
35 extern FileLock* filelock_create ( const char* path );
/external/skia/src/animator/
H A DSkDrawClip.cpp20 SK_MEMBER(path, Path),
28 SkDrawClip::SkDrawClip() : rect(NULL), path(NULL) {
35 SkASSERT(path != NULL);
36 maker.fCanvas->clipPath(path->fPath);
/external/chromium_org/tools/gn/
H A Dfilesystem_utils.cc37 DotDisposition ClassifyAfterDot(const std::string& path, argument
40 if (after_dot == path.size()) {
45 if (path[after_dot] == '/') {
51 if (path[after_dot] == '.') {
53 if (after_dot + 1 == path.size()) {
58 if (path[after_dot + 1] == '/') {
93 bool DoesBeginWindowsDriveLetter(const base::StringPiece& path) { argument
94 if (path.size() < 3)
98 if (path[1] != ':')
102 if (!((path[
214 FindExtensionOffset(const std::string& path) argument
224 FindExtension(const std::string* path) argument
232 FindFilenameOffset(const std::string& path) argument
240 FindFilename(const std::string* path) argument
248 FindFilenameNoExtension(const std::string* path) argument
263 RemoveFilename(std::string* path) argument
271 FindDir(const std::string* path) argument
300 IsPathAbsolute(const base::StringPiece& path) argument
320 MakeAbsolutePathRelativeIfPossible(const base::StringPiece& source_root, const base::StringPiece& path, std::string* dest) argument
391 InvertDir(const SourceDir& path) argument
412 NormalizePath(std::string* path) argument
498 ConvertPathToSystem(std::string* path) argument
507 PathToSystem(const std::string& path) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DContentProviderBasedProjectDelegate.js74 * @param {string} path
77 requestMetadata: function(path, callback)
83 * @param {string} path
86 requestFileContent: function(path, callback)
88 var contentProvider = this._contentProviders[path];
111 * @param {string} path
115 setFileContent: function(path, newContent, callback)
129 * @param {string} path
133 rename: function(path, newName, callback)
135 this.performRename(path, newNam
[all...]
/external/chromium/base/files/
H A Dfile_path_watcher.cc20 bool FilePathWatcher::Watch(const FilePath& path, Delegate* delegate) { argument
21 DCHECK(path.IsAbsolute());
22 return impl_->Watch(path, delegate);
/external/chromium/base/memory/
H A Dscoped_temp_dir.h27 // Recursively delete path.
34 // Creates a unique directory under a given path, and takes ownership of it.
35 bool CreateUniqueTempDirUnderPath(const FilePath& path) WARN_UNUSED_RESULT;
37 // Takes ownership of directory at |path|, creating it if necessary.
39 bool Set(const FilePath& path) WARN_UNUSED_RESULT;
48 const FilePath& path() const { return path_; } function in class:ScopedTempDir
/external/chromium/build/linux/
H A Drewrite_dirs.py22 def RewritePath(path, opts):
23 """Rewrites a path by stripping the prefix and prepending the sysroot."""
26 if os.path.isabs(path) and not path.startswith(sysroot):
27 if path.startswith(prefix):
28 path = path[len(prefix):]
29 path = path
[all...]
/external/chromium/chrome/browser/resources/file_manager/bin/
H A Dsquashdir.py19 include the relative path to the source file, with '^^' inserted between each
33 def scan_path(dest, src, path):
34 abs_src = os.path.join(src, path)
37 basename = os.path.basename(path)
40 newname = os.path.join(dest, path.replace('/', '^^'))
54 abs_src = os.path.abspath(src)
55 path variable
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dshared_resources_data_source.cc25 int PathToIDR(const std::string& path) { argument
27 if (path == "app/resources/folder_closed.png") {
29 } else if (path == "app/resources/folder_closed_rtl.png") {
31 } else if (path == "app/resources/folder_open.png") {
33 } else if (path == "app/resources/folder_open_rtl.png") {
35 } else if (path == "app/resources/throbber.png") {
41 key += path;
63 void SharedResourcesDataSource::StartDataRequest(const std::string& path, argument
66 int idr = PathToIDR(path);
67 DCHECK_NE(-1, idr) << " path
[all...]
/external/chromium_org/base/android/
H A Dpath_utils.cc19 ScopedJavaLocalRef<jstring> path = local
21 FilePath data_path(ConvertJavaStringToUTF8(path));
28 ScopedJavaLocalRef<jstring> path = local
30 FilePath data_path(ConvertJavaStringToUTF8(path));
37 ScopedJavaLocalRef<jstring> path = local
39 FilePath cache_path(ConvertJavaStringToUTF8(path));
46 ScopedJavaLocalRef<jstring> path = local
48 FilePath downloads_path(ConvertJavaStringToUTF8(path));
55 ScopedJavaLocalRef<jstring> path = local
57 FilePath library_path(ConvertJavaStringToUTF8(path));
64 ScopedJavaLocalRef<jstring> path = local
[all...]
/external/chromium_org/build/linux/
H A Drewrite_dirs.py22 def RewritePath(path, opts):
23 """Rewrites a path by stripping the prefix and prepending the sysroot."""
26 if os.path.isabs(path) and not path.startswith(sysroot):
27 if path.startswith(prefix):
28 path = path[len(prefix):]
29 path = path
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dlocal_renderer.py17 def Render(path):
18 assert not '\\' in path
19 return RenderServlet(Request.ForTest(path),
/external/chromium_org/content/public/common/
H A Ddrop_data.cc12 DropData::FileInfo::FileInfo(const base::string16& path, argument
14 : path(path),
/external/chromium_org/content/test/gpu/page_sets/
H A D__init__.py8 start_dir = os.path.dirname(__file__)
11 if os.path.splitext(f)[1] != '.json':
13 filename = os.path.join(dirpath, f)

Completed in 745 milliseconds

1234567891011>>