Searched defs:recursive (Results 1 - 25 of 80) sorted by relevance

1234

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
H A DHumanGen.java16 package org.yaml.snakeyaml.recursive.generics;
H A DHumanGen2.java16 package org.yaml.snakeyaml.recursive.generics;
H A DHumanGen3.java16 package org.yaml.snakeyaml.recursive.generics;
H A DHumanGenericsTest.java16 package org.yaml.snakeyaml.recursive.generics;
60 String etalon = Util.getLocalResource("recursive/generics/no-children-1.yaml");
94 String etalon = Util.getLocalResource("recursive/generics/no-children-2.yaml");
155 String etalon = Util.getLocalResource("recursive/generics/with-children.yaml");
224 String etalon = Util.getLocalResource("recursive/generics/with-children-2.yaml");
297 String etalon = Util.getLocalResource("recursive/generics/with-children-3.yaml");
331 String etalon = Util.getLocalResource("recursive/generics/with-children-as-set.yaml");
369 String etalon = Util.getLocalResource("recursive/generics/with-children-as-map.yaml");
448 String etalon = Util.getLocalResource("recursive/generics/with-children-as-list.yaml");
489 String etalon = Util.getLocalResource("recursive/generic
[all...]
/external/llvm/lib/Support/
H A DMutex.cpp26 MutexImpl::MutexImpl( bool recursive) { } argument
44 MutexImpl::MutexImpl( bool recursive)
56 // Initialize the mutex as a recursive mutex, if requested, or normal
58 int kind = ( recursive ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL );
/external/swiftshader/third_party/LLVM/lib/Support/
H A DMutex.cpp26 MutexImpl::MutexImpl( bool recursive) { } argument
58 MutexImpl::MutexImpl( bool recursive)
72 // Initialize the mutex as a recursive mutex, if requested, or normal
74 int kind = ( recursive ? PTHREAD_MUTEX_RECURSIVE : PTHREAD_MUTEX_NORMAL );
/external/clang/test/Analysis/inlining/
H A Dtest-always-inline-size-option.c29 // Make sure we terminate a recursive path.
30 int recursive() { function
31 return recursive();
34 return recursive();
/external/libcap/progs/
H A Dgetcap.c22 static int recursive = 0; variable
80 recursive = 1;
98 } else if (recursive) {
/external/libchrome/base/files/
H A Dfile_path_watcher.cc45 bool recursive,
48 return impl_->Watch(path, recursive, callback);
44 Watch(const FilePath& path, bool recursive, const Callback& callback) argument
H A Dfile_enumerator_posix.cc43 bool recursive,
47 recursive_(recursive),
49 // INCLUDE_DOT_DOT must not be specified if recursive.
50 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
55 bool recursive,
60 recursive_(recursive),
63 // INCLUDE_DOT_DOT must not be specified if recursive.
64 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
42 FileEnumerator(const FilePath& root_path, bool recursive, int file_type) argument
54 FileEnumerator(const FilePath& root_path, bool recursive, int file_type, const FilePath::StringType& pattern) argument
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DContainerBox.java53 * @param recursive step down the tree
56 <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive); argument
/external/llvm/include/llvm/Support/
H A DMutex.h32 /// Initializes the lock but doesn't acquire it. if \p recursive is set
33 /// to false, the lock will not be recursive which makes it cheaper but
37 explicit MutexImpl(bool recursive = true);
94 bool recursive; member in class:llvm::sys::SmartMutex
97 impl(rec), acquired(0), recursive(rec) { }
106 assert((recursive || acquired == 0) && "Lock already acquired!!");
119 assert(((recursive && acquired) || (acquired == 1)) &&
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
H A DAbstractHuman.java16 package org.yaml.snakeyaml.recursive;
H A DHuman.java16 package org.yaml.snakeyaml.recursive;
H A DHuman2.java16 package org.yaml.snakeyaml.recursive;
H A DHuman3.java16 package org.yaml.snakeyaml.recursive;
H A DHumanTest.java16 package org.yaml.snakeyaml.recursive;
54 String etalon = Util.getLocalResource("recursive/no-children-1.yaml");
83 String etalon = Util.getLocalResource("recursive/no-children-1-pretty.yaml");
134 String etalon = Util.getLocalResource("recursive/with-children.yaml");
207 String etalon = Util.getLocalResource("recursive/with-children-pretty.yaml");
283 String etalon = Util.getLocalResource("recursive/with-children-2.yaml");
350 String etalon = Util.getLocalResource("recursive/with-children-3.yaml");
380 String etalon = Util.getLocalResource("recursive/with-children-as-set.yaml");
417 String etalon = Util.getLocalResource("recursive/with-children-as-map.yaml");
495 String etalon = Util.getLocalResource("recursive/wit
[all...]
H A DHuman_WithArrayOfChildrenTest.java16 package org.yaml.snakeyaml.recursive;
155 String etalon = Util.getLocalResource("recursive/with-childrenArray.yaml");
167 String etalon = Util.getLocalResource("recursive/with-childrenArray-no-root-tag.yaml");
179 String doc = Util.getLocalResource("recursive/with-childrenArray-no-root-tag.yaml");
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMutex.h31 /// Initializes the lock but doesn't acquire it. if \p recursive is set
32 /// to false, the lock will not be recursive which makes it cheaper but
36 explicit MutexImpl(bool recursive = true);
90 bool recursive; member in class:llvm::sys::SmartMutex
93 MutexImpl(rec), acquired(0), recursive(rec) { }
102 assert((recursive || acquired == 0) && "Lock already acquired!!");
115 assert(((recursive && acquired) || (acquired == 1)) &&
/external/libchrome/sandbox/linux/syscall_broker/
H A Dbroker_file_permission.cc211 bool recursive,
217 recursive_(recursive),
210 BrokerFilePermission(const std::string& path, bool recursive, bool unlink, bool allow_read, bool allow_write, bool allow_create) argument
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAbstractAppleMetaDataBox.java41 public <T extends Box> List<T> getBoxes(Class<T> clazz, boolean recursive) { argument
42 //todo recursive?
/external/proguard/src/proguard/optimize/
H A DTailRecursionSimplifier.java153 // Is it a recursive call?
174 // Isn't the recursive call inside a try/catch block?
235 * invocation can be treated as tail-recursive.
242 private boolean recursive; field in class:TailRecursionSimplifier.MyRecursionChecker
247 * tail-recursive.
251 return recursive;
258 recursive = targetMethod.equals(methodrefConstant.referencedMember);
266 recursive = false;
/external/e2fsprogs/misc/
H A Dlsattr.c60 static int recursive; variable
157 if (S_ISDIR(st.st_mode) && recursive &&
189 recursive = 1;
/external/libnl/src/
H A Dnl-qdisc-list.c22 static int recursive = 0; variable
35 " -r, --recursive Show recursive tree\n"
150 { "recursive", 0, 0, 'r' },
167 case 'r': recursive = 1; break;
177 if (recursive)
/external/llvm/lib/Transforms/IPO/
H A DPartialInlining.cpp169 bool recursive = false; local
173 recursive = true;
176 if (recursive) continue;

Completed in 610 milliseconds

1234