HomeSort by relevance Sort by last modified time
    Searched full:recursive (Results 51 - 75 of 1418) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Python/tests/
t022scopes.g 61 /* recursive rule scopes, from the book, final beta, p.150 */
90 /* recursive rule scopes, access bottom-most scope */
104 /* recursive rule scopes, access with negative index */
  /external/hyphenation/
README.compound 17 Recursive compound level hyphenation
19 The algorithm is recursive: every word parts of a successful
54 doesn't know recursive compound hyphenation of Hyphen.
  /external/valgrind/main/drd/tests/
recursive_mutex.stderr.exp-linux 2 Recursive mutex (statically initialized).
4 Recursive mutex (initialized via mutex attributes).
18 Non-recursive mutex.
recursive_mutex.c 31 fprintf(stderr, "Recursive mutex (statically initialized).\n");
68 fprintf(stderr, "\nNon-recursive mutex.\n");
  /external/clang/test/SemaTemplate/
instantiation-depth-exception-spec.cpp 6 // expected-error {{recursive template instantiation exceeded maximum depth of 16}}
instantiation-depth-defarg.cpp 6 // expected-error{{recursive template instantiation exceeded maximum depth of 128}} \
9 // expected-note {{use -ftemplate-depth=N to increase recursive template instantiation depth}}
  /external/llvm/test/Transforms/InstCombine/
2006-12-05-fp-to-int-ext.ll 5 ; and it causes libgcc to be compile __fixunsdfdi into a recursive
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_UnlockSurface.3 13 It should be noted that since 1\&.1\&.8, surface locks are recursive\&. See \fI\fBSDL_LockSurface\fP\fR\&.
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
LIST 12 controlflow-recursive
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
LIST 12 controlflow-recursive
  /ndk/sources/host-tools/make-3.81/
Makefile.DOS 281 all-recursive:
299 mostlyclean-recursive clean-recursive distclean-recursive \
300 maintainer-clean-recursive check-recursive:
302 @echo Making $(shell echo $@ | sed s/-recursive//) in $(SUBDIRS)
303 $(MAKE) -C $(SUBDIRS) -f ../Makefile $(shell echo $@ | sed s/-recursive//)-am
312 tags-recursive:
325 TAGS: tags-recursive $(HEADERS) $(srcdir)/$(SOURCES) config.h $(TAGS_DEPENDENCIES
    [all...]
  /external/icu4c/
Makefile.in 70 .PHONY : all all-local all-recursive install install-local install-udata install-udata-files install-udata-dlls \
71 install-recursive clean clean-local clean-recursive distclean \
72 distclean-local distclean-recursive doc dist dist-local dist-recursive \
73 check check-local check-recursive clean-recursive-with-twist install-icu \
74 doc install-doc tests icu4j-data icu4j-data-install update-windows-makefiles xcheck-local xcheck-recursive xperf xcheck xperf-recursive \
75 check-exhaustive check-exhaustive-local check-exhaustive-recursive releaseDis
    [all...]
  /external/clang/test/CodeGen/
2002-07-14-MiscListTests.c 15 // Recursive data structure tests...
49 // Recursive list search fn
  /external/eigen/bench/
bench_unrolling 3 # 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
  /libcore/luni/src/main/java/java/lang/
StackOverflowError.java 23 * when a program becomes infinitely recursive, but it can also occur in
24 * correctly written (but deeply recursive) programs.
  /external/libcap-ng/libcap-ng-0.7/bindings/python/
Makefile.in 101 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
102 html-recursive info-recursive install-data-recursive \
103 install-dvi-recursive install-exec-recursive \
104 install-html-recursive install-info-recursive \
    [all...]
  /external/protobuf/
Makefile.in 61 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
62 html-recursive info-recursive install-data-recursive \
63 install-dvi-recursive install-exec-recursive \
64 install-html-recursive install-info-recursive \
    [all...]
  /external/valgrind/main/cachegrind/tests/
Makefile.in 94 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
95 html-recursive info-recursive install-data-recursive \
96 install-dvi-recursive install-exec-recursive \
97 install-html-recursive install-info-recursive \
    [all...]
  /external/valgrind/main/callgrind/tests/
Makefile.in 87 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
88 html-recursive info-recursive install-data-recursive \
89 install-dvi-recursive install-exec-recursive \
90 install-html-recursive install-info-recursive \
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_sysmutex.c 36 int recursive; member in struct:SDL_mutex
93 ++mutex->recursive;
101 mutex->recursive = 0;
129 if ( mutex->recursive ) {
130 --mutex->recursive;
  /external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
SDL_sysmutex.c 37 int recursive; member in struct:SDL_mutex
92 ++mutex->recursive;
100 mutex->recursive = 0;
128 if ( mutex->recursive ) {
129 --mutex->recursive;
  /external/chromium/third_party/libevent/
Makefile.in 112 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
113 html-recursive info-recursive install-data-recursive \
114 install-dvi-recursive install-exec-recursive \
115 install-html-recursive install-info-recursive \
    [all...]
  /external/libvorbis/lib/
Makefile.in 118 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
119 html-recursive info-recursive install-data-recursive \
120 install-dvi-recursive install-exec-recursive \
121 install-html-recursive install-info-recursive \
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/
Makefile.in 96 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
97 html-recursive info-recursive install-data-recursive \
98 install-dvi-recursive install-exec-recursive \
99 install-html-recursive install-info-recursive \
    [all...]
  /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);
91 bool recursive; member in class:llvm::sys::SmartMutex
94 MutexImpl(rec), acquired(0), recursive(rec) { }
103 assert((recursive || acquired == 0) && "Lock already acquired!!");
116 assert(((recursive && acquired) || (acquired == 1)) &&

Completed in 2959 milliseconds

1 23 4 5 6 7 8 91011>>