Searched refs:recursive (Results 1 - 25 of 203) sorted by relevance

123456789

/external/icu/icu4c/source/tools/
H A DMakefile.in21 .PHONY : all all-local all-recursive install install-local \
22 install-recursive clean clean-local clean-recursive distclean \
23 distclean-local distclean-recursive dist dist-local dist-recursive \
24 check check-local check-recursive build-local check-exhaustive
30 all: all-recursive
31 install: install-recursive
32 clean: clean-local clean-recursive
33 distclean : distclean-recursive
[all...]
/external/valgrind/memcheck/tests/
H A Drecursive-merge.stderr.exp3 by 0x........: stacktrace (recursive-merge.c:17)
4 by 0x........: f_a (recursive-merge.c:25)
5 by 0x........: doit (recursive-merge.c:43)
6 by 0x........: main (recursive-merge.c:56)
9 by 0x........: stacktrace (recursive-merge.c:17)
10 by 0x........: f_a (recursive-merge.c:25)
11 by 0x........: doit (recursive-merge.c:43)
12 by 0x........: main (recursive-merge.c:56)
15 by 0x........: stacktrace (recursive-merge.c:17)
16 by 0x........: f_a (recursive
[all...]
/external/icu/icu4c/source/samples/
H A DMakefile.in26 .PHONY : all all-local all-recursive install install-local \
27 install-recursive clean clean-local clean-recursive distclean \
28 distclean-local distclean-recursive dist dist-recursive dist-local \
29 check check-recursive check-local check-exhaustive
35 all: all-recursive all-local
36 install: install-recursive install-local
37 clean: clean-recursive clean-local
38 distclean : distclean-recursive distclea
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/timeline/
H A Devent_container.py52 recursive=True,
66 if not recursive:
89 def IterAllEventsOfName(self, name, recursive=True):
91 recursive=recursive,
95 def IterAllSlices(self, recursive=True):
97 recursive=recursive,
100 def IterAllSlicesInRange(self, start, end, recursive=True):
102 recursive
[all...]
/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/icu/icu4c/source/test/
H A DMakefile.in33 .PHONY : everything all all-local all-recursive install install-local \
34 install-recursive clean clean-local clean-recursive distclean \
35 distclean-local distclean-recursive dist dist-recursive dist-local \
36 check check-recursive check-local xcheck xcheck-recursive xcheck-local \
37 check-exhaustive check-exhaustive-recursive
43 everything: all-recursive all-local
49 install: install-recursive instal
[all...]
/external/icu/icu4c/source/test/perf/
H A DMakefile.in27 .PHONY : everything all all-local all-recursive install install-local \
28 install-recursive clean clean-local clean-recursive distclean \
29 distclean-local distclean-recursive dist dist-recursive dist-local \
30 check check-recursive check-local xperf xperf-recursive
36 everything: all-recursive all-local
42 install: install-recursive install-local
43 clean: clean-recursive clea
[all...]
/external/libchrome/base/files/
H A Dfile_path_watcher_mac.cc20 bool recursive,
22 // Use kqueue for non-recursive watches and FSEvents for recursive ones.
24 if (recursive) {
34 return impl_->Watch(path, recursive, callback);
H A Dfile_path_watcher.cc51 bool recursive,
54 return impl_->Watch(path, recursive, callback);
50 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
H A Dfile_enumerator.h90 // If |recursive| is true, this will enumerate all matches in any
105 // recursive subdirectories.
108 bool recursive,
111 bool recursive,
H A Dfile_path_watcher.h42 bool recursive,
91 // Returns true if the platform and OS version support recursive watches.
95 // called at most once, and from a MessageLoop of TYPE_IO. Set |recursive| to
101 bool Watch(const FilePath& path, bool recursive, const Callback& callback);
/external/dbus/dbus/
H A Ddbus-marshal-byteswap.h28 #include <dbus/dbus-marshal-recursive.h>
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
H A DHumanGen.java16 package org.yaml.snakeyaml.recursive.generics;
H A DHumanGen3.java16 package org.yaml.snakeyaml.recursive.generics;
H A DHumanGen2.java16 package org.yaml.snakeyaml.recursive.generics;
/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/libweave/src/notification/
H A Dxml_node.cc49 bool recursive) const {
50 return FindChildHelper(name_path, recursive, nullptr);
54 bool recursive) const {
56 FindChildHelper(name_path, recursive, &children);
62 bool recursive,
75 } else if (recursive) {
60 FindChildHelper( const std::string& name_path, bool recursive, std::vector<const XmlNode*>* children) const argument
H A Dxml_node.h48 // path is a "/"-separated list of node names to look for. If |recursive| is
55 bool recursive) const;
58 // of pointers to the child nodes matching the criteria. If |recursive| is
77 bool recursive) const;
108 bool recursive,
/external/libcap/progs/
H A Dgetcap.c22 static int recursive = 0; variable
80 recursive = 1;
98 } else if (recursive) {
/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/selinux/libselinux/src/
H A Dselinuxswig_python.i17 def restorecon(path, recursive=False):
38 if recursive:
43 def chcon(path, context, recursive=False):
46 if recursive:
54 restorecon(dest, recursive=True)
59 restorecon(dest, recursive=True)
/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/testng/src/main/java/org/testng/internal/
H A DPackageUtils.java51 boolean recursive = false;
54 recursive = true;
89 if(!matchTestClasspath(url, packageDirName, recursive)) {
96 recursive,
114 if (recursive || packageName.equals(packageOnly)) {
136 URLDecoder.decode(fileUrl.getFile(), "UTF-8"), recursive, vResult);
180 private static boolean matchTestClasspath(URL url, String lastFragment, boolean recursive) { argument
202 || (recursive && fileName.charAt(idx + path.length()) == '/')) {
214 final boolean recursive,
225 return (recursive
210 findClassesInDirPackage(String packageName, List<String> included, List<String> excluded, String packagePath, final boolean recursive, List<String> classes) argument
[all...]
/external/eigen/bench/
H A Dbench_unrolling3 # gcc : CXX="g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000"
5 CXX=${CXX-g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000} # default value

Completed in 4117 milliseconds

123456789