Searched refs:paths (Results 51 - 75 of 217) sorted by relevance

123456789

/external/llvm/lib/Linker/
H A DLinker.cpp72 Linker::addPaths(const std::vector<std::string>& paths) { argument
73 for (unsigned i = 0, e = paths.size(); i != e; ++i)
74 LibPaths.push_back(sys::Path(paths[i]));
/external/webkit/Source/WebCore/rendering/
H A DRenderFileUploadControl.cpp113 void RenderFileUploadControl::receiveDropForDirectoryUpload(const Vector<String>& paths) argument
116 chromePointer->enumerateChosenDirectory(paths[0], m_fileChooser.get());
318 void RenderFileUploadControl::receiveDroppedFiles(const Vector<String>& paths) argument
322 receiveDropForDirectoryUpload(paths);
328 m_fileChooser->chooseFiles(paths);
330 m_fileChooser->chooseFile(paths[0]);
/external/sonivox/arm-fm-22k/host_src/
H A Darm-fm-22k.mak5 # Set the paths to the tools (CC, AR, LD, etc.)
/external/sonivox/arm-hybrid-22k/host_src/
H A Darm-hybrid-22k.mak5 # Set the paths to the tools (CC, AR, LD, etc.)
/external/sonivox/arm-wt-22k/host_src/
H A Darm-wt-22k.mak5 # Set the paths to the tools (CC, AR, LD, etc.)
/external/webkit/Tools/Scripts/webkitpy/test/
H A Dmain.py41 """Return a list of paths to all unit-test files."""
53 def _modules_from_paths(self, package_root, paths):
54 """Return a list of fully-qualified module names given paths."""
61 for path in paths:
/external/dropbear/
H A Dnetbsd_getpass.c46 #include <paths.h>
H A Dincludes.h69 #include <paths.h>
/external/webkit/Source/WebCore/platform/
H A DFileChooser.h74 void chooseFiles(const Vector<String>& paths);
/external/webkit/Source/WebCore/storage/
H A DStorageTracker.h91 void originFilePaths(Vector<String>& paths);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebplugindatabase_p.h83 void setSearchPaths(const QStringList& paths);
/external/webkit/Source/WebCore/plugins/win/
H A DPluginDatabaseWin.cpp82 static inline void addPluginPathsFromRegistry(HKEY rootKey, HashSet<String>& paths) argument
109 paths.add(String(pathStr, pathStrSize / sizeof(WCHAR) - 1));
115 void PluginDatabase::getPluginPathsInDirectories(HashSet<String>& paths) const
148 paths.add(fullPath);
160 addPluginPathsFromRegistry(HKEY_LOCAL_MACHINE, paths);
161 addPluginPathsFromRegistry(HKEY_CURRENT_USER, paths);
166 paths.remove(oldWMPPluginPath);
/external/chromium/chrome/browser/safe_browsing/
H A Dfilter_false_positive_perftest.cc173 std::vector<std::string> paths; local
174 safe_browsing_util::GeneratePathsToCheck(url_check, &paths);
177 for (size_t j = 0; j < paths.size(); ++j) {
179 crypto::SHA256HashString(hosts[i] + paths[j], &prefix, sizeof(prefix));
185 return hosts.size() * paths.size();
/external/webkit/Tools/Scripts/
H A Dsvn-create-patch93 my %paths = processPaths(@ARGV);
97 for my $path (keys %paths) {
360 # Sort first by directory, then by file, so all paths in one directory are grouped
379 my ($paths) = @_;
380 return ("." => 1) if (!@{$paths});
384 for my $file (@{$paths}) {
385 die "can't handle absolute paths like \"$file\"\n" if File::Spec->file_name_is_absolute($file);
393 die "can't handle paths with .. like \"$untouchedFile\"\n" if $file =~ m|/\.\./|;
400 # Remove any paths that also have a parent listed.
/external/clang/utils/analyzer/
H A DSATestBuild.py75 def which(command, paths = None):
76 """which(command, [paths]) - Look up the given command in the paths string
79 if paths is None:
80 paths = os.environ.get('PATH','')
87 if not paths:
88 paths = os.defpath
97 # Search the paths...
98 for path in paths.split(os.pathsep):
/external/llvm/utils/lit/lit/
H A DLitConfig.py79 # Check some known paths.
91 def getToolsPath(self, dir, paths, tools):
97 dir = Util.whichTools(tools, paths)
/external/sonivox/arm-fm-22k/lib_src/
H A Darm-fm-22k_lib.mak5 # Set the paths to the tools (CC, AR, LD, etc.)
/external/sonivox/arm-hybrid-22k/lib_src/
H A Darm-hybrid-22k_lib.mak5 # Set the paths to the tools (CC, AR, LD, etc.)
/external/sonivox/arm-wt-22k/lib_src/
H A Darm-wt-22k_lib.mak5 # Set the paths to the tools (CC, AR, LD, etc.)
/external/webkit/Source/WebCore/inspector/front-end/
H A DheapProfiler.css227 .detailed-heapshot-view .retaining-paths-view {
231 .detailed-heapshot-view .retaining-paths-view .title {
242 .detailed-heapshot-view .retaining-paths-view .title > span {
250 .detailed-heapshot-view .retaining-paths-to-windows {
/external/webkit/Source/gyp/
H A Dconfigure103 def _newest(paths):
104 return max([os.path.getmtime(path) for path in paths])
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Ddeduplicate_tests.py78 A dictionary mapping (test name, hash of content) => [paths]
101 A dictionary mapping (test name, hash of content) => [paths]
130 def extract_platforms(paths):
131 """Extracts the platforms from a list of paths matching ^platform/(.*?)/.
133 paths: a list of paths.
135 A dictionary containing all platforms from paths.
138 for path in paths:
/external/webrtc/src/modules/audio_processing/utility/
H A DAndroid.mk29 # Include paths placed before CFLAGS/CPPFLAGS
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_dispatch.py94 paths = list(
96 paths.sort()
97 self.assertEqual(8, len(paths))
111 for expected, actual in zip(expected_paths, paths):
/external/openssh/
H A Dincludes.h54 # include <paths.h>

Completed in 1321 milliseconds

123456789