HomeSort by relevance Sort by last modified time
    Searched refs:deep (Results 26 - 50 of 124) sorted by null

12 3 4 5

  /ndk/sources/host-tools/sed-4.2.1/lib/
alloca.c 139 char *deep; /* For stack depth measure. */ member in struct:hdr::__anon35050
174 if ((STACK_DIR > 0 && hp->h.deep > depth)
175 || (STACK_DIR < 0 && hp->h.deep < depth))
212 new->h.deep = depth;
  /external/clang/test/SemaCXX/
cstyle-cast.cpp 27 // Cast away deep consts and volatiles.
189 ppint *deep = (ppint*)(p3); local
190 (void)(fnptr*)(deep);
functional-cast.cpp 56 // Cast away deep consts and volatiles.
255 ppint *deep = pppint(p3); local
257 (void)fnptrp(deep);
reinterpret-cast.cpp 52 ppint *deep = reinterpret_cast<ppint*>(p3); local
53 (void)reinterpret_cast<fnptr*>(deep);
  /external/chromium_org/net/disk_cache/
block_files.h 91 // Removes an entry from the block files. If deep is true, the storage is zero
94 void DeleteBlock(Addr address, bool deep);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Attr.h 83 virtual PassRefPtr<Node> cloneNode(bool deep = true);
Node.idl 60 Node cloneNode(optional boolean deep);
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 414 * contains unless it is a deep clone. This includes text contained in
421 * deep clone or not. Cloning an <code>EntityReference</code>
423 * <code>Entity</code> is available, no matter whether this is a deep
432 * @param deep If <code>true</code>, recursively clone the subtree under
437 public Node cloneNode(boolean deep);
    [all...]
  /art/test/074-gc-thrash/src/
Main.java 111 Deep deep = new Deep(); local
116 deep.start();
127 deep.join();
194 class Deep extends Thread {
224 System.err.println("Deep: " + i + " strong=" + strong[i] +
239 System.err.println("Deep: weak still has " + i);
244 System.out.println("Deep: iters=" + iter / MAX_DEPTH);
305 return new String("Deep" + val)
    [all...]
  /dalvik/tests/074-gc-thrash/src/
Main.java 111 Deep deep = new Deep(); local
116 deep.start();
127 deep.join();
194 class Deep extends Thread {
224 System.err.println("Deep: " + i + " strong=" + strong[i] +
239 System.err.println("Deep: weak still has " + i);
244 System.out.println("Deep: iters=" + iter / MAX_DEPTH);
305 return new String("Deep" + val)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 216 * @param deep true to recursively copy any child nodes; false to do no such
219 Node cloneOrImportNode(short operation, Node node, boolean deep) {
222 if (deep) {
225 copy.appendChild(cloneOrImportNode(operation, list.item(i), deep));
233 public Node importNode(Node importedNode, boolean deep) {
234 return cloneOrImportNode(UserDataHandler.NODE_IMPORTED, importedNode, deep);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
copy.py 1 """Generic (shallow and deep) copying operations.
8 x = copy.deepcopy(y) # make a deep copy of y
12 The difference between shallow and deep copying is only relevant for
20 - A deep copy constructs a new compound object and then, recursively,
23 Two problems often exist with deep copy operations that don't exist
29 b) because deep copy copies *everything* it may copy too much, e.g.
33 Python's deep copy operation avoids these problems by:
146 """Deep copy operation on arbitrary Python objects.
189 "un(deep)copyable object of type %s" % cls)
306 def _reconstruct(x, info, deep, memo=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
copy.py 1 """Generic (shallow and deep) copying operations.
8 x = copy.deepcopy(y) # make a deep copy of y
12 The difference between shallow and deep copying is only relevant for
20 - A deep copy constructs a new compound object and then, recursively,
23 Two problems often exist with deep copy operations that don't exist
29 b) because deep copy copies *everything* it may copy too much, e.g.
33 Python's deep copy operation avoids these problems by:
146 """Deep copy operation on arbitrary Python objects.
189 "un(deep)copyable object of type %s" % cls)
306 def _reconstruct(x, info, deep, memo=None)
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
regress-inline-callfunctionstub.js 30 // Test inlined of calls-as-function two levels deep.
  /external/v8/test/mjsunit/compiler/
regress-inline-callfunctionstub.js 30 // Test inlined of calls-as-function two levels deep.
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 126 public Node importNode(Node importedNode, boolean deep) throws DOMException {
  /external/chromium_org/net/disk_cache/v3/
block_bitmaps.cc 92 void BlockFiles::DeleteBlock(Addr address, bool deep) {
110 if (deep)
  /external/chromium_org/third_party/icu/source/common/unicode/
utext.h 316 * A deep clone will copy both the UText data structures and the underlying text.
319 * required to support deep clones. The user of clone() must check the status return
323 * Replaceable all support deep cloning.
325 * The UText returned from a deep clone will be writable, assuming that the text
350 * write access with deep clones.
359 * @param deep TRUE to request a deep clone, FALSE for a shallow clone.
363 * @param status Errors are returned here. For deep clones, U_UNSUPPORTED_ERROR
370 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status);
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
deep-recursion-test.js 24 description("This test how deep we can recurse, and that we get an exception when we do, as opposed to a stack overflow.");
  /external/icu4c/common/unicode/
utext.h 316 * A deep clone will copy both the UText data structures and the underlying text.
319 * required to support deep clones. The user of clone() must check the status return
323 * Replaceable all support deep cloning.
325 * The UText returned from a deep clone will be writable, assuming that the text
350 * write access with deep clones.
359 * @param deep TRUE to request a deep clone, FALSE for a shallow clone.
363 * @param status Errors are returned here. For deep clones, U_UNSUPPORTED_ERROR
370 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status);
    [all...]
  /external/valgrind/main/massif/tests/
deep-D.post.exp 2 Command: ./deep
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 204 def cloneNode(self, deep):
205 return _clone_node(self, deep, self.ownerDocument or self)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 204 def cloneNode(self, deep):
205 return _clone_node(self, deep, self.ownerDocument or self)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
utext.cpp 864 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status) {
866 result = src->pFuncs->clone(dest, src, deep, status);
    [all...]
  /external/icu4c/common/
utext.cpp 518 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status) {
520 result = src->pFuncs->clone(dest, src, deep, status);
    [all...]

Completed in 1022 milliseconds

12 3 4 5