HomeSort by relevance Sort by last modified time
    Searched refs:recurse (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/SemaCXX/
constexpr-backtrace-limit.cpp 4 // 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(1)
33 constexpr int recurse(int n) { return n ? recurse(n-1) : *(int*)n; } function
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
IBinderThreadPriorityService.aidl 22 void callBack(IBinderThreadPriorityService recurse);
23 void setPriorityAndCallBack(int priority, IBinderThreadPriorityService recurse);
BinderThreadPriorityService.java 41 public void callBack(IBinderThreadPriorityService recurse) {
43 recurse.callBack(this);
49 public void setPriorityAndCallBack(int priority, IBinderThreadPriorityService recurse) {
52 recurse.callBack(this);
  /external/compiler-rt/test/asan/TestCases/Linux/
stack-overflow-recovery-mode.cc 11 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);
  /prebuilts/go/darwin-x86/test/uintptrescapes.dir/
a.go 11 func recurse(i int, s []byte) byte { func
17 r := recurse(i-1, a[:])
25 recurse(4096, s[:])
32 recurse(4096, s[:])
45 recurse(4096, s[:])
52 recurse(4096, s[:])
  /prebuilts/go/linux-x86/test/uintptrescapes.dir/
a.go 11 func recurse(i int, s []byte) byte { func
17 r := recurse(i-1, a[:])
25 recurse(4096, s[:])
32 recurse(4096, s[:])
45 recurse(4096, s[:])
52 recurse(4096, s[:])
  /external/valgrind/none/tests/amd64/
bug156404-amd64.c 60 long recurse ( const char* path, long count ) function
65 long r = recurse(path, count-1);
75 r = recurse( "/proc/self", i );
  /external/deqp/framework/delibs/decpp/
deMemPool.hpp 48 deUintptr getNumAllocatedBytes (bool recurse) const { return deMemPool_getNumAllocatedBytes(m_pool, recurse ? DE_TRUE : DE_FALSE); }
49 deUintptr getCapacity (bool recurse) const { return deMemPool_getCapacity(m_pool, recurse ? DE_TRUE : DE_FALSE); }
  /external/antlr/antlr-3.4/runtime/Perl5/
Makefile.PL 8 ctags -f tags --recurse --totals \
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
URLHandler.java 170 public void guide(URLVisitor v, boolean recurse, boolean strip) {
172 process(v, recurse, strip, "/", file.listFiles());
178 private void process(URLVisitor v, boolean recurse, boolean strip, String path, File[] files) {
184 if (recurse) {
185 process(v, recurse, strip, path + f.getName()+ '/', f.listFiles());
230 public void guide(URLVisitor v, boolean recurse, boolean strip) {
243 if (ix > 0 && !recurse) {
260 public void guide(URLVisitor visitor, boolean recurse)
262 guide(visitor, recurse, true);
265 public abstract void guide(URLVisitor visitor, boolean recurse, boolean strip)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
URLHandler.java 166 public void guide(URLVisitor v, boolean recurse, boolean strip) {
168 process(v, recurse, strip, "/", file.listFiles());
174 private void process(URLVisitor v, boolean recurse, boolean strip, String path, File[] files) {
180 if (recurse) {
181 process(v, recurse, strip, path + f.getName()+ '/', f.listFiles());
226 public void guide(URLVisitor v, boolean recurse, boolean strip) {
239 if (ix > 0 && !recurse) {
256 public void guide(URLVisitor visitor, boolean recurse)
258 guide(visitor, recurse, true);
261 public abstract void guide(URLVisitor visitor, boolean recurse, boolean strip)
    [all...]
  /external/owasp/sanitizer/tools/
update_tree_in_svn.py 65 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/libchrome/base/test/
test_file_util.h 36 bool DieFileDie(const FilePath& file, bool recurse);
  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
strptime.c 137 goto recurse;
142 goto recurse;
147 goto recurse;
152 goto recurse;
157 goto recurse;
162 goto recurse;
166 goto recurse;
170 recurse:
  /external/deqp/framework/delibs/depool/
deMemPool.h 69 int deMemPool_getNumAllocatedBytes (const deMemPool* pool, deBool recurse);
70 int deMemPool_getCapacity (const deMemPool* pool, deBool recurse);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9432.go 7 // gc used to recurse infinitely when dowidth is applied
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9432.go 7 // gc used to recurse infinitely when dowidth is applied
  /external/clang/test/SemaTemplate/
instantiate-exception-spec-cxx11.cpp 29 static void recurse() noexcept(noexcept(S<N+1>::recurse())); // \
30 // expected-error {{no member named 'recurse'}} \
33 decltype(S<0>::recurse()) *pVoid1 = 0; // ok, exception spec not needed
34 decltype(&S<0>::recurse) pFn = 0; // ok, exception spec not needed
37 void (*pFn2)() noexcept = &S<0>::recurse; // expected-note {{instantiation of exception spec}} expected-error {{not superset}}
  /art/runtime/gc/space/
image_space_fs.h 42 // Delete the directory and its (regular or link) contents. If the recurse flag is true, delete
44 static void DeleteDirectoryContents(const std::string& dir, bool recurse) {
63 if (recurse) {
64 DeleteDirectoryContents(file, recurse);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
test_recursion.py 48 recurse = False variable in class:TestRecursion.test_defaultrecursion.RecursiveJSONEncoder
51 if self.recurse:
59 enc.recurse = True
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_recursion.py 48 recurse = False variable in class:TestRecursion.test_defaultrecursion.RecursiveJSONEncoder
51 if self.recurse:
59 enc.recurse = True
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
LeftRecursiveRuleWalker.g 185 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel op=token recurse EOA ) {setTokenPrec($op.t, outerAlt);}
189 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel ^( BLOCK ( ^( ALT op=token EOA {setTokenPrec($op.t, outerAlt);} ) )+ EOB ) recurse EOA )
193 : ^( ALT (^(BACKTRACK_SEMPRED .*))? recurseNoLabel op=token recurse token recurse EOA ) {setTokenPrec($op.t, outerAlt);}
196 prefix : ^( ALT (^(BACKTRACK_SEMPRED .*))? {setTokenPrec((GrammarAST)input.LT(1), outerAlt);} ({!((CommonTree)input.LT(1)).getText().equals(ruleName)}? element)+ recurse EOA ) ;
200 recurse
  /external/python/cpython2/Lib/json/tests/
test_recursion.py 48 recurse = False variable in class:TestRecursion.test_defaultrecursion.RecursiveJSONEncoder
51 if self.recurse:
59 enc.recurse = True
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_recursion.py 48 recurse = False variable in class:TestRecursion.test_defaultrecursion.RecursiveJSONEncoder
51 if self.recurse:
59 enc.recurse = True
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_recursion.py 48 recurse = False variable in class:TestRecursion.test_defaultrecursion.RecursiveJSONEncoder
51 if self.recurse:
59 enc.recurse = True

Completed in 1332 milliseconds

1 2 3 4 5 6 7 8 910