Searched defs:node (Results 51 - 75 of 1594) sorted by relevance

1234567891011>>

/external/jsilver/src/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/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/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...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
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 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/Current/Headers/
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/Framework/
H A DANTLRRecognitionException.h38 id<ANTLRBaseTree> node; variable
47 @property (retain, getter=getNode, setter=setNode:) id<ANTLRBaseTree>node; variable
/external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
H A Dbookmark_manager_private_apitest.cc38 base::DictionaryValue* node = new base::DictionaryValue(); local
39 node->SetString("name", "Managed Bookmark");
40 node->SetString("url", "http://www.chromium.org");
41 list.Append(node);
42 node = new base::DictionaryValue();
43 node->SetString("name", "Managed Folder");
44 node->Set("children", new base::ListValue());
45 list.Append(node);
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_match.h36 // The matching node of a query.
37 const BookmarkNode* node; member in struct:bookmarks::BookmarkMatch
39 // Location of the matching words in the title of the node.
42 // Location of the matching words in the URL of the node.
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_model_observer.h22 // Called when a node is added to the model.
23 virtual void EnhancedBookmarkAdded(const BookmarkNode* node) = 0;
25 // Called when a node is removed from the model.
26 virtual void EnhancedBookmarkRemoved(const BookmarkNode* node) = 0;
31 // Called when the remote id of a node changes. If |remote_id| is empty, the
34 virtual void EnhancedBookmarkRemoteIdChanged(const BookmarkNode* node, argument
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_mutex_check_need_init.c53 ptw32_mcs_local_node_t node; local
55 ptw32_mcs_lock_acquire(&ptw32_mutex_test_init_lock, &node);
89 ptw32_mcs_lock_release(&node);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Ddev_fs_for_testing.h24 nacl_io::ScopedNode node; local
25 if (Open(nacl_io::Path(filename), O_RDONLY, &node))
29 return node->GetStat(&buf) == 0;
/external/chromium_org/ppapi/native_client/tests/breakpad_crash_test/
H A Dnacl.scons29 node = env.PPAPIBrowserTester( variable
46 node, ['chrome_browser_tests'], 'run_breakpad_browser_process_crash_test',
54 # node = env.PPAPIBrowserTester(
65 # node,
75 # node = env.PPAPIBrowserTester(
84 # node, ['chrome_browser_tests'], 'run_breakpad_crash_in_syscall_test',
92 node = env.PPAPIBrowserTester( variable
101 node, ['chrome_browser_tests'], 'run_breakpad_untrusted_crash_test',
/external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
H A Dnacl.scons73 node = env.PPAPIBrowserTester( variable
82 env.AddNodeToTestSuite(node,
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildNode.h15 static Element* previousElementSibling(Node& node) argument
17 return ElementTraversal::previousSibling(node);
20 static Element* nextElementSibling(Node& node) argument
22 return ElementTraversal::nextSibling(node);
25 static void remove(Node& node, ExceptionState& exceptionState) argument
27 return node.remove(exceptionState);
H A DNodeIteratorBase.cpp43 short NodeIteratorBase::acceptNode(Node* node, ExceptionState& exceptionState) const argument
45 // The bit twiddling here is done to map DOM node types, which are given as integers from
47 if (!(((1 << (node->nodeType() - 1)) & m_whatToShow)))
51 return m_filter->acceptNode(node, exceptionState);
H A DNodeWithIndex.h34 // For use when you want to get the index for a node repeatedly and
39 explicit NodeWithIndex(Node& node) argument
40 : m_node(node)
45 Node& node() const { return *m_node; } function in class:blink::NodeWithIndex
50 m_index = node().nodeIndex();
52 ASSERT(m_index == static_cast<int>(node().nodeIndex()));
H A DPositionIterator.h59 Node* node() const { return m_anchorNode; } function in class:blink::PositionIterator
H A DRenderTreeBuilder.h43 RenderTreeBuilder(Node* node, RenderStyle* style) argument
44 : m_node(node)
48 ASSERT(!node->renderer());
49 ASSERT(node->needsAttach());
50 ASSERT(node->document().inStyleRecalc());
52 // FIXME: We should be able to ASSERT(node->inActiveDocument()) but childrenChanged is called
58 m_renderingParent = NodeRenderingTraversal::parent(node, &m_parentDetails);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DAppendNodeCommand.cpp33 AppendNodeCommand::AppendNodeCommand(PassRefPtrWillBeRawPtr<ContainerNode> parent, PassRefPtrWillBeRawPtr<Node> node) argument
36 , m_node(node)

Completed in 4931 milliseconds

1234567891011>>