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

12345

/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/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/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/elfutils/src/tests/
H A Dget-files.c79 const char *const *dirs; local
81 if (dwarf_getsrcdirs (files, &dirs, &ndirs) != 0)
88 if (dirs[0] == NULL)
89 puts (" dirs[0] = (null)");
91 printf (" dirs[0] = \"%s\"\n", dirs[0]);
93 printf (" dirs[%zu] = \"%s\"\n", i, dirs[i]);
/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-trace/trace-viewer/tracing/third_party/tvcm/tvcm/
H A Dfake_fs.py123 dirs = set()
136 dirs.add(dirpart)
139 dirs.add(parts[0])
142 dirs = list(dirs)
143 dirs.sort()
144 yield prefix, dirs, files
/external/boringssl/src/crypto/x509/
H A Dby_dir.c88 STACK_OF(BY_DIR_ENTRY) *dirs;
163 a->dirs=NULL;
197 if (a->dirs != NULL)
198 sk_BY_DIR_ENTRY_pop_free(a->dirs, by_dir_entry_free);
226 for (j=0; j < sk_BY_DIR_ENTRY_num(ctx->dirs); j++)
228 ent = sk_BY_DIR_ENTRY_value(ctx->dirs, j);
233 if (j < sk_BY_DIR_ENTRY_num(ctx->dirs))
235 if (ctx->dirs == NULL)
237 ctx->dirs = sk_BY_DIR_ENTRY_new_null();
238 if (!ctx->dirs)
[all...]
/external/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/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/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/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/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/google-breakpad/src/common/dwarf/
H A Dfunctioninfo.h73 // This class is a basic line info handler that fills in the dirs,
81 std::vector<string>* dirs,
113 std::vector<string>* dirs,
120 : files_(files), dirs_(dirs), linemap_(linemap),
112 CUFunctionInfoHandler(std::vector<SourceFileInfo>* files, std::vector<string>* dirs, LineMap* linemap, FunctionMap* offset_to_funcinfo, FunctionMap* address_to_funcinfo, CULineInfoHandler* linehandler, const SectionMap& sections, ByteReader* reader) argument
H A Dfunctioninfo.cc50 std::vector<string>* dirs,
53 dirs_(dirs) {
54 // The dirs and files are 1 indexed, so just make sure we put
56 assert(dirs->size() == 0);
58 dirs->push_back("");
49 CULineInfoHandler(std::vector<SourceFileInfo>* files, std::vector<string>* dirs, LineMap* linemap) argument
/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-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/
H A Drun_tests.py106 for dirname, dirs, files in shell.walk(basedir):
107 dirs[:] = [
108 item for item in dirs if item not in ('.svn', '.git', 'out')
110 dirs.sort()
/external/v8/test/message/
H A Dtestcfg.py47 for dirname, dirs, files in os.walk(self.root):
48 for dotted in [x for x in dirs if x.startswith('.')]:
49 dirs.remove(dotted)
50 dirs.sort()
/external/selinux/libselinux/src/
H A Dselinuxswig_python.i34 for root, dirs, files in os.walk(path):
35 for name in files + dirs:
42 for root, dirs, files in os.walk(path):
43 for name in files + dirs:
/external/squashfs-tools/squashfs-tools/
H A Dunsquash-1.c233 dir->dirs = NULL;
292 new_dir = realloc(dir->dirs, (dir->dir_count +
297 dir->dirs = new_dir;
299 strcpy(dir->dirs[dir->dir_count].name, dire->name);
300 dir->dirs[dir->dir_count].start_block =
302 dir->dirs[dir->dir_count].offset = dire->offset;
303 dir->dirs[dir->dir_count].type = dire->type;
312 free(dir->dirs);
/external/compiler-rt/make/
H A Dlib_util.mk46 # Helper function to select the right set of dirs in generic priority order.
53 # Helper function to select the right set of dirs in optimized priority order.
60 # Helper function to select the right set of dirs (which should be exactly one)
/external/v8/test/test262-es6/
H A Dtestcfg.py65 for dirname, dirs, files in os.walk(self.testroot):
66 for dotted in [x for x in dirs if x.startswith(".")]:
67 dirs.remove(dotted)
68 if context.noi18n and "intl402" in dirs:
69 dirs.remove("intl402")
70 dirs.sort()
/external/chromium-trace/
H A Dsystrace.py79 parser.add_option('--agent-dirs', dest='agent_dirs', type='string',
82 '--agent-dirs=dir1,dir2,dir3. Directory |%s| is the default'
174 dirs = DEFAULT_AGENT_DIR
176 dirs += ',' + options.agent_dirs
178 % dirs)

Completed in 883 milliseconds

12345