Searched refs:dirs (Results 1 - 25 of 29) sorted by relevance

12

/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
H A Dchromium_win.py50 dirs = []
52 dirs.append(self._chromium_baseline_path(self._name))
54 dirs.append(self._chromium_baseline_path('chromium-win-vista'))
55 dirs.append(self._chromium_baseline_path('chromium-win'))
56 dirs.append(self._webkit_baseline_path('win'))
57 dirs.append(self._webkit_baseline_path('mac'))
58 return dirs
H A Dmac.py59 dirs = []
61 dirs.append(self._webkit_baseline_path(self._name))
63 dirs.append(self._webkit_baseline_path('mac-leopard'))
65 dirs.append(self._webkit_baseline_path('mac-snowleopard'))
66 dirs.append(self._webkit_baseline_path('mac'))
67 return dirs
H A Dbase.py330 for root, dirs, files in os.walk(file_path, topdown=False):
337 for name in dirs:
/external/e2fsprogs/lib/ss/
H A Dhelp.c138 register char **dirs; local
150 dirs = info->info_dirs;
151 for (n_dirs = 0; dirs[n_dirs] != (char *)NULL; n_dirs++)
153 dirs = (char **)realloc((char *)dirs,
155 if (dirs == (char **)NULL) {
160 info->info_dirs = dirs;
161 dirs[n_dirs + 1] = (char *)NULL;
162 dirs[n_dirs] = malloc((unsigned)strlen(info_dir)+1);
163 strcpy(dirs[n_dir
[all...]
/external/webkit/WebKitTools/wx/packaging/
H A Dbuild-win-installer.py45 dirs = os.environ["PATH"].split(":")
47 dirs.append("C:\\Program Files\\Inno Setup 5")
48 dirs.append("C:\\Program Files (x86)\\Inno Setup 5")
54 for dir in dirs:
/external/openssl/crypto/x509/
H A Dby_dir.c92 STACK_OF(BY_DIR_ENTRY) *dirs;
167 a->dirs=NULL;
201 if (a->dirs != NULL)
202 sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free);
230 for (j=0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++)
232 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
237 if (j < sk_BY_DIR_ENTRY_num(ctx->dirs))
239 if (ctx->dirs == NULL)
241 ctx->dirs = sk_BY_DIR_ENTRY_new_null();
242 if (!ctx->dirs)
[all...]
/external/v8/test/mozilla/
H A Dtestcfg.py100 for root, dirs, files in os.walk(current_root):
101 for dotted in [x for x in dirs if x.startswith('.')]:
102 dirs.remove(dotted)
104 if excluded in dirs:
105 dirs.remove(excluded)
106 dirs.sort()
/external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_files.py75 for root, dirs, files in os.walk(path):
78 del dirs[:]
/external/v8/test/es5conform/
H A Dtestcfg.py83 for root, dirs, files in os.walk(current_root):
84 for dotted in [x for x in dirs if x.startswith('.')]:
85 dirs.remove(dotted)
/external/openssl/crypto/engine/
H A Deng_dyn.c145 /* Whether to never use 'dirs', use 'dirs' as a fallback, or only use
146 * 'dirs' for loading. Default is to use 'dirs' as a fallback. */
149 STACK_OF(OPENSSL_STRING) *dirs;
176 if(ctx->dirs)
177 sk_OPENSSL_STRING_pop_free(ctx->dirs, int_free_str);
206 c->dirs = sk_OPENSSL_STRING_new_null();
207 if(!c->dirs)
396 sk_OPENSSL_STRING_insert(ctx->dirs, tmp_st
[all...]
/external/webkit/WebKitTools/wx/build/
H A Dbuild_utils.py48 Get a list of exclude patterns going down several dirs.
63 def get_dirs_for_features(root, features, dirs):
65 Find which directories to include in the list of build dirs based upon the
68 outdirs = dirs
69 for adir in dirs:
/external/bluetooth/glib/gio/tests/
H A Dg-file.c400 const struct TestPathsWithOper dirs[] = local
426 for (i = 0; i < G_N_ELEMENTS (dirs); i++)
428 char *s = get_relative_path (dirs[i].use_uri, dirs[i].equal, dirs[i].path1, dirs[i].path2);
429 if (dirs[i].equal)
430 g_assert_cmpstr (s, ==, dirs[i].path3);
/external/dnsmasq/contrib/dynamic-dnsmasq/
H A Ddynamic-dnsmasq.pl236 my @dirs = grep(/^\d+$/, readdir(DIR));
238 foreach my $process (@dirs) {
/external/v8/tools/
H A Dpresubmit.py164 for (root, dirs, files) in os.walk(path):
165 for ignored in [x for x in dirs if self.IgnoreDir(x)]:
166 dirs.remove(ignored)
/external/bluetooth/glib/gio/
H A Dgcontenttype.c651 const char * const* dirs; local
665 dirs = g_get_system_data_dirs ();
667 for (i = 0; dirs[i] != NULL; i++)
669 comment = load_comment_for_mime_helper (dirs[i], basename);
1060 const char * const* dirs; local
1070 dirs = g_get_system_data_dirs ();
1072 for (i = 0; dirs[i] != NULL; i++)
1073 enumerate_mimetypes_dir (dirs[i], mimetypes);
1328 const gchar * const * dirs; local
1347 dirs
[all...]
H A Dgdesktopappinfo.c354 const char * const *dirs; local
358 dirs = get_applications_search_path ();
362 for (i = 0; dirs[i] != NULL; i++)
367 filename = g_build_filename (dirs[i], desktop_id, NULL);
378 filename = g_build_filename (dirs[i], basename, NULL);
2049 const char * const *dirs; local
2056 dirs = get_applications_search_path ();
2062 for (i = 0; dirs[i] != NULL; i++)
2063 get_apps_from_dir (apps, dirs[i], "");
2093 GList *dirs; /* mimeinf member in struct:__anon403
2507 const char * const *dirs; local
[all...]
/external/chromium/base/
H A Dmime_util_linux.cc138 // Set directories to search for icons to the comma-separated list |dirs|.
139 bool SetDirectories(const std::string& dirs);
357 bool IconTheme::SetDirectories(const std::string& dirs) { argument
361 while ((epos = dirs.find(',', pos)) != std::string::npos) {
362 TrimWhitespaceASCII(dirs.substr(pos, epos - pos), TRIM_ALL, &dir);
370 TrimWhitespaceASCII(dirs.substr(pos), TRIM_ALL, &dir);
/external/webkit/WebKitTools/Scripts/
H A DVCSUtils.pm313 my @dirs = ();
315 if ($dir eq '..' && $#dirs >= 0 && $dirs[$#dirs] ne '..') {
316 pop(@dirs);
318 push(@dirs, $dir);
321 return ($#dirs >= 0) ? File::Spec->catdir(@dirs) : ".";
/external/icu4c/tools/genprops/misc/
H A Ducdcopy.py149 for root, dirs, files in os.walk(source_root):
/external/icu4c/tools/genprops/
H A Ducdcopy.py149 for root, dirs, files in os.walk(source_root):
/external/dbus/dbus/
H A Ddbus-sysdeps.h299 dbus_bool_t _dbus_get_standard_session_servicedirs (DBusList **dirs);
H A Ddbus-sysdeps-unix.c2564 split_paths_and_append (DBusString *dirs, argument
2580 len = _dbus_string_get_length (dirs);
2582 while (_dbus_string_find (dirs, start, ":", &i))
2589 if (!_dbus_string_copy_len (dirs,
2637 if (!_dbus_string_copy_len (dirs,
2691 * @param dirs the directory list we are returning
2696 _dbus_get_standard_session_servicedirs (DBusList **dirs) argument
2754 dirs))
/external/dbus/bus/
H A Dconfig-parser.c809 DBusList *dirs; local
810 dirs = NULL;
821 if (!_dbus_get_standard_session_servicedirs (&dirs))
827 while ((link = _dbus_list_pop_first_link (&dirs)))
3079 DBusList *dirs; local
3083 dirs = NULL;
3086 if (!_dbus_get_standard_session_servicedirs (&dirs))
3087 _dbus_assert_not_reached ("couldn't get stardard dirs");
3090 while ((link = _dbus_list_pop_first_link (&dirs)))
3112 if (!_dbus_get_standard_session_servicedirs (&dirs))
[all...]
/external/clearsilver/python/examples/trans/
H A Dtrans.py266 dirs = []
272 dirs.append(file)
277 for dir in dirs:
/external/webkit/WebKit/mac/Misc/
H A DWebNSURLExtras.mm1006 NSArray *dirs = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSAllDomainsMask, YES);
1007 int i, numDirs = [dirs count];
1009 NSString *dir = [dirs objectAtIndex:i];

Completed in 355 milliseconds

12