Searched refs:path (Results 51 - 75 of 2761) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/fileapi/
H A DDOMFilePath.cpp50 String DOMFilePath::ensureDirectoryPath(const String& path) argument
52 if (!DOMFilePath::endsWithSeparator(path)) {
53 String newPath = path;
57 return path;
60 String DOMFilePath::getName(const String& path) argument
62 int index = path.reverseFind(DOMFilePath::separator);
64 return path.substring(index + 1);
65 return path;
68 String DOMFilePath::getDirectory(const String& path) argument
70 int index = path
91 removeExtraParentReferences(const String& path) argument
119 isValidPath(const String& path) argument
[all...]
/external/chromium/chrome/browser/ui/cocoa/download/
H A Ddownload_util_mac.h17 void AddFileToPasteboard(NSPasteboard* pasteboard, const FilePath& path);
21 void NotifySystemOfDownloadComplete(const FilePath& path);
/external/clang/test/Analysis/
H A Dchroot.c3 extern int chroot(const char* path);
4 extern int chdir(const char* path);
/external/quake/quake/src/QW/client/
H A Dsys.h29 int Sys_FileOpenRead (char *path, int *hndl);
31 int Sys_FileOpenWrite (char *path);
36 int Sys_FileTime (char *path);
37 void Sys_mkdir (char *path);
/external/quake/quake/src/WinQuake/
H A Dsys.h29 int Sys_FileOpenRead (const char *path, int *hndl);
31 int Sys_FileOpenWrite (const char *path);
36 int Sys_FileTime (const char *path);
37 void Sys_mkdir (const char *path);
/external/webkit/Source/WebKit2/Platform/
H A DModule.cpp31 Module::Module(const String& path) argument
32 : m_path(path)
/external/chromium/chrome/browser/chromeos/
H A Dcros_settings_provider.h18 // Sets |in_value| to given |path| in cros settings.
20 void Set(const std::string& path, Value* in_value);
22 // Gets settings value of given |path| to |out_value|.
24 virtual bool Get(const std::string& path, Value** out_value) const = 0;
27 virtual bool HandlesSetting(const std::string& path) = 0;
31 virtual void DoSet(const std::string& path, Value* in_value) = 0;
/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/clang/bindings/python/tests/cindex/
H A Dtest_translation_unit.py15 kInputsDir = os.path.join(os.path.dirname(__file__), 'INPUTS')
18 path = os.path.join(kInputsDir, 'hello.cpp')
19 tu = TranslationUnit.from_source(path)
20 assert tu.spelling == path
23 path = os.path.join(kInputsDir, 'hello.cpp')
24 tu = get_tu(path)
30 path
[all...]
H A Dtest_index.py4 kInputsDir = os.path.join(os.path.dirname(__file__), 'INPUTS')
14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
/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/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 );
H A Dpath.c12 #include "android/utils/path.h"
51 ** this understands . and .. when encountered in the input path
65 path_parent( const char* path, int levels ) argument
67 const char* end = path + strlen(path);
73 /* trim any trailing path separator */
74 while (end > path && ispathsep(end[-1]))
78 while (base > path && !ispathsep(base[-1]))
81 if (base <= path) {
101 result = malloc( end-path
120 path_split( const char* path, char* *pdirname, char* *pbasename ) argument
283 path_mkdir( const char* path, int mode ) argument
296 path_mkdir_recursive( char* path, unsigned len, int mode ) argument
343 path_mkdir_if_needed( const char* path, int mode ) argument
370 path_get_size( const char* path, uint64_t *psize ) argument
[all...]
/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/webkit/Source/WebCore/platform/efl/
H A DKURLEfl.cpp31 return String(path());
/external/llvm/lib/Support/Windows/
H A DPath.inc27 // Windows happily accepts either forward or backward slashes, though any path
30 // can be introduced into a path.
32 // Another invariant is that a path ends with a slash if and only if the path
34 // in Unix, Windows has a rather complicated notion of a root path and this
53 : path(p) {
54 FlipBackSlashes(path);
58 : path(StrStart, StrLen) {
59 FlipBackSlashes(path);
64 path
[all...]
/external/skia/gm/
H A Dpathfill.cpp15 static SkScalar make_frame(SkPath* path) { argument
18 path->addRoundRect(r, SkIntToScalar(15), SkIntToScalar(15));
23 paint.getFillPath(*path, path);
27 static SkScalar make_triangle(SkPath* path) { argument
31 path->moveTo(SkIntToScalar(gCoord[0]), SkIntToScalar(gCoord[1]));
32 path->lineTo(SkIntToScalar(gCoord[2]), SkIntToScalar(gCoord[3]));
33 path->lineTo(SkIntToScalar(gCoord[4]), SkIntToScalar(gCoord[5]));
34 path->close();
35 path
39 make_rect(SkPath* path) argument
47 make_oval(SkPath* path) argument
55 make_sawtooth(SkPath* path) argument
75 make_star(SkPath* path, int n) argument
92 make_star_5(SkPath* path) argument
93 make_star_13(SkPath* path) argument
[all...]
/external/skia/samplecode/
H A DSamplePathFill.cpp18 static SkScalar make_frame(SkPath* path) { argument
20 path->addRoundRect(r, 15, 15);
25 paint.getFillPath(*path, path);
29 static SkScalar make_triangle(SkPath* path) { argument
33 path->moveTo(SkIntToScalar(gCoord[0]), SkIntToScalar(gCoord[1]));
34 path->lineTo(SkIntToScalar(gCoord[2]), SkIntToScalar(gCoord[3]));
35 path->lineTo(SkIntToScalar(gCoord[4]), SkIntToScalar(gCoord[5]));
36 path->close();
37 path
41 make_rect(SkPath* path) argument
48 make_oval(SkPath* path) argument
55 make_sawtooth(SkPath* path) argument
75 make_star(SkPath* path, int n) argument
92 make_star_5(SkPath* path) argument
93 make_star_13(SkPath* path) argument
[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/srec/portable/include/
H A DPFileSystem.h73 * @param path Fully qualified file path
77 ESR_ReturnCode(*createPFile)(struct PFileSystem_t* self, const LCHAR* path, ESR_BOOL littleEndian, PFile** file);
83 * @param path Fully qualified directory path
84 * @return ESR_INVALID_ARGUMENT if path is null; ESR_IDENTIFIER_COLLISION if directory already exists;
87 ESR_ReturnCode(*mkdir)(struct PFileSystem_t* self, const LCHAR* path);
93 * @param path Fully qualified file path
96 ESR_ReturnCode(*chdir)(struct PFileSystem_t* self, const LCHAR* path);
[all...]
/external/webkit/Tools/wx/packaging/
H A Dbuild-mac-installer.py39 script_dir = os.path.abspath(os.path.dirname(__file__))
40 sys.path.append(os.path.abspath(os.path.join(script_dir, "..", "build")))
46 wxwk_root = os.path.abspath(os.path.join(script_dir, "..", "..", ".."))
47 wxwebkit_dir = os.path.abspath(os.path.join(wxwk_root, "WebKitBuild", get_config(wxwk_root) + git_branch_name()))
60 if os.path
[all...]

Completed in 565 milliseconds

1234567891011>>