/external/clang/test/Index/ |
annotate-deep-statements.cpp | 4 // Check that we don't get stack overflow trying to annotate an extremely deep AST.
|
/external/valgrind/massif/tests/ |
deep-A.vgtest | 1 prog: deep
|
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/chromium-trace/catapult/third_party/polymer/components/paper-dialog/ |
paper-dialog.html | 25 Because a `paper-dialog` is `layered` by default, you need to use the `/deep/` 28 `html /deep/ paper-dialog` selector. Use the `html /deep/ paper-dialog::shadow #scroller` selector to size the dialog. Note that if you provided actions, the height 31 html /deep/ paper-dialog { 35 html /deep/ paper-dialog::shadow #scroller {
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_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_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/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]);
|
/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/chromium-trace/catapult/third_party/polymer/components/core-icon/ |
core-icon.css | 8 html /deep/ core-icon {
|
/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...] |