HomeSort by relevance Sort by last modified time
    Searched refs:node (Results 176 - 200 of 7633) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/clang/www/analyzer/scripts/
menu.js 5 node = navRoot.childNodes[i];
6 if (node.nodeName=="LI") {
7 node.onmouseover=function() {
10 node.onmouseout=function() {
  /external/libxml2/python/tests/
xpathret.py 17 # test returning a node set works as expected
21 node = mydoc.newDocText(str)
22 parent.addChild(node)
35 node = res[0] variable
36 if node.name != 'p':
39 node = node.children variable
40 if node.type != 'text':
43 if node.content != 'hello':
  /external/pdfium/fxjs/xfa/
cjx_subjectdn.cpp 11 CJX_SubjectDN::CJX_SubjectDN(CXFA_SubjectDN* node) : CJX_Node(node) {}
cjx_subjectdns.cpp 11 CJX_SubjectDNs::CJX_SubjectDNs(CXFA_SubjectDNs* node) : CJX_Node(node) {}
cjx_xmlconnection.cpp 11 CJX_XmlConnection::CJX_XmlConnection(CXFA_XmlConnection* node)
12 : CJX_Node(node) {}
cjx_xsdconnection.cpp 11 CJX_XsdConnection::CJX_XsdConnection(CXFA_XsdConnection* node)
12 : CJX_Node(node) {}
  /external/sfntly/cpp/src/test/
test_xml_utils.cc 23 void InternalGetNodesWithName(const TiXmlNode* node, const std::string& name,
25 if (node->ValueStr() == name)
26 wanted_nodes->push_back(node);
27 for (const TiXmlNode* child = node->FirstChild();
33 TiXmlNodeVector* GetNodesWithName(const TiXmlNode* node,
36 InternalGetNodesWithName(node, name, wanted_nodes);
40 const TiXmlAttribute* GetAttribute(const TiXmlNode* node,
42 for (const TiXmlAttribute* attribute = node->ToElement()->FirstAttribute();
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Construct.java 18 import org.yaml.snakeyaml.nodes.Node;
21 * Provide a way to construct a Java instance out of the composed Node. Support
23 * Node Graph)
33 * @param node
34 * composed Node
37 Object construct(Node node);
43 * @param node
44 * composed Node
47 * <code>construct(Node node)</code> for the provided Nod
    [all...]
  /external/v8/src/compiler/
js-context-specialization.cc 10 #include "src/compiler/node-matchers.h"
11 #include "src/compiler/node-properties.h"
19 Reduction JSContextSpecialization::Reduce(Node* node) {
20 switch (node->opcode()) {
22 return ReduceJSLoadContext(node);
24 return ReduceJSStoreContext(node);
31 Reduction JSContextSpecialization::SimplifyJSLoadContext(Node* node,
32 Node* new_context
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AAltCommand.java 3 package com.google.clearsilver.jsilver.syntax.node;
52 public void setPosition(PPosition node)
59 if(node != null)
61 if(node.parent() != null)
63 node.parent().removeChild(node);
66 node.parent(this);
69 this._position_ = node;
77 public void setExpression(PExpression node)
84 if(node != null
    [all...]
AAutoescapeCommand.java 3 package com.google.clearsilver.jsilver.syntax.node;
52 public void setPosition(PPosition node)
59 if(node != null)
61 if(node.parent() != null)
63 node.parent().removeChild(node);
66 node.parent(this);
69 this._position_ = node;
77 public void setExpression(PExpression node)
84 if(node != null
    [all...]
AEscapeCommand.java 3 package com.google.clearsilver.jsilver.syntax.node;
52 public void setPosition(PPosition node)
59 if(node != null)
61 if(node.parent() != null)
63 node.parent().removeChild(node);
66 node.parent(this);
69 this._position_ = node;
77 public void setExpression(PExpression node)
84 if(node != null
    [all...]
ASetCommand.java 3 package com.google.clearsilver.jsilver.syntax.node;
52 public void setPosition(PPosition node)
59 if(node != null)
61 if(node.parent() != null)
63 node.parent().removeChild(node);
66 node.parent(this);
69 this._position_ = node;
77 public void setVariable(PVariable node)
84 if(node != null
    [all...]
Switchable.java 3 package com.google.clearsilver.jsilver.syntax.node;
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
limits.cpp 69 virtual bool visitBinary(TVisit, TIntermBinary* node);
70 virtual bool visitUnary(TVisit, TIntermUnary* node);
71 virtual bool visitAggregate(TVisit, TIntermAggregate* node);
84 bool TInductiveTraverser::visitBinary(TVisit /* visit */, TIntermBinary* node)
86 if (node->modifiesState() && node->getLeft()->getAsSymbolNode() &&
87 node->getLeft()->getAsSymbolNode()->getId() == loopId) {
89 badLoc = node->getLoc();
96 bool TInductiveTraverser::visitUnary(TVisit /* visit */, TIntermUnary* node)
98 if (node->modifiesState() && node->getOperand()->getAsSymbolNode() &
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdlib/
tfind.c 19 } node; typedef in typeref:struct:node_t
21 /* find a node, or return 0 */
27 node **rootp = (node **)vrootp;
39 return (node *)0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_metaclass.py 23 from ..fixer_util import Name, syms, Node, Leaf
32 for node in parent.children:
33 if node.type == syms.suite:
34 return has_metaclass(node)
35 elif node.type == syms.simple_stmt and node.children:
36 expr_node = node.children[0]
49 for node in cls_node.children:
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one up
    [all...]
fix_ne.py 17 def match(self, node):
19 return node.value == u"<>"
21 def transform(self, node, results):
22 new = pytree.Leaf(token.NOTEQUAL, u"!=", prefix=node.prefix)
  /external/autotest/client/cros/audio/
cras_utils.py 147 """Set the volume of the given output node.
149 @param node_id: the id of the output node to be set the volume.
191 @returns: A dict containing information of each node.
201 field is a list of selected node IDs returned from Cras DBus API.
209 for node in nodes:
210 if node['Active']:
211 if node['IsInput']:
212 input_nodes.append(node['Id'])
214 output_nodes.append(node['Id'])
219 """Sets the selected output node volume
    [all...]
  /external/dtc/tests/
overlay_base.dts 11 test: test-node {
15 subtest: sub-test-node {
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_metaclass.py 23 from ..fixer_util import Name, syms, Node, Leaf
32 for node in parent.children:
33 if node.type == syms.suite:
34 return has_metaclass(node)
35 elif node.type == syms.simple_stmt and node.children:
36 expr_node = node.children[0]
49 for node in cls_node.children:
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one u
    [all...]
fix_ne.py 17 def match(self, node):
19 return node.value == u"<>"
21 def transform(self, node, results):
22 new = pytree.Leaf(token.NOTEQUAL, u"!=", prefix=node.prefix)
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_metaclass.py 23 from ..fixer_util import syms, Node, Leaf
32 for node in parent.children:
33 if node.type == syms.suite:
34 return has_metaclass(node)
35 elif node.type == syms.simple_stmt and node.children:
36 expr_node = node.children[0]
49 for node in cls_node.children:
50 if node.type == syms.suite:
54 # !%@#! oneliners have no suite node, we have to fake one u
    [all...]
fix_ne.py 17 def match(self, node):
19 return node.value == "<>"
21 def transform(self, node, results):
22 new = pytree.Leaf(token.NOTEQUAL, "!=", prefix=node.prefix)
  /external/tensorflow/tensorflow/tools/graph_transforms/
remove_control_dependencies.cc 30 for (const NodeDef& node : input_graph_def.node()) {
32 *new_node = node;
34 for (const auto& input : node.input()) {

Completed in 503 milliseconds

1 2 3 4 5 6 78 91011>>