/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_nodeclonetruecopytext.java | 31 * The "cloneNode(deep)" method does not copy text unless it 32 * is deep cloned.(Test for deep=true) 35 * the "cloneNode(deep)" method with deep=true. The
|
nodeclonefalsenocopytext.java | 31 * The "cloneNode(deep)" method does not copy text unless it 32 * is deep cloned.(Test for deep=false) 35 * the "cloneNode(deep)" method with deep=false. The
|
hc_nodeclonegetparentnull.java | 31 * The duplicate node returned by the "cloneNode(deep)" 35 * "cloneNode(deep)" method with deep=false. The
|
nodeclonegetparentnull.java | 31 * The duplicate node returned by the "cloneNode(deep)" 35 * "cloneNode(deep)" method with deep=false. The
|
hc_nodeclonenodefalse.java | 31 * The "cloneNode(deep)" method returns a copy of the node 32 * only if deep=false. 35 * "cloneNode(deep)" method with deep=false. The
|
hc_nodeclonenodetrue.java | 31 * The "cloneNode(deep)" method returns a copy of the node 32 * and the subtree under it if deep=true. 35 * "cloneNode(deep)" method with deep=true. The
|
nodeclonenodefalse.java | 31 * The "cloneNode(deep)" method returns a copy of the node 32 * only if deep=false. 35 * "cloneNode(deep)" method with deep=false. The
|
nodeclonenodetrue.java | 31 * The "cloneNode(deep)" method returns a copy of the node 32 * and the subtree under it if deep=true. 35 * "cloneNode(deep)" method with deep=true. The
|
/art/test/074-gc-thrash/src/ |
Main.java | 111 Deep deep = new Deep(); local 116 deep.start(); 127 deep.join(); 198 class Deep extends Thread { 233 System.err.println("Deep: weak still has " + i); 238 System.out.println("Deep: iters=" + iter / MAX_DEPTH); 255 System.err.println("Deep: " + i + " strong=" + strong[i] + 321 return new String("Deep" + val) [all...] |
/external/chromium-trace/catapult/third_party/polymer/components/paper-styles/ |
color.html | 91 --paper-deep-purple-50: #ede7f6; 92 --paper-deep-purple-100: #d1c4e9; 93 --paper-deep-purple-200: #b39ddb; 94 --paper-deep-purple-300: #9575cd; 95 --paper-deep-purple-400: #7e57c2; 96 --paper-deep-purple-500: #673ab7; 97 --paper-deep-purple-600: #5e35b1; 98 --paper-deep-purple-700: #512da8; 99 --paper-deep-purple-800: #4527a0; 100 --paper-deep-purple-900: #311b92 [all...] |
/external/valgrind/massif/tests/ |
deep-A.post.exp | 2 Command: ./deep 49 ->98.04% (3,600B) 0x........: a12 (deep.c:16) 50 ->98.04% (3,600B) 0x........: a11 (deep.c:17) 51 ->98.04% (3,600B) 0x........: a10 (deep.c:18) 52 ->98.04% (3,600B) 0x........: a9 (deep.c:19) 53 ->98.04% (3,600B) 0x........: a8 (deep.c:20) 54 ->98.04% (3,600B) 0x........: a7 (deep.c:21) 55 ->98.04% (3,600B) 0x........: a6 (deep.c:22) 56 ->98.04% (3,600B) 0x........: a5 (deep.c:23)
|
deep-B.vgtest | 1 prog: deep
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/ |
IReportGroupVisitor.java | 21 * "deep first" fashion. The interface is implemented by the report formatters 32 * hierarchy has to be processed in a "deep first" manner.</li> 54 * parent visitor can be used again ("deep first").
|
/external/v8/test/cctest/ |
test-symbols.cc | 28 // Check that we can traverse very deep stacks of ConsStrings using 29 // StringCharacterStram. Check that Get(int) works on very deep stacks 31 // should be possible without getting errors due to too deep recursion.
|
/external/v8/test/mjsunit/ |
deep-recursion.js | 29 * @fileoverview Check that flattening deep trees of cons strings does not 43 var deep = newdeep("foo", default_depth); 44 assertEquals('f', deep[0]);
|
/external/v8/tools/gyp/test/prune_targets/ |
gyptest-prune-targets.py | 36 # With deep dependencies of program1 only. 46 # With deep dependencies of program2 only. 56 # With deep dependencies of program1 and program2.
|
/frameworks/base/docs/html/training/app-indexing/ |
deep-linking.jd | 1 page.title=Enabling Deep Links for App Content 12 <li><a href="#adding-filters">Add Intent Filters for Your Deep Links</a></li> 14 <li><a href="#testing-filters">Test Your Deep Links</a></li> 29 <em>deep linking</em> to the content in any of your activities. For example, the user might click on a deep link to view a page within a shopping app that describes a product offering that the user is searching for.</p> 31 <h2 id="adding-filters">Add Intent Filters for Your Deep Links</h2> 32 <p>To create a deep link to your app content, add an intent filter that 53 in your manifest for deep linking. The URIs {@code ?example://gizmos?} and 112 <li>The deep link should take users directly to the content, 120 they enter your app through a deep link [all...] |
/external/compiler-rt/test/asan/TestCases/Posix/ |
deep_call_stack.cc | 1 // Check that UAR mode can handle very deep recusrion.
|
/external/mockito/src/org/mockito/internal/util/reflection/ |
GenericMaster.java | 26 //in case of nested generics we don't go deep
|
/frameworks/base/docs/html/guide/topics/sensors/ |
index.jd | 22 <a href="http://android-developers.blogspot.com/2011/06/deep-dive-into-location.html"> 23 <h4>A Deep Dive Into Location</h4>
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Type.java | 392 CtClass deep = one; local 395 CtClass backupDeep = deep; 397 // Phase 1 - Find the deepest hierarchy, set deep and shallow correctly 400 if (eq(deep, shallow) && deep.getSuperclass() != null) 401 return deep; 403 CtClass deepSuper = deep.getSuperclass(); 413 // wrong, swap them, since deep is now useless, its our tmp before we swap it 414 deep = backupDeep; 416 backupShallow = deep; [all...] |
/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...] |