Searched defs:recurse (Results 1 - 25 of 66) sorted by relevance

123

/external/clang/test/SemaCXX/
H A Dconstexpr-backtrace-limit.cpp4 // TEST1-NEXT: in call to 'recurse(2)'
5 // TEST1-NEXT: in call to 'recurse(3)'
6 // TEST1-NEXT: in call to 'recurse(4)'
7 // TEST1-NEXT: in call to 'recurse(5)'
12 // TEST2-NEXT: in call to 'recurse(2)'
14 // TEST2-NEXT: in call to 'recurse(5)'
19 // TEST3-NEXT: in call to 'recurse(0)'
21 // TEST3-NEXT: in call to 'recurse(5)'
26 // TEST4-NEXT: in call to 'recurse(0)'
27 // TEST4-NEXT: in call to 'recurse(
33 constexpr int recurse(int n) { return n ? recurse(n-1) : *(int*)n; } function
[all...]
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dstack-overflow-recovery-mode.cc11 static volatile int *recurse(volatile int n, volatile int *p) { function
13 if (n >= 0) *recurse(n + 1, p) += n;
35 return *recurse(argc + 1, &res);
/external/valgrind/none/tests/amd64/
H A Dbug156404-amd64.c60 long recurse ( const char* path, long count ) function
65 long r = recurse(path, count-1);
75 r = recurse( "/proc/self", i );
/external/doclava/src/com/google/doclava/
H A DHierarchy.java62 recurse(nodes, "java.lang.Object", hdf.getChild("classes.0"), depth, depth);
94 private static void recurse(HashMap<String, TreeSet<String>> nodes, String name, Data hdf, method in class:Hierarchy
135 recurse(nodes, s, children.getChild(index), totalDepth, remainingDepth);
/external/python/cpython2/Lib/json/tests/
H A Dtest_recursion.py48 recurse = False variable in class:TestRecursion.test_defaultrecursion.RecursiveJSONEncoder
51 if self.recurse:
59 enc.recurse = True
/external/libchrome/base/test/
H A Dtest_file_util_posix.cc76 bool DieFileDie(const FilePath& file, bool recurse) { argument
79 return DeleteFile(file, recurse);
/external/python/cpython2/Tools/scripts/
H A Dcleanfuture.py47 recurse = 0 variable
59 global verbose, recurse, dryrun
69 recurse += 1
85 if ((recurse and os.path.isdir(fullname) and
H A Dreindent.py8 -r (--recurse) Recurse. Search for all .py files in subdirectories too.
50 recurse = 0 variable
68 global verbose, recurse, dryrun, makebackup
71 ["dryrun", "recurse", "nobackup", "verbose", "help"])
78 elif o in ('-r', '--recurse'):
79 recurse += 1
102 if ((recurse and os.path.isdir(fullname) and
/external/autotest/utils/
H A Dreindent.py8 -r (--recurse) Recurse. Search for all .py files in subdirectories too.
49 recurse = 0 variable
67 global verbose, recurse, dryrun, makebackup
70 ["dryrun", "recurse", "nobackup", "verbose", "help"])
77 elif o in ('-r', '--recurse'):
78 recurse += 1
101 if ((recurse and os.path.isdir(fullname) and
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DURLHandler.java170 public void guide(URLVisitor v, boolean recurse, boolean strip) { argument
172 process(v, recurse, strip, "/", file.listFiles());
178 private void process(URLVisitor v, boolean recurse, boolean strip, String path, File[] files) { argument
184 if (recurse) {
185 process(v, recurse, strip, path + f.getName()+ '/', f.listFiles());
230 public void guide(URLVisitor v, boolean recurse, boolean strip) { argument
243 if (ix > 0 && !recurse) {
260 public void guide(URLVisitor visitor, boolean recurse) argument
262 guide(visitor, recurse, true);
265 public abstract void guide(URLVisitor visitor, boolean recurse, boolea argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DURLHandler.java166 public void guide(URLVisitor v, boolean recurse, boolean strip) { argument
168 process(v, recurse, strip, "/", file.listFiles());
174 private void process(URLVisitor v, boolean recurse, boolean strip, String path, File[] files) { argument
180 if (recurse) {
181 process(v, recurse, strip, path + f.getName()+ '/', f.listFiles());
226 public void guide(URLVisitor v, boolean recurse, boolean strip) { argument
239 if (ix > 0 && !recurse) {
256 public void guide(URLVisitor visitor, boolean recurse) argument
258 guide(visitor, recurse, true);
261 public abstract void guide(URLVisitor visitor, boolean recurse, boolea argument
[all...]
/external/owasp/sanitizer/tools/
H A Dupdate_tree_in_svn.py65 def recurse(src, dst): function in function:sync
100 (NO_EXIST, DIR) : (recurse, remove, svn_delete,),
103 (FILE, DIR) : (recurse, remove, svn_delete, copy, svn_add, cnf),
104 (DIR, NO_EXIST): (mkdir, svn_add, recurse,),
105 (DIR, FILE) : (remove, svn_delete, mkdir, svn_add, recurse, cnf),
106 (DIR, DIR) : (recurse,),
109 # Walk the file tree (see recurse action above) and synchronize it at
/external/selinux/policycoreutils/setfiles/
H A Drestore.h29 unsigned int recurse; member in struct:restore_opts
H A Drestorecon_xattr.c38 unsigned int xattr_flags = 0, delete_digest = 0, recurse = 0; local
71 recurse = SELINUX_RESTORECON_XATTR_RECURSE;
164 ignore_mounts | recurse;
/external/selinux/restorecond/
H A Drestore.h35 unsigned int recurse; member in struct:restore_opts
/external/dtc/tests/
H A Ddtbs_equal_unordered.c154 int recurse)
172 if (recurse)
152 compare_subnodes(const void *fdt1, int offset1, const void *fdt2, int offset2, int recurse) argument
/external/e2fsprogs/e2fsck/
H A Dmessage.c244 int *first, int recurse)
253 if (*cpp && recurse < 10) {
259 print_e2fsck_message(f, ctx, str, pctx, *first, recurse+1);
525 int recurse)
536 recurse);
242 expand_at_expression(FILE *f, e2fsck_t ctx, char ch, struct problem_context *pctx, int *first, int recurse) argument
523 print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg, struct problem_context *pctx, int first, int recurse) argument
H A Dproblem.c2315 int recurse)
2313 print_e2fsck_message(FILE *f, e2fsck_t ctx, const char *msg, struct problem_context *pctx, int first, int recurse) argument
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCodeMangler.java39 private boolean recurse; // true if recurse on directories field in class:CodeMangler
120 recurse = true;
308 return (f.isFile() && name.endsWith(suffix)) || (f.isDirectory() && recurse);
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassPathIterator.java213 private static List<File> findFiles(File dir, FileFilter filter, boolean recurse, List<File> collect) { argument
215 if (recurse && file.isDirectory()) {
216 findFiles(file, filter, recurse, collect);
/external/skia/bench/
H A DAAClipBench.cpp119 void recurse(SkCanvas* canvas, function in class:NestedAAClipBench
144 this->recurse(canvas, depth+1, childOffset);
147 this->recurse(canvas, depth+1, childOffset);
151 this->recurse(canvas, depth+1, childOffset);
155 this->recurse(canvas, depth+1, childOffset);
165 this->recurse(canvas, 0, offset);
/external/e2fsprogs/util/
H A Dsymlinks.c38 static int verbose = 0, fix_links = 0, recurse = 0, delete = 0, shorten = 0, variable
297 } else if (recurse && S_ISDIR(st.st_mode)) {
315 "\t-r == recurse into subdirs\n"
366 else if (c == 'r') recurse = 1;
/external/llvm/utils/llvm-build/llvmbuild/
H A Dmain.py68 def recurse(subpath): function in function:LLVMProjectInfo.load_infos_from_path
83 for item in recurse(os.path.join(subpath, subdir)):
86 return recurse("/")
/external/python/cpython2/Demo/pdist/
H A Drcvs.py368 def recurse(self): member in class:rcvs
386 self.recurse()
415 self.recurse()
/external/deqp/framework/delibs/depool/
H A DdeMemPool.c386 * \param recurse Is operation recursive to child pools?
388 * if 'recurse' is true).
390 int deMemPool_getNumAllocatedBytes (const deMemPool* pool, deBool recurse) argument
398 if (recurse)
408 int deMemPool_getCapacity (const deMemPool* pool, deBool recurse) argument
416 if (recurse)

Completed in 1510 milliseconds

123