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

1 2

  /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...]
scope-check.cpp 182 bool recurse() { function in namespace:PR10462
188 if (recurse()) {
  /external/v8/test/mjsunit/regress/
regress-119429.js 31 function recurse() { function
35 recurse();
37 assertThrows(function() { recurse();} );
  /external/valgrind/main/none/tests/amd64/
bug156404-amd64.c 35 long recurse ( const char* path, long count ) function
40 long r = recurse(path, count-1);
50 r = recurse( "/proc/self", i );
  /external/elfutils/libdw/
libdw_visit_scopes.c 112 inline int recurse (void) function
137 int result = recurse ();
147 Recurse to search the referenced unit, but without
156 int result = recurse ();
  /external/webkit/Tools/DumpRenderTree/android/
get_layout_tests_dir_contents.php 21 # get_layout_tests_dir_contents.php?path=PATH&recurse=RECURSE&separator=SEPARATOR&mode=MODE
24 # RECURSE = [true|false] (defaults to true)
45 function getAllFilesUnderAsArray($relPath, $recurse, $mode) {
63 if ($recurse) {
64 $result = array_merge($result, getAllFilesUnderAsArray($filePath, $recurse, $mode));
83 $recurse = (strtolower($_GET['recurse']) != 'false'); variable
106 foreach (getAllFilesUnderAsArray($relPath, $recurse, $mode) as $i => $value) {
  /system/core/toolbox/
restorecon.c 60 int ch, recurse = 0, ftsflags = FTS_PHYSICAL; local
77 recurse = 1;
99 if (recurse) {
  /external/doclava/src/com/google/doclava/
Hierarchy.java 62 recurse(nodes, "java.lang.Object", hdf.getChild("classes.0"), depth, depth); method
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); method
  /system/core/libcutils/
dir_hash.c 129 static int recurse(HashAlgorithm algorithm, const char *directory_path, function
236 if (recurse(algorithm, name, out) < 0) {
276 if (recurse(algorithm, directory_path, &out) < 0) {
  /build/tools/releasetools/
ota_from_target_files 236 def recurse(item, current): function in function:Item.SetPermissions
251 recurse(i, current)
257 recurse(self, (-1, -1, -1, -1))
  /external/llvm/utils/llvm-build/llvmbuild/
main.py 67 def recurse(subpath): function in function:LLVMProjectInfo.load_infos_from_path
80 # Recurse into the specified subdirectories.
82 for item in recurse(os.path.join(subpath, subdir)):
85 return recurse("/")
    [all...]
  /external/v8/test/mjsunit/
strict-mode.js 1161 function recurse(n, then) { function
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 371 recurse(0);
377 private void recurse(int level) { method in class:AbstractIteratorTester
387 recurse(level + 1);
  /external/dbus/dbus/
dbus-marshal-recursive.c 118 void (* recurse) (DBusTypeReader *sub, member in struct:DBusTypeReaderClass
119 DBusTypeReader *parent); /**< recurse with this reader as sub */
441 /* Recurse into the struct or variant */
572 /* Recurse into the struct or variant */
969 * have an empty array of array of int, you can't recurse into it. You
970 * can only recurse into each element.
1005 _dbus_assert_not_reached ("can't recurse into variant typecode");
1013 _dbus_warn_check_failed ("You can't recurse into an empty array or off the end of a message body\n");
1021 (* sub->klass->recurse) (sub, reader);
1099 * inside an empty array; say you recurse into empty array of int32
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 174 void recurse();
329 // Called from Filter::recurse() when singleton exists. For debug purpose.
453 void Filter::recurse() { function in class:Filter
478 // No need to recurse for a singleton filtered instruction.
533 // See also recurse().
671 // Called from Filter::recurse() when singleton exists. For debug purpose.
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
cplus-dem.c 3010 char * recurse = (char *)NULL; local
3973 char * recurse; local
    [all...]
  /external/libxml2/include/libxml/
schemasInternals.h 623 int recurse; /* Obsolete */ member in struct:_xmlSchemaType
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /external/dexmaker/lib/
jarjar.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-junit.jar 
ant-nodeps.jar 
  /prebuilt/common/jarjar/
jarjar-1.0rc8.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 

Completed in 3729 milliseconds

1 2