Searched refs:path (Results 176 - 200 of 2761) sorted by relevance

1234567891011>>

/external/valgrind/main/auxprogs/
H A Dchange-copyright-year19 for i in `find . -name '*.[chS]' -type f -not -path '*.svn\/*'` ; do
/external/webkit/Source/WebCore/page/
H A DGroupSettings.cpp42 void GroupSettings::setIndexedDBDatabasePath(const String& path) argument
44 m_indexedDBDatabasePath = path;
/external/webkit/Source/WebCore/platform/android/
H A DFileSystemAndroid.cpp43 // Global static used to store the base to the plugin path.
47 CString fileSystemRepresentation(const String& path) argument
49 // If the path is a content:// URI then ask Java to resolve it for us.
50 if (path.startsWith("content://"))
51 return PlatformBridge::resolveFilePathForContentUri(path).utf8();
52 else if (path.startsWith("file://"))
53 return path.substring(strlen("file://")).utf8();
55 return path.utf8();
90 // may get passed a content URI representing the path to the file. We pass
93 String pathGetFileName(const String& path) argument
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DKURLGtk.cpp35 String path = filenameToString(filename);
37 return path;
/external/webkit/Source/WebCore/platform/win/
H A DFileSystemWin.cpp47 static bool statFile(String path, struct _stat64& st) argument
49 ASSERT_ARG(path, !path.isNull());
50 return !_wstat64(path.charactersWithNullTermination(), &st) && (st.st_mode & _S_IFMT) == _S_IFREG;
53 bool getFileSize(const String& path, long long& result) argument
56 if (!statFile(path, sb))
62 bool getFileModificationTime(const String& path, time_t& result) argument
65 if (!statFile(path, st))
71 bool fileExists(const String& path) argument
74 return statFile(path, s
77 deleteFile(const String& path) argument
83 deleteEmptyDirectory(const String& path) argument
89 pathByAppendingComponent(const String& path, const String& component) argument
113 makeAllDirectories(const String& path) argument
132 pathGetFileName(const String& path) argument
137 directoryName(const String& path) argument
241 openFile(const String& path, FileOpenMode mode) argument
298 safeCreateFile(const String& path, CFDataRef data) argument
[all...]
H A DPathWalker.cpp35 String path = makeString(directory, "\\", pattern); local
36 m_handle = ::FindFirstFileW(path.charactersWithNullTermination(), &m_data);
/external/webkit/Source/WebCore/storage/
H A DStorageNamespace.cpp39 PassRefPtr<StorageNamespace> StorageNamespace::localStorageNamespace(const String& path, unsigned quota) argument
41 return StorageNamespaceImpl::localStorageNamespace(path, quota);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebKitSystemBits.h36 unsigned long long WebVolumeFreeSize(NSString *path);
/external/webkit/Tools/Scripts/
H A Dpdevenv12 my ($fh, $path) = tempfile(UNLINK => 0, SUFFIX => '.cmd') or die;
41 chmod 0755, $path;
43 chomp($path = `cygpath -w -s '$path'`);
45 exec("cmd /c \"call $path\"");
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dtestoutput.py51 path = filename.split(os.path.sep)
52 if 'platform' in path:
53 return path[path.index('platform') + 1]
57 path = filename.split(os.path.sep)
58 if 'LayoutTests' in path:
59 path = path[
[all...]
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dtest_files.py56 paths: a list of path expressions relative to port.layout_tests_dir()
57 to search. Glob patterns are ok, as are path expressions with
67 return [filesystem.normpath(filesystem.join(base_dir, path)) for path in paths]
74 paths: a list of absolute path expressions to search.
80 for path in paths:
82 if path.find('*') > -1:
83 filenames = filesystem.glob(path)
86 paths_to_walk.add(path)
91 for path i
[all...]
H A Dconfig_standalone.py41 this_dir = os.path.abspath(sys.path[0])
42 up = os.path.dirname
44 if script_dir not in sys.path:
45 sys.path.append(script_dir)
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/win/
H A DActivateFonts.cpp40 static wstring path; local
44 return path;
50 return path;
52 path = buffer.data();
53 if (path[path.length() - 1] != '\\')
54 path.append(L"\\");
56 return path;
/external/chromium/chrome/browser/parsers/
H A Dmetadata_parser_manager.cc37 MetadataParser* MetadataParserManager::GetParserForFile(const FilePath& path) { argument
41 DLOG(ERROR) << path.value();
42 amount_read = file_util::ReadFile(path, buffer, sizeof(buffer));
48 if (factories_[x]->CanParse(path, buffer, amount_read)) {
49 return factories_[x]->CreateParser(path);
/external/chromium/testing/gmock/test/
H A Dgmock_test_utils.py40 # Determines path to gtest_test_utils and imports it.
41 SCRIPT_DIR = os.path.dirname(__file__) or '.'
44 gtest_tests_util_dir = os.path.join(SCRIPT_DIR, '../gtest/test')
45 if os.path.isdir(gtest_tests_util_dir):
48 GTEST_TESTS_UTIL_DIR = os.path.join(SCRIPT_DIR, '../../gtest/test')
50 sys.path.append(GTEST_TESTS_UTIL_DIR)
55 """Returns the absolute path of the directory where the .py files are."""
61 """Returns the absolute path of the test binary given its name.
70 The absolute path of the test binary.
/external/icu4c/common/
H A Dures_cnv.c34 char *path = pathBuffer; local
40 path = NULL;
52 u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */
57 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
63 /* not NUL-terminated - path too long */
75 return ures_open(path, localeID, status);
/external/openssh/
H A Dfixprogs42 ($cmd, $path, $est) = /^\"([^\"]+)\"\s+([\w\/_-]+)\s+([\d\.\-]+)/o;
50 exec $path @args;
57 $path = "undef";
62 print "Evaluating '$path $mostargs'\n";
63 @ent = qx{$path $mostargs | $entcmd -b -t};
69 print OUT "\"$cmd\" $path $est\n";
/external/oprofile/libpopt/
H A Dfindme.c15 char * path = getenv("PATH"); local
21 /* If there is a / in the argv[0], it has to be an absolute path */
25 if (path == NULL) return NULL;
27 start = pathbuf = alloca(strlen(path) + 1);
28 buf = malloc(strlen(path) + strlen(argv0) + sizeof("/"));
30 strcpy(pathbuf, path);
/external/skia/src/animator/
H A DSkTextToPath.cpp21 SK_MEMBER(path, Path),
29 SkTextToPath::SkTextToPath() : paint(NULL), path(NULL), text(NULL) {
33 path->draw(maker);
38 if (paint == NULL || path == NULL || text == NULL) {
46 text->y, &path->getPath());
/external/v8/build/
H A Dgyp_v838 script_dir = os.path.dirname(__file__)
39 v8_root = os.path.normpath(os.path.join(script_dir, os.pardir))
41 sys.path.insert(0, os.path.join(v8_root, 'tools'))
44 sys.path.insert(0, os.path.join(v8_root, 'build', 'gyp', 'pylib'))
52 if not file_path or not os.path.exists(file_path):
58 e.filename = os.path.abspath(file_path)
70 var, os.path
[all...]
/external/webkit/Source/WebCore/platform/haiku/
H A DFileSystemHaiku.cpp52 BPath path; local
53 if (find_directory(B_USER_DIRECTORY, &path) != B_OK)
56 return String(path.Path());
83 Vector<String> listDirectory(const String& path, const String& filter) argument
86 BDirectory directory(path.utf8().data());
/external/webkit/Tools/CodeCoverage/
H A Dcov.py30 import os.path namespace
35 if not os.path.exists(data_dir):
38 output = open(os.path.join(data_dir, runid + ".csv"), "w")
44 annotated_dir = os.path.join(data_dir, runid + ".annotated")
45 if os.path.exists(annotated_dir):
50 for path in keys:
51 (total, covered, annotated_data) = results[path]
52 path = path[path
[all...]
H A Drun-generate-coverage-data53 base,ext = os.path.splitext(file)
55 sources.append( os.path.join(root, file) )
66 Wow, the first time os.path.join is doing the right thing. We might
67 have a relative path in the depends using os.path.join(dirname of .d, dep)
77 dir = os.path.dirname(obj)
80 # Remove files outside WebKit, make path absolute
82 deps = map(lambda x: os.path.abspath(os.path.join(dir, x)), deps)
100 ### is absolute path
[all...]
/external/icu4c/stubdata/
H A Dicu_dat_generator.py38 import os.path namespace
54 command_list = [os.path.join(ICU_PREBUILT_DIR, tool)]
68 src_dat = os.path.join(ICU4C_DIR, "stubdata", ICUDATA + "-all.dat")
69 dst_dat = os.path.join(ICU4C_DIR, "stubdata", ICUDATA + ".dat")
76 if not os.path.isfile(input_file):
86 def WriteIndex(path, locales, cldr_version=None):
89 f = open(path, "w")
102 def AddResFile(collection, path):
106 end = path.find(".res")
108 collection.add(path[pat
[all...]
/external/oprofile/libpp/
H A Dparse_filename.cpp61 * @param component path component
65 void remove_base_dir(vector<string> & path) argument
68 for (it = path.begin(); it != path.end(); ++it) {
73 path.erase(path.begin(), it);
78 /// The second argument is the anon portion of the path which will
111 * {root}/path/to/bin/{dep}/{root}/path/to/bin/event_spec
112 * {root}/path/t
137 vector<string> path = separate_token(filename_spec, '/'); local
[all...]

Completed in 3806 milliseconds

1234567891011>>