HomeSort by relevance Sort by last modified time
    Searched full:root (Results 126 - 150 of 6590) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
TranslatorGLSL.cpp 12 static void writeVersion(ShShaderType type, TIntermNode* root,
15 root->traverse(&versionGLSL);
28 void TranslatorGLSL::translate(TIntermNode* root) {
32 writeVersion(getShaderType(), root, sink); local
36 root->traverse(&outputGLSL);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
AssignableFrom.java 23 private final Class root; field in class:AssignableFrom
25 AssignableFrom(Class root) {
26 this.root = root;
30 return root.isAssignableFrom(testMethod.getEnclosingClass());
  /external/bluetooth/glib/tests/
node-test.c 88 GNode *root; local
100 root = g_node_new (C2P ('A'));
101 TEST (NULL, g_node_depth (root) == 1 && g_node_max_height (root) == 1);
104 g_node_append (root, node_B);
105 TEST (NULL, root->children == node_B);
113 g_node_append (root, node_F);
114 TEST (NULL, root->children->next == node_F);
124 TEST (NULL, g_node_depth (root) == 1);
125 TEST (NULL, g_node_max_height (root) == 4)
    [all...]
  /external/webkit/LayoutTests/fast/xpath/4XPath/Core/
test_parser.html 19 result = DOM.evaluate("child::*", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
23 checkSnapshot("/child::*", result, [ROOT]);
32 checkSnapshot("//*", result, [ROOT, CHILD1].concat(GCHILDREN1, [CHILD2], GCHILDREN2, [CHILD3, LANG], LCHILDREN));
46 result = DOM.evaluate(".//GCHILD", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
53 checkSnapshot("//CHILD1/..", result, [ROOT]);
58 result = DOM.evaluate("CHILD1 | CHILD2", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
61 result = DOM.evaluate("descendant::GCHILD[3]", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
64 result = DOM.evaluate("descendant::GCHILD[parent::CHILD1]", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
67 result = DOM.evaluate("descendant::GCHILD[position() > 1]", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
73 shouldBe('DOM.evaluate("1", ROOT, null, XPathResult.ANY_TYPE, null).numberValue', "1")
    [all...]
test_boolean_expr.html 12 doc = (new DOMParser).parseFromString("<root num0='0' num2='2' num4='4'><egg1>egg1</egg1><egg2>egg2</egg2></root>", "application/xml");
22 shouldBe('doc.evaluate("/root/@num2 <= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue', 'true');
23 shouldBe('doc.evaluate("/root/@num2 >= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue', 'true');
24 shouldBe('doc.evaluate("/root/@num0 <= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue', 'true');
25 shouldBe('doc.evaluate("/root/@num0 >= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue', 'false')
    [all...]
test_boolean_expr-expected.txt 9 PASS doc.evaluate("/root/@num2 <= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is true
10 PASS doc.evaluate("/root/@num2 >= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is true
11 PASS doc.evaluate("/root/@num0 <= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is true
12 PASS doc.evaluate("/root/@num0 >= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is false
13 PASS doc.evaluate("/root/@num4 <= /root/@num2", doc, null, XPathResult.BOOLEAN_TYPE, null).booleanValue is fals
    [all...]
  /external/chromium/base/json/
json_writer_unittest.cc 13 Value* root = Value::CreateNullValue(); local
15 JSONWriter::Write(root, false, &output_js);
17 delete root;
20 root = new DictionaryValue;
21 JSONWriter::Write(root, false, &output_js);
23 delete root;
26 root = new ListValue;
27 JSONWriter::Write(root, false, &output_js);
29 delete root;
32 root = Value::CreateDoubleValue(1.0)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TemplateSyntaxTree.java 24 * Simple wrapper class to encapsulate the root node of the AST and allow additional information to
28 private final Start root; field in class:TemplateSyntaxTree
30 TemplateSyntaxTree(Start root) {
31 this.root = root;
35 return root;
40 root.apply(sw);
  /external/qemu/android/
config.h 32 extern void aconfig_load(AConfig* root, char* data);
35 extern int aconfig_load_file(AConfig* root, const char* path);
38 extern int aconfig_save_file(AConfig* root, const char* path);
44 extern AConfig* aconfig_find(AConfig *root, const char *name);
47 extern void aconfig_set(AConfig *root, const char *name, const char *value);
52 extern int aconfig_bool (AConfig *root, const char *name, int _default);
53 extern unsigned aconfig_unsigned(AConfig *root, const char *name, unsigned _default);
54 extern int aconfig_int (AConfig *root, const char *name, int _default);
55 extern const char* aconfig_str (AConfig *root, const char *name, const char *_default);
  /external/webkit/LayoutTests/fast/xpath/
attribute-node-predicate.html 13 var ROOT = document.createElement('div');
14 ROOT.innerHTML = '<p>a</p><div><span id="21"></span><span id="22"></span><span id="23"></span></div>';
15 var CHILD1 = ROOT.firstChild;
17 var CHILD2 = ROOT.lastChild;
22 result = document.evaluate(".//@id[false]", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
25 result = document.evaluate(".//@id[1]/parent::*", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
28 result = document.evaluate(".//@id[2]/parent::*", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
31 result = document.evaluate(".//@id[string()='21']/parent::*", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
34 result = document.evaluate(".//@id[string()='22']/parent::*", ROOT, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
  /external/qemu/proxy/
proxy_http_rewriter.c 323 /* root->socket is connected to the proxy server. while
348 ProxyConnection root[1]; member in struct:__anon11242
368 rewrite_connection_free( ProxyConnection* root )
370 RewriteConnection* conn = (RewriteConnection*)root;
377 proxy_connection_done(root);
385 HttpService* service = (HttpService*) conn->root->service;
386 ProxyConnection* root = conn->root; local
391 if (socket_connect( root->socket, &service->server_addr ) < 0) {
393 PROXY_LOG("%s: connecting", conn->root->name)
413 ProxyConnection* root = conn->root; local
431 ProxyConnection* root = conn->root; local
477 ProxyConnection* root = conn->root; local
518 ProxyConnection* root = conn->root; local
565 ProxyConnection* root = conn->root; local
602 ProxyConnection* root = conn->root; local
622 ProxyConnection* root = conn->root; local
705 ProxyConnection* root = conn->root; local
902 ProxyConnection* root = conn->root; local
    [all...]
  /external/clang/test/Analysis/
chroot.c 10 chroot("/usr/local"); // root changed.
15 chroot("/usr/local"); // root changed.
21 chroot("/usr/local"); // root changed.
  /external/clang/test/SemaObjC/
duplicate-ivar-in-class-extension.m 3 @interface Root @end
5 @interface SuperClass : Root
23 @interface Root () {
legacy-implementation-1.m 1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
  /external/guava/guava/src/com/google/common/collect/
BstRangeOps.java 38 BstAggregate<? super N> aggregate, GeneralRange<K> range, @Nullable N root) {
41 if (root == null || range.isEmpty()) {
44 long total = aggregate.treeValue(root);
46 total -= totalBeyondRangeToSide(aggregate, range, LEFT, root);
49 total -= totalBeyondRangeToSide(aggregate, range, RIGHT, root);
56 BstAggregate<? super N> aggregate, GeneralRange<K> range, BstSide side, @Nullable N root) {
58 while (root != null) {
59 if (beyond(range, root.getKey(), side)) {
60 accum += aggregate.entryValue(root);
61 accum += aggregate.treeValue(root.childOrNull(side))
    [all...]
  /cts/tools/utils/
android_api_description_splitter.py 29 # <Root>
37 # </Root>
41 # <Root>
46 # </Root>
48 # <Root>
52 # </Root>
56 # <Root>
60 # </Root>
62 # <Root>
66 # </Root>
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
DensityActivity.java 52 LinearLayout root = new LinearLayout(this); local
53 root.setOrientation(LinearLayout.VERTICAL);
59 addLabelToRoot(root, "Prescaled bitmap in drawable");
60 addChildToRoot(root, layout);
66 addLabelToRoot(root, "Autoscaled bitmap in drawable");
67 addChildToRoot(root, layout);
73 addLabelToRoot(root, "Prescaled resource drawable");
74 addChildToRoot(root, layout);
77 addLabelToRoot(root, "Inflated layout");
78 addChildToRoot(root, layout)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t051treeRewriteASTac.g 6 a : ID INT -> ^(ID["root"] INT);
  /external/dbus/test/data/auth/
external-root.auth-script 1 ## this tests we can auth EXTERNAL as ourselves, with root credentials
  /external/llvm/test/Bindings/Ocaml/
lit.local.cfg 3 bindings = set([s.strip() for s in config.root.llvm_bindings.split(',')])
  /external/llvm/test/CodeGen/ARM/
lit.local.cfg 3 targets = set(config.root.targets_to_build.split())
  /external/llvm/test/CodeGen/CPP/
lit.local.cfg 3 targets = set(config.root.targets_to_build.split())
  /external/llvm/test/CodeGen/CellSPU/
lit.local.cfg 3 targets = set(config.root.targets_to_build.split())
  /external/llvm/test/CodeGen/Hexagon/
lit.local.cfg 3 targets = set(config.root.targets_to_build.split())
  /external/llvm/test/CodeGen/MBlaze/
lit.local.cfg 3 targets = set(config.root.targets_to_build.split())

Completed in 6813 milliseconds

1 2 3 4 56 7 8 91011>>