HomeSort by relevance Sort by last modified time
    Searched refs:paths (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/webkit/WebKit/chromium/src/
WebFileChooserCompletionImpl.cpp 51 Vector<WebCore::String> paths; local
53 paths.append(fileNames[i]);
54 m_fileChooser->chooseFiles(paths);
  /external/webkit/WebKitTools/Scripts/
do-file-rename 44 my @paths;
67 push @paths, $File::Find::name;
79 for my $file (sort @paths) {
85 for my $file (sort @paths) {
95 for my $file (sort @paths) {
do-webcore-rename 45 my @paths;
68 push @paths, $File::Find::name;
148 for my $file (sort @paths) {
159 for my $file (sort @paths) {
173 for my $file (sort @paths) {
find-extra-includes 36 my %paths;
49 $paths{$file} = $File::Find::name;
93 print "$paths{$file} does not need to include $i1, because $i2 does\n" if $b1 ne $b2;
report-include-statistics 36 my %paths;
50 $paths{$file} = $File::Find::name;
93 next if !$paths{$file};
make-script-test-wrappers 132 my @paths = map { -f $_ ? dirname($_) : $_ } @args;
138 find({ preprocess => \&directoryFilter, wanted => $fileFilter }, @paths);
  /external/webkit/WebCore/plugins/
PluginDatabase.cpp 98 HashSet<String> paths; local
99 getPluginPathsInDirectories(paths);
108 HashSet<String>::const_iterator pathsEnd = paths.end();
109 for (HashSet<String>::const_iterator it = paths.begin(); it != pathsEnd; ++it) {
132 // Cache all the paths we found with their timestamps for next time.
335 Vector<String> paths; local
337 // Add paths specific to each platform
341 paths.append(userPluginPath);
345 paths.append(userPluginPath);
347 paths.append("/usr/lib/browser/plugins")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerInitializer.java 64 /** path separator to store multiple paths in a single property. This is guaranteed to not
343 * The method also stores the paths used to create the entries in the project persistent
354 String[] paths = getTargetPaths(target);
356 // create the classpath entry from the paths
357 IClasspathEntry[] entries = createClasspathEntriesFromPaths(paths);
359 // paths now contains all the path required to recreate the IClasspathEntry with no
363 for (String p : paths) {
393 // the cache contains multiple paths, separated by a character guaranteed to not be in
398 String[] paths = cache.split(Pattern.quote(PATH_SEPARATOR));
399 if (paths.length < 3 || paths.length == 4)
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorPreserveSpace.java 64 WhitespaceInfoPaths paths = new WhitespaceInfoPaths(thisSheet); local
65 setPropertiesFromAttributes(handler, rawName, attributes, paths);
67 Vector xpaths = paths.getElements();
76 paths.clearElements();
ProcessorStripSpace.java 63 WhitespaceInfoPaths paths = new WhitespaceInfoPaths(thisSheet); local
64 setPropertiesFromAttributes(handler, rawName, attributes, paths);
66 Vector xpaths = paths.getElements();
75 paths.clearElements();
  /external/webkit/WebKit/qt/Api/
qwebplugindatabase.cpp 243 by WebKit. The plugins are picked up by WebKit by looking up a set of search paths.
244 The default set can be accessed using defaultSearchPaths(). The search paths
245 can be changed, see searchPaths() and setSearchPaths(). Additional search paths
273 Returns a list of plugins installed in the search paths.
294 Returns a default set of search paths.
300 QStringList paths; local
304 paths.append(directories[i]);
306 return paths;
310 Returns a list of search paths that are used by WebKit to look for plugins.
316 QStringList paths; local
    [all...]
  /external/webkit/WebCore/platform/qt/
TemporaryLinkStubs.cpp 84 void PluginDatabase::getPluginPathsInDirectories(HashSet<String>& paths) const
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
test_files.py 32 which takes an optional list of paths. If a list is passed in, the returned
33 list of test files is constrained to those found under the paths passed in,
47 def gather_test_files(port, paths):
51 paths: a list of command line paths relative to the webkit/tests
55 # if paths is empty, provide a pre-defined list.
56 if paths:
57 for path in paths:
68 # Now walk all the paths passed in on the command line and get filenames
  /frameworks/base/tools/aidl/
search_path.cpp 32 vector<string>& paths = g_importPaths; local
33 for (vector<string>::iterator it=paths.begin(); it!=paths.end(); it++) {
  /libcore/luni/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 45 * and also collects all absolute paths within the subtree. First
117 * paths were collected.
118 * @param paths A vector of paths that hold ExpressionOwner objects,
121 protected void eleminateRedundent(ElemTemplateElement psuedoVarRecipient, Vector paths)
123 int n = paths.size();
128 ExpressionOwner owner = (ExpressionOwner) paths.elementAt(i);
131 int found = findAndEliminateRedundant(i + 1, i, owner, psuedoVarRecipient, paths);
138 eleminateSharedPartialPaths(psuedoVarRecipient, paths);
141 diagnoseNumPaths(paths, numPathsEliminated, numUniquePathsEliminated)
    [all...]
  /sdk/anttasks/src/com/android/ant/
TaskHelper.java 85 String[] paths = path.list(); local
86 if (paths.length != 1) {
91 return paths[0];
  /external/ppp/pppd/
pathnames.h 8 #include <paths.h>
  /external/webkit/WebCore/plugins/symbian/
PluginDatabaseSymbian.cpp 60 void PluginDatabase::getPluginPathsInDirectories(HashSet<String>& paths) const
74 paths.add(*pIt);
  /hardware/libhardware_legacy/power/
power.c 76 open_file_descriptors(const char * const paths[])
80 int fd = open(paths[i], O_RDWR);
82 fprintf(stderr, "fatal error opening \"%s\"\n", paths[i]);
  /bionic/libc/stdio/
tmpfile.c 42 #include <paths.h>
  /external/junit/src/junit/swingui/
TestSuitePanel.java 127 TreePath[] paths= fTree.getSelectionPaths(); local
128 if (paths != null && paths.length == 1)
129 return (Test)paths[0].getLastPathComponent();
  /external/webkit/WebCore/platform/
FileChooser.h 65 void chooseFiles(const Vector<String>& paths);
  /frameworks/base/media/java/android/media/
MediaScannerConnection.java 186 ClientProxy(String[] paths, String[] mimeTypes, OnScanCompletedListener client) {
187 mPaths = paths;
223 * @param paths Array of paths to be scanned.
231 public static void scanFile(Context context, String[] paths, String[] mimeTypes,
233 ClientProxy client = new ClientProxy(paths, mimeTypes, callback);
  /development/simulator/app/
MyApp.cpp 318 * Cygwin, some wxWidgets features require "C:" paths rather than
319 * local-rooted paths. Probably needed for stand-alone MinGW too.
454 * If you want to reset local items (like paths to binaries) without
470 static wxString paths[] = { local
475 FindExe(wxT("gdb"), paths, wxT("/usr/bin/gdb"), &gdbPath);
486 static wxString paths[] = { local
491 FindExe(wxT("valgrind"), paths, wxT("/usr/bin/valgrind"), &valgrindPath);
518 /*static*/ void MyApp::FindExe(const wxString& exeName, const wxString paths[],
528 while (!(*paths).IsNull()) {
531 tmp = *paths;
    [all...]
  /external/stlport/
libstlport.mk 1 # Add a couple include paths to use stlport.

Completed in 914 milliseconds

1 2 3 4 5 6 7