/external/webkit/WebCore/plugins/win/ |
PluginDatabaseWin.cpp | 84 static inline void addPluginPathsFromRegistry(HKEY rootKey, HashSet<String>& paths) 111 paths.add(String(pathStr, pathStrSize / sizeof(WCHAR) - 1)); 117 void PluginDatabase::getPluginPathsInDirectories(HashSet<String>& paths) const 150 paths.add(fullPath); 162 addPluginPathsFromRegistry(HKEY_LOCAL_MACHINE, paths); 163 addPluginPathsFromRegistry(HKEY_CURRENT_USER, paths); 168 paths.remove(oldWMPPluginPath);
|
/external/bluetooth/glib/gio/tests/ |
g-file.c | 46 const char *paths[] = {"/", local 62 while (paths[i]) 64 file = g_file_new_for_path (paths[i++]); 486 const struct TestPathsWithOper paths[] = local 501 for (i = 0; i < G_N_ELEMENTS (paths); i++) 502 roundtrip_parent_child (paths[i].use_uri, paths[i].equal, paths[i].path1, paths[i].path2); 531 /* Testing g_file_has_prefix(), g_file_get_relative_path() and g_file_resolve_relative_path() to return and process correct relative paths */ [all...] |
/external/webkit/WebCore/platform/graphics/mac/ |
GraphicsContextMac.mm | 59 void GraphicsContext::drawFocusRing(const Vector<Path>& paths, int width, int offset, const Color& color) 71 unsigned pathCount = paths.size(); 73 CGPathAddPath(focusRingPath.get(), 0, paths[i].platformPath());
|
/external/chromium/base/ |
directory_watcher_mac.cc | 65 char** paths = reinterpret_cast<char**>(event_paths); local 69 watcher->OnFSEventsCallback(FilePath(paths[i]));
|
/external/clearsilver/python/examples/base/ |
handle_error.py | 66 paths = (DUMP_DIR, 69 for path in paths:
|
/external/sonivox/arm-fm-22k/host_src/ |
arm-fm-22k.mak | 5 # Set the paths to the tools (CC, AR, LD, etc.)
|
/external/sonivox/arm-hybrid-22k/host_src/ |
arm-hybrid-22k.mak | 5 # Set the paths to the tools (CC, AR, LD, etc.)
|
/external/sonivox/arm-wt-22k/host_src/ |
arm-wt-22k.mak | 5 # Set the paths to the tools (CC, AR, LD, etc.)
|
/bionic/libc/stdio/ |
tempnam.c | 37 #include <paths.h>
|
/bionic/libc/unistd/ |
system.c | 35 #include <paths.h>
|
/development/simulator/app/ |
MyApp.h | 28 mResetPaths(false) // configurable; reset prefs with paths 70 static void FindExe(const wxString& exeName, const wxString paths[],
|
/external/dropbear/ |
netbsd_getpass.c | 46 #include <paths.h>
|
includes.h | 69 #include <paths.h>
|
/external/webkit/WebKit/qt/Api/ |
qwebplugindatabase_p.h | 83 void setSearchPaths(const QStringList& paths);
|
/external/bluetooth/glib/gio/ |
giomodule.c | 358 gchar **paths; local 359 paths = g_strsplit (module_path, ":", 0); 361 while (paths[i] != NULL) 363 modules = g_list_concat (modules, g_io_modules_load_all_in_directory (paths[i])); 367 g_strfreev (paths);
|
/external/webkit/WebKitTools/Scripts/ |
svn-create-patch | 91 my %paths = processPaths(@ARGV); 95 for my $path (keys %paths) { 323 # Sort first by directory, then by file, so all paths in one directory are grouped 342 my ($paths) = @_; 343 return ("." => 1) if (!@{$paths}); 347 for my $file (@{$paths}) { 348 die "can't handle absolute paths like \"$file\"\n" if File::Spec->file_name_is_absolute($file); 356 die "can't handle paths with .. like \"$untouchedFile\"\n" if $file =~ m|/\.\./|; 363 # Remove any paths that also have a parent listed.
|
/external/sonivox/arm-fm-22k/lib_src/ |
arm-fm-22k_lib.mak | 5 # Set the paths to the tools (CC, AR, LD, etc.)
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
arm-hybrid-22k_lib.mak | 5 # Set the paths to the tools (CC, AR, LD, etc.)
|
/external/sonivox/arm-wt-22k/lib_src/ |
arm-wt-22k_lib.mak | 5 # Set the paths to the tools (CC, AR, LD, etc.)
|
/external/webkit/WebCore/platform/graphics/skia/ |
PlatformContextSkia.h | 176 void applyAntiAliasedClipPaths(WTF::Vector<SkPath>& paths);
|
/external/webkit/WebKitTools/pywebsocket/test/ |
test_dispatch.py | 84 paths = list(dispatch._source_file_paths(_TEST_HANDLERS_DIR)) 85 paths.sort() 86 self.assertEqual(7, len(paths)) 99 for expected, actual in zip(expected_paths, paths):
|
/frameworks/base/core/java/android/content/res/ |
AssetManager.java | 610 * the input array of paths is null. 613 public final int[] addAssetPaths(String[] paths) { 614 if (paths == null) { 618 int[] cookies = new int[paths.length]; 619 for (int i = 0; i < paths.length; i++) { 620 cookies[i] = addAssetPath(paths[i]);
|
/external/webkit/WebKitTools/Scripts/webkitpy/style/ |
checker_unittest.py | 448 """Test paths that should be checked as C++.""" 449 paths = [ 456 for path in paths: 479 """Test paths that should be checked as text.""" 480 paths = [ 498 for path in paths: 511 """Test paths that have no file type..""" 512 paths = [ 518 for path in paths:
|
/external/webkit/WebCore/rendering/ |
RenderFileUploadControl.cpp | 282 void RenderFileUploadControl::receiveDroppedFiles(const Vector<String>& paths) 285 m_fileChooser->chooseFiles(paths); 287 m_fileChooser->chooseFile(paths[0]);
|
/packages/apps/Gallery3D/src/com/cooliris/media/ |
Utils.java | 167 List<String> paths = uri.getPathSegments(); local 168 int numPaths = paths.size(); 170 string += paths.get(i);
|