Searched defs:node (Results 1 - 25 of 884) sorted by relevance

1234567891011>>

/external/clang/www/analyzer/scripts/
H A Dmenu.js5 node = navRoot.childNodes[i];
6 if (node.nodeName=="LI") {
7 node.onmouseover=function() {
10 node.onmouseout=function() {
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRMapElement.h37 id node; variable
40 @property (retain, getter=getNode, setter=setNode:) id node; variable
H A DANTLRNodeMapElement.h37 id<ANTLRTree> node; variable
40 @property (retain, getter=getNode, setter=setNode:) id node; variable
H A DANTLRRecognitionException.h38 id<ANTLRTree> node; variable
46 @property (retain, getter=getNode, setter=setNode:) id<ANTLRTree>node; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRMapElement.h37 id node; variable
40 @property (retain, getter=getNode, setter=setNode:) id node; variable
H A DANTLRNodeMapElement.h37 id<ANTLRTree> node; variable
40 @property (retain, getter=getNode, setter=setNode:) id node; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRMapElement.h37 id node; variable
40 @property (retain, getter=getNode, setter=setNode:) id node; variable
H A DANTLRNodeMapElement.h37 id<ANTLRTree> node; variable
40 @property (retain, getter=getNode, setter=setNode:) id node; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRMapElement.h37 id node; variable
40 @property (retain, getter=getNode, setter=setNode:) id node; variable
H A DANTLRNodeMapElement.h37 id<ANTLRBaseTree> node; variable
40 @property (retain, getter=getNode, setter=setNode:) id<ANTLRBaseTree> node; variable
/external/mesa3d/src/gallium/auxiliary/cso_cache/
H A Dcso_hash.h60 struct cso_node *node; member in struct:cso_hash_iter
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DDOMSerializer.java65 * Serializes the DOM node. Throws an exception only if an I/O
70 * @param node the DOM node to serialize
73 public void serialize(Node node) throws IOException; argument
/external/clang/test/CodeGen/
H A Dtbaa-thread-sanitizer.cpp5 struct iterator { void *node; }; member in struct:iterator
/external/clang/test/SemaCXX/
H A Dlibstdcxx_pointer_return_false_hack.cpp15 typedef hashnode<T> node; typedef in struct:std::tr1::hashtable
16 node *find_node() {
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DPCommand.java3 package com.google.clearsilver.jsilver.syntax.node;
H A DPExpression.java3 package com.google.clearsilver.jsilver.syntax.node;
H A DPPosition.java3 package com.google.clearsilver.jsilver.syntax.node;
H A DPVariable.java3 package com.google.clearsilver.jsilver.syntax.node;
H A DSwitch.java3 package com.google.clearsilver.jsilver.syntax.node;
/external/libxml2/python/tests/
H A Dreader5.py23 node = reader.Expand() # expand the subtree variable
24 if node.xpathEval("@id = 'Aho'"): # use XPath on it
25 res = res + node.serialize()
/external/sfntly/cpp/src/test/
H A Dtest_xml_utils.cc23 void InternalGetNodesWithName(const TiXmlNode* node, const std::string& name, argument
25 if (node->ValueStr() == name)
26 wanted_nodes->push_back(node);
27 for (const TiXmlNode* child = node->FirstChild();
33 TiXmlNodeVector* GetNodesWithName(const TiXmlNode* node, argument
36 InternalGetNodesWithName(node, name, wanted_nodes);
40 const TiXmlAttribute* GetAttribute(const TiXmlNode* node, argument
42 for (const TiXmlAttribute* attribute = node->ToElement()->FirstAttribute();
/external/v8/test/cctest/
H A Dtest-ast.cc45 AstNode* node = factory.NewEmptyStatement(RelocInfo::kNoPosition); local
46 list->Add(node);
48 CHECK_EQ(node, list->at(0));
49 CHECK_EQ(node, list->last());
53 list->Add(node);
/external/eigen/doc/
H A Deigen_navtree_hacks.js77 // Overloaded to save the root node into global_navtree_object
83 o.node = new Object();
84 o.node.li = document.getElementById("nav-tree-contents");
85 o.node.childrenData = NAVTREE;
86 o.node.children = new Array();
87 o.node.childrenUL = document.createElement("ul");
88 o.node.getChildrenUL = function() { return o.node.childrenUL; };
89 o.node.li.appendChild(o.node
[all...]
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-reference.js100 var node = new Object();
101 node.children = Array();
102 node.children_data = children_data;
103 node.depth = mom.depth + 1;
105 node.li = document.createElement("li");
106 mom.get_children_ul().appendChild(node.li);
108 node.label_div = document.createElement("div");
109 node.label_div.className = "label";
111 $(node.label_div).addClass("api");
112 $(node
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognitionException.as76 /** If this is a tree parser exception, node is set to the node with
79 public var node:Object; variable
92 /** If you are parsing a tree node stream, you will encounter som
125 this.node = nodes.LT(1);
127 var payload:Token = adaptor.getToken(node);
131 // imaginary node; no line/pos info; scan backwards
147 else { // node created from real token
152 else if ( this.node is Tree) {
153 this.line = this.node
[all...]

Completed in 5999 milliseconds

1234567891011>>