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

1234567

/external/lldb/source/Host/
H A DAndroid.mk5 dirs := common macro
8 dirs += macosx
12 dirs += linux
16 dirs += freebsd
19 subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, $(dirs)))
/external/clang/test/CodeGenCXX/
H A D2004-11-27-ExceptionCleanupAssertion.cpp13 Strongbad dirs[] = { Strongbad(0) + 1}; local
/external/chromium_org/build/android/pylib/utils/
H A Dhost_utils.py12 for root, dirs, files in os.walk(path):
14 for f in files + dirs])
/external/ltrace/sysdeps/linux-gnu/
H A Dhooks.c48 add_dir(struct vect *dirs, const char *str1, const char *str2) argument
52 && VECT_PUSHBACK(dirs, &dir) < 0)
61 struct vect *dirs = data; local
63 add_dir(dirs, entry->pathname, "/ltrace");
82 static struct vect dirs; local
92 *retp = VECT_ELEMENT(&dirs, const char *, 0);
94 *retp = VECT_ELEMENT(&dirs, const char *,
101 VECT_INIT(&dirs, char *);
132 add_dir(&dirs, xdg_home, "/ltrace");
134 add_dir(&dirs, hom
[all...]
/external/chromium_org/third_party/angle/
H A Denumerate_files.py5 dirs = [ ] variable
11 curArray = dirs
17 if arg == "-dirs":
18 curArray = dirs
32 if len(dirs) == 0:
33 dirs.append(".")
40 for rootdir in dirs:
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dfile_system_test.py54 for root, dirs, files in file_system.Walk(''):
57 all_dirs += [root + '/' + name for name in dirs]
65 for root, dirs, files in file_system.Walk('', depth=0):
66 all_dirs.extend(dirs)
71 for root, dirs, files in file_system.Walk('', depth=1):
72 all_dirs.extend(dirs)
79 for root, dirs, files in file_system.Walk('', depth=2):
80 all_dirs.extend(dirs)
97 for root, dirs, files in file_system.Walk('templates/public/'):
H A Dfile_system.py174 (base, dirs, files) recursively, where |base| is the base path of |files|,
175 |dirs| relative to |root|, and |files| and |dirs| the list of files/dirs in
183 which returns a tuple (dirs, files), where |dirs| is a list of directory
202 dirs, files = file_lister(root)
204 dirs, files = [], []
207 dirs.append(f)
211 yield root[len(basepath):].rstrip('/'), dirs, file
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Dchrome_paths.py26 dirs = ['out', 'build', 'xcodebuild']
27 rel_dirs = [os.path.join(x, 'Release') for x in dirs]
28 debug_dirs = [os.path.join(x, 'Debug') for x in dirs]
/external/skia/tools/pyutils/
H A Dgs_utils.py48 """ Returns files in the Google Cloud Storage bucket as a (dirs, files) tuple.
72 dirs = []
75 dirs.append(dir_basename[:-1]) # strip trailing slash
81 return (dirs, files)
/external/chromium_org/v8/test/intl/
H A Dtestcfg.py41 for dirname, dirs, files in os.walk(self.root):
42 for dotted in [x for x in dirs if x.startswith('.')]:
43 dirs.remove(dotted)
44 dirs.sort()
/external/e2fsprogs/lib/ss/
H A Dhelp.c132 register char **dirs; local
144 dirs = info->info_dirs;
145 for (n_dirs = 0; dirs[n_dirs] != (char *)NULL; n_dirs++)
147 dirs = (char **)realloc((char *)dirs,
149 if (dirs == (char **)NULL) {
154 info->info_dirs = dirs;
155 dirs[n_dirs + 1] = (char *)NULL;
156 dirs[n_dirs] = malloc((unsigned)strlen(info_dir)+1);
157 strcpy(dirs[n_dir
[all...]
/external/lldb/source/Plugins/
H A DAndroid.mk5 dirs := \ macro
31 dirs += \
42 dirs += \
51 dirs += \
58 subdirs := $(addprefix $(LOCAL_PATH)/,$(addsuffix /Android.mk, $(dirs)))
/external/chromium_org/tools/gyp/test/standalone/
H A Dgyptest-standalone.py21 for root, dirs, files in os.walk("."):
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DDebuggingClassWriter.java78 String dirs = className.replace('.', File.separatorChar);
80 new File(debugLocation + File.separatorChar + dirs).getParentFile().mkdirs();
82 File file = new File(new File(debugLocation), dirs + ".class");
91 file = new File(new File(debugLocation), dirs + ".asm");
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dby_dir.c84 STACK_OF(BY_DIR_ENTRY) *dirs;
159 a->dirs=NULL;
193 if (a->dirs != NULL)
194 sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free);
222 for (j=0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++)
224 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
229 if (j < sk_BY_DIR_ENTRY_num(ctx->dirs))
231 if (ctx->dirs == NULL)
233 ctx->dirs = sk_BY_DIR_ENTRY_new_null();
234 if (!ctx->dirs)
[all...]
/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/chromium_org/v8/test/mozilla/
H A Dtestcfg.py74 for dirname, dirs, files in os.walk(current_root):
75 for dotted in [x for x in dirs if x.startswith(".")]:
76 dirs.remove(dotted)
78 if excluded in dirs:
79 dirs.remove(excluded)
80 dirs.sort()
/external/chromium_org/v8/test/test262/
H A Dtestcfg.py60 for dirname, dirs, files in os.walk(self.testroot):
61 for dotted in [x for x in dirs if x.startswith(".")]:
62 dirs.remove(dotted)
63 if context.noi18n and "intl402" in dirs:
64 dirs.remove("intl402")
65 dirs.sort()
/external/chromium_org/v8/test/webkit/
H A Dtestcfg.py48 for dirname, dirs, files in os.walk(self.root):
49 for dotted in [x for x in dirs if x.startswith('.')]:
50 dirs.remove(dotted)
51 if 'resources' in dirs:
52 dirs.remove('resources')
54 dirs.sort()
/external/chromium_org/v8/test/mjsunit/
H A Dtestcfg.py46 for dirname, dirs, files in os.walk(self.root):
47 for dotted in [x for x in dirs if x.startswith('.')]:
48 dirs.remove(dotted)
49 dirs.sort()
/external/nanopb-c/tests/site_scons/
H A Dsite_init.py49 dirs = ' '.join(['-I' + esc(env.GetBuildPath(d)) for d in env['PROTOCPATH']])
51 dirs, env['MESSAGE'], esc(str(source[1])), esc(str(source[0])), esc(str(target[0])))
60 dirs = ' '.join(['-I' + esc(env.GetBuildPath(d)) for d in env['PROTOCPATH']])
62 dirs, env['MESSAGE'], esc(str(source[1])), esc(str(source[0])), esc(str(target[0])))
/external/chromium_org/build/android/
H A DPRESUBMIT.py34 def J(*dirs):
36 return input_api.os_path.join(input_api.PresubmitLocalPath(), *dirs)
/external/chromium_org/tools/
H A Dlicenses.py328 for _, dirs, files in os.walk(os.path.join(root, path)):
332 if vcs_metadata in dirs:
333 dirs.remove(vcs_metadata)
346 for path, dirs, files in os.walk(root):
350 dirs[:] = []
357 if skip in dirs:
358 dirs.remove(skip)
362 for dir in dirs:
368 dirs[:] = []
374 dirs[
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DAntJarProcessor.java34 private Set<String> dirs = new HashSet<String>(); field in class:AntJarProcessor
85 if (dirs.add(dir)) {
105 dirs.clear();
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem_mock.py42 def __init__(self, files=None, dirs=None, cwd='/'):
56 self.dirs = set(dirs or [])
57 self.dirs.add(cwd)
60 while not d in self.dirs:
61 self.dirs.add(d)
170 return filter(path_filter, existing_files) + filter(path_filter, self.dirs)
179 return self.normpath(path) in self.dirs
204 root, dirs, files = list(self.walk(path))[0]
205 return dirs
[all...]

Completed in 1487 milliseconds

1234567