HomeSort by relevance Sort by last modified time
    Searched refs:nodes (Results 1 - 25 of 789) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/pylib/gyp/
input_test.py 16 self.nodes = {}
18 self.nodes[x] = gyp.input.DependencyGraphNode(x)
25 for label, node in self.nodes.iteritems():
29 self._create_dependency(self.nodes['a'], self.nodes['b'])
30 self._create_dependency(self.nodes['b'], self.nodes['c'])
31 self._create_dependency(self.nodes['c'], self.nodes['d'])
33 for label, node in self.nodes.iteritems()
    [all...]
  /external/chromium_org/ui/accessibility/
ax_tree_serializer_unittest.cc 66 treedata0_.nodes.resize(3);
67 treedata0_.nodes[0].id = 1;
68 treedata0_.nodes[0].role = AX_ROLE_ROOT_WEB_AREA;
69 treedata0_.nodes[0].child_ids.push_back(2);
70 treedata0_.nodes[0].child_ids.push_back(3);
71 treedata0_.nodes[1].id = 2;
72 treedata0_.nodes[2].id = 3;
75 treedata1_.nodes.resize(4);
76 treedata1_.nodes[0].id = 1;
77 treedata1_.nodes[0].role = AX_ROLE_ROOT_WEB_AREA
    [all...]
ax_tree_update.cc 25 // The challenge here is that we want to indent the nodes being updated
28 // relative indentation of child nodes in this update relative to their
31 for (size_t i = 0; i < nodes.size(); ++i) {
32 int indent = id_to_indentation[nodes[i].id];
34 result += nodes[i].ToString() + "\n";
35 for (size_t j = 0; j < nodes[i].child_ids.size(); ++j)
36 id_to_indentation[nodes[i].child_ids[j]] = indent + 1;
ax_tree_unittest.cc 83 initial_state.nodes.push_back(root);
84 initial_state.nodes.push_back(button);
85 initial_state.nodes.push_back(checkbox);
144 update.nodes.push_back(list);
145 update.nodes.push_back(list_item_2);
146 update.nodes.push_back(list_item_3);
147 update.nodes.push_back(button);
163 initial_state.nodes.push_back(root);
170 update.nodes.resize(1);
171 update.nodes[0].id = 1
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
State.java 10 ArrayList nodes; field in class:State
12 State(@SuppressWarnings("hiding") int state, @SuppressWarnings("hiding") ArrayList nodes)
15 this.nodes = nodes;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
dom_predicates.js 7 * nodes with the unique ancestors of a node. They output true if a
17 * @param {Array.<Node>} nodes An array of nodes to check.
20 cvox.DomPredicates.checkboxPredicate = function(nodes) {
21 for (var i = 0; i < nodes.length; i++) {
22 if ((nodes[i].getAttribute &&
23 nodes[i].getAttribute('role') == 'checkbox') ||
24 (nodes[i].tagName == 'INPUT' && nodes[i].type == 'checkbox')) {
25 return nodes[i]
    [all...]
  /external/chromium_org/extensions/browser/
content_hash_tree_unittest.cc 27 std::vector<std::string> nodes; local
29 EXPECT_EQ(std::string(), ComputeTreeHashRoot(nodes, 16));
33 nodes.push_back(node1);
34 EXPECT_EQ(node1, ComputeTreeHashRoot(nodes, 16));
36 // Two nodes.
38 nodes.push_back(node2);
45 EXPECT_EQ(expected, ComputeTreeHashRoot(nodes, 16));
49 std::vector<std::string> nodes; local
52 nodes.push_back(FakeSignatureWithSeed(i));
61 crypto::SHA256HashString(nodes[0] + nodes[1] + nodes[2])
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NamedNodesCollection.h 44 static PassRefPtrWillBeRawPtr<NodeList> create(const WillBeHeapVector<RefPtrWillBeMember<Element> >& nodes)
46 return adoptRefWillBeNoop(new NamedNodesCollection(nodes));
55 explicit NamedNodesCollection(const WillBeHeapVector<RefPtrWillBeMember<Element> > nodes)
56 : m_nodes(nodes) { }
  /external/chromium_org/content/public/browser/
ax_event_notification_details.cc 10 const std::vector<ui::AXNodeData>& nodes,
15 : nodes(nodes),
ax_event_notification_details.h 20 AXEventNotificationDetails(const std::vector<ui::AXNodeData>& nodes,
28 std::vector<ui::AXNodeData> nodes; member in struct:content::AXEventNotificationDetails
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_ui_utils_unittest.cc 23 std::vector<const BookmarkNode*> nodes; local
25 // This tests that |nodes| contains an URL.
30 nodes.push_back(page1);
31 EXPECT_TRUE(chrome::HasBookmarkURLs(nodes));
33 nodes.clear();
35 // This tests that |nodes| does not contain any URL.
38 nodes.push_back(folder1);
39 EXPECT_FALSE(chrome::HasBookmarkURLs(nodes));
43 EXPECT_TRUE(chrome::HasBookmarkURLs(nodes));
58 EXPECT_FALSE(chrome::HasBookmarkURLs(nodes));
66 std::vector<const BookmarkNode*> nodes; local
    [all...]
bookmark_context_menu_controller_unittest.cc 105 std::vector<const BookmarkNode*> nodes; local
106 nodes.push_back(model_->bookmark_bar_node()->GetChild(0));
108 NULL, NULL, NULL, profile_.get(), NULL, nodes[0]->parent(), nodes);
147 std::vector<const BookmarkNode*> nodes; local
148 nodes.push_back(model_->bookmark_bar_node()->GetChild(0));
150 NULL, NULL, NULL, profile_.get(), NULL, nodes[0]->parent(), nodes);
166 std::vector<const BookmarkNode*> nodes; local
167 nodes.push_back(model_->bookmark_bar_node()->GetChild(0))
186 std::vector<const BookmarkNode*> nodes; local
205 std::vector<const BookmarkNode*> nodes; local
225 std::vector<const BookmarkNode*> nodes; local
258 std::vector<const BookmarkNode*> nodes; local
269 std::vector<const BookmarkNode*> nodes; local
298 std::vector<const BookmarkNode*> nodes; local
316 std::vector<const BookmarkNode*> nodes; local
    [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_expanded_state_tracker.cc 27 void BookmarkExpandedStateTracker::SetExpandedNodes(const Nodes& nodes) {
28 UpdatePrefs(nodes);
31 BookmarkExpandedStateTracker::Nodes
33 Nodes nodes; local
35 return nodes;
38 return nodes;
43 return nodes;
54 nodes.insert(node)
    [all...]
bookmark_utils_unittest.cc 89 std::vector<const BookmarkNode*> nodes; local
92 // No nodes are returned for empty string.
94 GetBookmarksMatchingProperties(model.get(), query, 100, string(), &nodes);
95 EXPECT_TRUE(nodes.empty());
96 nodes.clear();
98 // No nodes are returned for space-only string.
100 GetBookmarksMatchingProperties(model.get(), query, 100, string(), &nodes);
101 EXPECT_TRUE(nodes.empty());
102 nodes.clear();
106 GetBookmarksMatchingProperties(model.get(), query, 100, string(), &nodes);
148 std::vector<const BookmarkNode*> nodes; local
185 std::vector<const BookmarkNode*> nodes; local
222 std::vector<const BookmarkNode*> nodes; local
269 std::vector<const BookmarkNode*> nodes; local
299 std::vector<const BookmarkNode*> nodes; local
329 std::vector<const BookmarkNode*> nodes; local
348 std::vector<const BookmarkNode*> nodes; local
438 std::vector<const BookmarkNode*> nodes; local
    [all...]
bookmark_expanded_state_tracker_unittest.cc 80 BookmarkExpandedStateTracker::Nodes nodes; local
81 nodes.insert(model_->bookmark_bar_node());
82 tracker->SetExpandedNodes(nodes);
83 EXPECT_EQ(nodes, tracker->GetExpandedNodes());
88 nodes.insert(n1);
89 tracker->SetExpandedNodes(nodes);
90 EXPECT_EQ(nodes, tracker->GetExpandedNodes());
92 // Remove the folder, which should remove it from the list of expanded nodes.
94 nodes.erase(n1)
105 BookmarkExpandedStateTracker::Nodes nodes; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeIterator.java 36 /** Return a node stream from a doubly-linked tree whose nodes
39 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
47 // navigation nodes to return during walk and at end
52 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
55 protected FastQueue nodes; field in class:TreeIterator
65 nodes = new FastQueue();
74 nodes.clear();
79 if ( nodes!=null && nodes.size()>0 ) return true
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTopologicalSort.java 53 List nodes = g.sort(); local
54 String result = nodes.toString();
67 List nodes = g.sort(); local
68 String result = nodes.toString();
81 List nodes = g.sort(); local
82 String result = nodes.toString();
95 List nodes = g.sort(); local
96 String result = nodes.toString();
109 List nodes = g.sort(); local
110 String result = nodes.toString()
    [all...]
  /external/chromium_org/third_party/jinja2/
meta.py 12 from jinja2 import nodes namespace
72 for node in ast.find_all((nodes.Extends, nodes.FromImport, nodes.Import,
73 nodes.Include)):
74 if not isinstance(node.template, nodes.Const):
76 if isinstance(node.template, (nodes.Tuple, nodes.List)):
80 if isinstance(template_name, nodes.Const):
96 elif isinstance(node, nodes.Include) and
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeIterator.cs 36 /** Return a node stream from a doubly-linked tree whose nodes
39 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
47 // navigation nodes to return during walk and at end
52 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
55 protected Queue<object> nodes; field in class:Antlr.Runtime.Tree.TreeIterator
65 nodes = new Queue<object>();
95 nodes.Enqueue(eof);
100 if (nodes != null && nodes.Count > 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeIterator.cs 37 /** Return a node stream from a doubly-linked tree whose nodes
40 * Emit navigation nodes (DOWN, UP, and EOF) to let show tree structure.
50 // navigation nodes to return during walk and at end
55 /** If we emit UP/DOWN nodes, we need to spit out multiple nodes per
58 protected Queue<object> nodes; field in class:Antlr.Runtime.Tree.TreeIterator
70 nodes = new Queue<object>();
105 nodes.Enqueue( eof );
112 if ( nodes != null && nodes.Count > 0
    [all...]
  /external/llvm/utils/
DSAextract.py 3 #this is a script to extract given named nodes from a dot file, with
5 # x and y are both nodes specified to be kept.
19 #nodes in the file
35 <output_file> [list of nodes to extract]'
66 #for the node (it will be Node(hex number)) to our set of nodes
96 #check to make sure that both nodes are in the node list
98 nodes = arrowexp.split(buffer) variable
99 nodes[0] = string.strip(nodes[0])
100 nodes[1] = string.strip(nodes[1]
    [all...]
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_context_menu_unittest.cc 126 std::vector<const BookmarkNode*> nodes; local
127 nodes.push_back(model_->bookmark_bar_node()->GetChild(0));
129 NULL, NULL, profile_.get(), NULL, nodes[0]->parent(), nodes, false);
178 std::vector<const BookmarkNode*> nodes; local
179 nodes.push_back(model_->bookmark_bar_node()->GetChild(0));
181 NULL, NULL, profile_.get(), NULL, nodes[0]->parent(), nodes, false);
196 std::vector<const BookmarkNode*> nodes; local
197 nodes.push_back(model_->bookmark_bar_node()->GetChild(0))
215 std::vector<const BookmarkNode*> nodes; local
234 std::vector<const BookmarkNode*> nodes; local
254 std::vector<const BookmarkNode*> nodes; local
272 std::vector<const BookmarkNode*> nodes; local
287 std::vector<const BookmarkNode*> nodes; local
315 std::vector<const BookmarkNode*> nodes; local
348 std::vector<const BookmarkNode*> nodes; local
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
NodeSet.java 12 public NodeSet(Iterator<Node> nodes) {
13 while(nodes.hasNext()) {
14 list.add(nodes.next());
  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 90 /// value can change when linked nodes change, but convergence is very fast
115 // Undecided nodes (Value==0) go on the stack.
169 bool update(const Node nodes[]) {
174 if (nodes[I->second].Value == -1)
176 else if (nodes[I->second].Value == 1)
204 assert(!nodes && "Leaking node array");
205 nodes = new Node[bundles->getNumBundles()];
221 delete[] nodes;
222 nodes = nullptr;
230 nodes[n].clear()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSum.java 49 DTMIterator nodes = m_arg0.asIterator(xctxt, xctxt.getCurrentNode()); local
53 while (DTM.NULL != (pos = nodes.nextNode()))
55 DTM dtm = nodes.getDTM(pos);
61 nodes.detach();

Completed in 423 milliseconds

1 2 3 4 5 6 7 8 91011>>