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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/tools/
Makefile.in 23 .PHONY : all all-local all-recursive install install-local \
24 install-recursive clean clean-local clean-recursive distclean \
25 distclean-local distclean-recursive dist dist-local dist-recursive \
26 check check-local check-recursive build-local check-exhaustive
32 all: all-recursive
33 install: install-recursive
34 clean: clean-local clean-recursive
35 distclean : distclean-recursive
    [all...]
  /external/valgrind/memcheck/tests/
recursive-merge.stderr.exp 3 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-merge.c:25
    [all...]
  /external/icu/icu4c/source/samples/
Makefile.in 29 .PHONY : all all-local all-recursive install install-local \
30 install-recursive clean clean-local clean-recursive distclean \
31 distclean-local distclean-recursive dist dist-recursive dist-local \
32 check check-recursive check-local check-exhaustive
38 all: all-recursive all-local
39 install: install-recursive install-local
40 clean: clean-recursive clean-local
41 distclean : distclean-recursive distclean-loca
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
event_container.py 52 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=recursive
    [all...]
  /external/clang/test/Analysis/inlining/
test-always-inline-size-option.c 29 // Make sure we terminate a recursive path.
30 int recursive() { function
31 return recursive();
34 return recursive();
  /external/icu/icu4c/source/test/
Makefile.in 35 .PHONY : everything all all-local all-recursive install install-local \
36 install-recursive clean clean-local clean-recursive distclean \
37 distclean-local distclean-recursive dist dist-recursive dist-local \
38 check check-recursive check-local xcheck xcheck-recursive xcheck-local \
39 check-exhaustive check-exhaustive-recursive
45 everything: all-recursive all-local
47 ifneq ($(RECURSIVE),YES
    [all...]
  /external/icu/icu4c/source/test/perf/
Makefile.in 31 .PHONY : everything all all-local all-recursive install install-local \
32 install-recursive clean clean-local clean-recursive distclean \
33 distclean-local distclean-recursive dist dist-recursive dist-local \
34 check check-recursive check-local xperf xperf-recursive
40 everything: all-recursive all-local
42 ifneq ($(RECURSIVE),YES)
46 install: install-recursive install-loca
    [all...]
  /cts/hostsidetests/os/test-apps/StaticSharedLibProviderAppRecursive/src/android/os/lib/provider/recursive/
StaticSharedLibRecursive.java 17 package android.os.lib.provider.recursive;
24 android.os.lib.provider.recursive.R.integer.version);
  /frameworks/base/core/tests/overlaytests/
Android.mk 1 # Dummy makefile to halt recursive directory traversal.
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Mutex.h 31 /// 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/base/files/
file_path_watcher_mac.cc 20 bool recursive,
22 // Use kqueue for non-recursive watches and FSEvents for recursive ones.
24 if (recursive) {
34 return impl_->Watch(path, recursive, callback);
file_path_watcher.cc 45 bool recursive,
48 return impl_->Watch(path, recursive, callback);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
HumanGen.java 16 package org.yaml.snakeyaml.recursive.generics;
HumanGen3.java 16 package org.yaml.snakeyaml.recursive.generics;
HumanGen2.java 16 package org.yaml.snakeyaml.recursive.generics;
  /external/llvm/bindings/go/llvm/
string_test.go 23 s := ctx.StructCreateNamed("recursive")
25 if str := s.String(); str != "%recursive: StructType(%recursive, %recursive)" {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9432.go 8 // to a broken recursive type again.
12 type foo struct { // GCCGO_ERROR "invalid recursive type"
15 } // ERROR "invalid recursive type foo"
bug256.go 9 type T U // bogus "invalid recursive type T" from 6g
14 type V V // ERROR "invalid recursive type"
issue8507.go 8 // used to call algtype on invalid recursive type and get into infinite recursion
12 type T struct{ T } // ERROR "invalid recursive type T"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9432.go 8 // to a broken recursive type again.
12 type foo struct { // GCCGO_ERROR "invalid recursive type"
15 } // ERROR "invalid recursive type foo"
bug256.go 9 type T U // bogus "invalid recursive type T" from 6g
14 type V V // ERROR "invalid recursive type"
issue8507.go 8 // used to call algtype on invalid recursive type and get into infinite recursion
12 type T struct{ T } // ERROR "invalid recursive type T"
  /external/llvm/include/llvm/Support/
Mutex.h 32 /// 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)) &&
  /cts/hostsidetests/os/test-apps/StaticSharedLibProviderApp1/src/android/os/lib/provider/
StaticSharedLib.java 20 import android.os.lib.provider.recursive.StaticSharedLibRecursive;
  /prebuilts/go/darwin-x86/test/interface/
recursive.go 7 // Check mutually recursive interfaces
9 package recursive package

Completed in 622 milliseconds

1 2 3 4 5 6 7 8 91011>>