/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
README | 4 - infinite_recursion.py -- test file that causes lib2to3's faster recursive pattern matching
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
README | 4 - infinite_recursion.py -- test file that causes lib2to3's faster recursive pattern matching
|
/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/chromium_org/base/files/ |
file_enumerator_posix.cc | 41 bool recursive, 45 recursive_(recursive), 47 // INCLUDE_DOT_DOT must not be specified if recursive. 48 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_))); 53 bool recursive, 58 recursive_(recursive), 61 // INCLUDE_DOT_DOT must not be specified if recursive. 62 DCHECK(!(recursive && (INCLUDE_DOT_DOT & file_type_)));
|
/external/chromium_org/chrome/browser/extensions/api/bookmarks/ |
bookmark_api_constants.cc | 19 const char kRecursiveKey[] = "recursive"; 26 "Can't remove non-empty folder (use recursive to force).";
|
/external/chromium_org/third_party/sqlite/src/test/ |
tkt3731.test | 21 # The tests in this file were written before SQLite supported recursive 23 # recursive triggers for this file.
|
/external/clang/test/CodeGen/ |
2002-07-14-MiscListTests.c | 15 // Recursive data structure tests... 49 // Recursive list search fn
|
/external/clang/test/SemaTemplate/ |
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/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
|
/external/valgrind/main/drd/tests/ |
recursive_mutex.c | 31 fprintf(stderr, "Recursive mutex (statically initialized).\n"); 68 fprintf(stderr, "\nNon-recursive mutex.\n");
|
/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/pixman/ |
Makefile.in | 78 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ 79 html-recursive info-recursive install-data-recursive \ 80 install-dvi-recursive install-exec-recursive \ 81 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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pprint.py | 32 Generate a 'standard' repr()-like value, but protect against recursive 66 """Version of repr() which can handle recursive data structures.""" 74 """Determine if object requires a recursive representation.""" 129 s, readable, recursive = self.format(object, {}, 0, 0) 130 return readable and not recursive 232 repr, readable, recursive = self.format(object, context.copy(), 236 if recursive: 243 and whether the object represents a recursive construct. 282 recursive = False 293 recursive = Tru [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pprint.py | 32 Generate a 'standard' repr()-like value, but protect against recursive 66 """Version of repr() which can handle recursive data structures.""" 74 """Determine if object requires a recursive representation.""" 129 s, readable, recursive = self.format(object, {}, 0, 0) 130 return readable and not recursive 232 repr, readable, recursive = self.format(object, context.copy(), 236 if recursive: 243 and whether the object represents a recursive construct. 282 recursive = False 293 recursive = Tru [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
stacktrace_libunwind-inl.h | 55 // recursive request, we'd end up with infinite recursion or deadlock. 58 static __thread int recursive; variable 85 if (recursive) { 88 ++recursive; 126 --recursive;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
stacktrace_libunwind-inl.h | 55 // recursive request, we'd end up with infinite recursion or deadlock. 58 static __thread int recursive; variable 85 if (recursive) { 88 ++recursive; 126 --recursive;
|
/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/chromium_org/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...] |