Home
last modified time | relevance | path

Searched refs:current_node (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/components/url_matcher/
Dsubstring_set_matcher.cc116 uint32 current_node = 0; in Match() local
118 uint32 edge_from_current = tree_[current_node].GetEdge(*i); in Match()
120 current_node != 0) { in Match()
121 current_node = tree_[current_node].failure(); in Match()
122 edge_from_current = tree_[current_node].GetEdge(*i); in Match()
125 current_node = edge_from_current; in Match()
126 matches->insert(tree_[current_node].matches().begin(), in Match()
127 tree_[current_node].matches().end()); in Match()
129 DCHECK_EQ(0u, current_node); in Match()
166 uint32 current_node = 0; in InsertPatternIntoAhoCorasickTree() local
[all …]
/external/chromium_org/third_party/libaddressinput/chromium/
Dtrie.cc31 Trie<T>* current_node = this; in AddDataForKey() local
35 current_node = &current_node->sub_nodes_[key[i]]; in AddDataForKey()
37 current_node->data_list_.insert(data_item); in AddDataForKey()
46 const Trie<T>* current_node = this; in FindDataForKeyPrefix() local
52 current_node->sub_nodes_.find(key_prefix[i]); in FindDataForKeyPrefix()
53 if (sub_node_it == current_node->sub_nodes_.end()) in FindDataForKeyPrefix()
56 current_node = &sub_node_it->second; in FindDataForKeyPrefix()
61 node_queue.push(current_node); in FindDataForKeyPrefix()
/external/chromium_org/chrome/browser/profile_resetter/
Djtl_interpreter.cc88 const base::Value* current_node() const { return stack_.back(); } in current_node() function in __anon8ae4aca00111::ExecutionContext
118 if (!context->current_node()->GetAsDictionary(&dict)) { in Execute()
149 if (context->current_node()->GetAsDictionary(&dict)) { in Execute()
158 } else if (context->current_node()->GetAsList(&list)) { in Execute()
182 const base::Value* current_node = context->current_node(); in Execute() local
185 context->stack()->push_back(current_node); in Execute()
253 if (!context->current_node()->IsType(base::Value::TYPE_BOOLEAN)) in Execute()
255 value.reset(context->current_node()->DeepCopy()); in Execute()
258 if (!context->GetValueHash(*context->current_node(), &hash)) in Execute()
284 if (!context->current_node()->GetAsString(&possibly_invalid_url) || in Execute()
[all …]
/external/chromium_org/net/spdy/
Dspdy_priority_tree.h458 Node* current_node = &all_nodes_[current_node_id]; in GetPriorityList() local
459 const Node* parent_node = FindNode(current_node->parent_id); in GetPriorityList()
460 if (current_node->blocked || !current_node->ready) { in GetPriorityList()
461 if (current_node->total_writeable_child_weights > 0) { in GetPriorityList()
465 current_node->priority = parent_node->priority * in GetPriorityList()
466 (static_cast<float>(current_node->weight) / in GetPriorityList()
469 for (typename List::iterator it = current_node->child_list->begin(); in GetPriorityList()
470 it != current_node->child_list->end(); ++it) { in GetPriorityList()
475 current_node->priority = 0; in GetPriorityList()
479 current_node->priority = parent_node->priority * in GetPriorityList()
[all …]
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dr300_fragprog_emit.c50 unsigned current_node : 2; member
330 if (emit->current_node > 0) { in finish_node()
331 error("Node %i has no TEX instructions", emit->current_node); in finish_node()
337 if (emit->current_node == 0) in finish_node()
348 code->code_addr[emit->current_node] = in finish_node()
368 switch(emit->current_node) { in finish_node()
407 if (emit->current_node == 3) { in begin_tex()
415 emit->current_node++; in begin_tex()
513 code->config |= emit.current_node; /* FIRST_NODE_HAS_TEX set by finish_node */ in r300BuildFragmentProgramHwCode()
537 if (emit.current_node < 3) { in r300BuildFragmentProgramHwCode()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
Dr300_fragprog_emit.c50 unsigned current_node : 2; member
330 if (emit->current_node > 0) { in finish_node()
331 error("Node %i has no TEX instructions", emit->current_node); in finish_node()
337 if (emit->current_node == 0) in finish_node()
348 code->code_addr[emit->current_node] = in finish_node()
368 switch(emit->current_node) { in finish_node()
407 if (emit->current_node == 3) { in begin_tex()
415 emit->current_node++; in begin_tex()
513 code->config |= emit.current_node; /* FIRST_NODE_HAS_TEX set by finish_node */ in r300BuildFragmentProgramHwCode()
537 if (emit.current_node < 3) { in r300BuildFragmentProgramHwCode()
[all …]
/external/chromium_org/tools/grit/grit/tool/
Dtransl2tc.py153 current_node = current_grd.GetNodeById(node_id)
154 if current_node:
155 assert len(source_cliques) == len(current_node.GetCliques()) == 1
158 current_msg = current_node.GetCliques()[0].GetMessage()
/external/chromium_org/tools/cr/cr/
Dvisitor.py69 def current_node(self): member in Visitor
128 if self.current_node.export is False:
135 if (self.current_node.export is None) and key.startswith('_'):
Dconfig.py156 if not visitor.current_node.literal:
/external/chromium_org/chrome/browser/media_galleries/linux/
Dmtp_device_delegate_impl_linux.cc889 const MTPFileNode* current_node = root_node_.get(); in NextUncachedPathComponent() local
891 current_node = current_node->GetChild(device_relpath_components[i]); in NextUncachedPathComponent()
892 if (!current_node) { in NextUncachedPathComponent()
934 const MTPFileNode* current_node = root_node_.get(); in CachedPathToId() local
936 current_node = current_node->GetChild(device_relpath_components[i]); in CachedPathToId()
937 if (!current_node) in CachedPathToId()
940 *id = current_node->file_id(); in CachedPathToId()
/external/e2fsprogs/debugfs/
Dextent_cmds.ct8 current_node, current;
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
Dtree.jquery.js2495 var current_node, key, moveDown, moveLeft, moveRight, moveUp, selectNode,
2497 current_node = this.tree_widget.getSelectedNode();
2510 return selectNode(_this.getNextNode(current_node));
2513 return selectNode(_this.getPreviousNode(current_node));
2516 if (current_node.hasChildren() && !current_node.is_open) {
2517 _this.tree_widget.openNode(current_node);
2524 if (current_node.hasChildren() && current_node.is_open) {
2525 _this.tree_widget.closeNode(current_node);
2531 if (!current_node) {
/external/chromium_org/content/renderer/
Drender_frame_impl.cc1163 WebNode current_node = context_menu_node_.isNull() ? in OnCopy() local
1165 frame_->executeCommand(WebString::fromUTF8("Copy"), current_node); in OnCopy()