HomeSort by relevance Sort by last modified time
    Searched full:recursive (Results 101 - 125 of 2183) sorted by null

1 2 3 45 6 7 8 91011>>

  /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)) &&
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imghdr.py 129 recursive = 0
132 recursive = 1
135 testall(sys.argv[1:], recursive, 1)
137 testall(['.'], recursive, 1)
142 def testall(list, recursive, toplevel):
148 if recursive or toplevel:
152 testall(names, recursive, 0)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imghdr.py 129 recursive = 0
132 recursive = 1
135 testall(sys.argv[1:], recursive, 1)
137 testall(['.'], recursive, 1)
142 def testall(list, recursive, toplevel):
148 if recursive or toplevel:
152 testall(names, recursive, 0)
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t022scopes.g 62 /* recursive rule scopes, from the book, final beta, p.150 */
96 /* recursive rule scopes, access bottom-most scope */
110 /* recursive rule scopes, access with negative index */
  /external/chromium_org/webkit/browser/fileapi/
file_observers.h 22 // for destination url regardless of whether it is recursive copy or not):
46 // is recursive or not)
60 // removed or modified. For recursive operations each method is called for
sandbox_isolated_origin_database.cc 67 base::DeleteFile(isolated_directory, true /* recursive */);
75 base::DeleteFile(origin_directory, true /* recursive */);
98 base::DeleteFile(to_path, true /* recursive */);
  /external/lzma/CPP/Common/
Wildcard.cpp 181 if (!ForDir && !Recursive && delta !=0)
185 if (!ForDir && Recursive)
188 if (Recursive)
242 void CCensorNode::AddItem(bool include, const UString &path, bool recursive, bool forFile, bool forDir)
246 item.Recursive = recursive;
257 if (item.Recursive || item.PathParts.Size() > 1)
338 void CCensorNode::AddItem2(bool include, const UString &path, bool recursive)
350 AddItem(include, path2, recursive, forFile, forFolder);
374 void CCensor::AddItem(bool include, const UString &path, bool recursive)
    [all...]
  /external/chromium_org/base/message_loop/
message_loop_unittest.cc 617 RECURSIVE,
647 case RECURSIVE: os << "RECURSIVE"; break;
729 order->RecordStart(RECURSIVE, cookie);
737 order->RecordEnd(RECURSIVE, cookie);
770 // The trick here is that for recursive task processing, this task will be
773 // For non-recursive task processing, this will be executed _after_ the
825 EXPECT_EQ(order.Get(0), TaskItem(RECURSIVE, 1, true));
826 EXPECT_EQ(order.Get(1), TaskItem(RECURSIVE, 1, false));
827 EXPECT_EQ(order.Get(2), TaskItem(RECURSIVE, 2, true))
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_bookmark_helpers.h 34 bool recursive,
extension_bookmarks_module_constants.cc 18 const char kRecursiveKey[] = "recursive";
28 "Can't remove non-empty folder (use recursive to force).";
  /external/chromium_org/base/files/
file_path_watcher.h 42 bool recursive,
92 // called at most once, and from a MessageLoop of TYPE_IO. Set |recursive| to
96 // NOTE: Recursive watch is not supported on all platforms and file systems.
98 bool Watch(const FilePath& path, bool recursive, const Callback& callback);
file_path_watcher_stub.cc 17 bool recursive,
  /external/chromium_org/net/disk_cache/simple/
simple_index_file_win.cc 22 cache_path, false /* recursive */, base::FileEnumerator::FILES,
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p2.cpp 11 // Test simple recursive variadic function template
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_java.h 58 // Can be called on recursive reentry.
66 // Recursive mutex lock, intended for handling of Object.wait().
70 // Recursive mutex unlock, intended for handling of Object.wait().
72 // w/o a pairing unlock() (i.e. how many recursive levels it unlocked).
  /external/valgrind/main/memcheck/tests/linux/
lsframe2.c 2 /* Demonstrate Memcheck correctly handling chain of 64 recursive
  /external/valgrind/main/memcheck/tests/
wrap2.c 5 /* Check that function wrapping works for a recursive function. */
  /external/chromium_org/third_party/sqlite/src/src/
mutex_unix.c 21 ** supports recursive mutexes.
39 ** Each recursive mutex is an instance of the following structure.
106 ** a new mutex. The new mutex is recursive when SQLITE_MUTEX_RECURSIVE
110 ** not want to. But SQLite will only request a recursive mutex in
111 ** cases where it really needs one. If a faster non-recursive mutex
144 /* If recursive mutexes are not available, we will have to
148 /* Use a recursive mutex if it is available */
212 /* If recursive mutexes are not available, then we have to grow
234 /* Use the built-in recursive mutexes if they are available.
255 /* If recursive mutexes are not available, then we have to gro
    [all...]
  /external/chromium/base/
file_util_deprecated.h 39 BASE_API bool Delete(const std::wstring& path, bool recursive);
42 bool recursive);
  /external/chromium_org/ppapi/thunk/
ppb_flash_file_modulelocal_thunk.cc 44 PP_Bool recursive) {
48 return enter.functions()->DeleteFileOrDir(instance, path, recursive);
  /external/chromium_org/rlz/lib/
recursive_cross_process_lock_posix.cc 23 // Emulate a recursive mutex with a non-recursive one.
  /system/extras/tests/bionic/libc/common/
test_static_cpp_mutex.cpp 28 /* this program is used to test the locking of a recursive mutex in a static C++ constructor
51 fprintf(stderr, "recursive lock initialized and locked\n" );
  /external/bison/examples/
Makefile.in 184 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
185 html-recursive info-recursive install-data-recursive \
186 install-dvi-recursive install-exec-recursive \
187 install-html-recursive install-info-recursive \
    [all...]

Completed in 1595 milliseconds

1 2 3 45 6 7 8 91011>>