HomeSort by relevance Sort by last modified time
    Searched refs:current_node (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/libaddressinput/chromium/
trie.cc 31 Trie<T>* current_node = this; local
35 current_node = &current_node->sub_nodes_[key[i]];
37 current_node->data_list_.insert(data_item);
46 const Trie<T>* current_node = this; local
52 current_node->sub_nodes_.find(key_prefix[i]);
53 if (sub_node_it == current_node->sub_nodes_.end())
56 current_node = &sub_node_it->second;
61 node_queue.push(current_node);
  /external/chromium_org/components/url_matcher/
substring_set_matcher.cc 116 uint32 current_node = 0; local
118 uint32 edge_from_current = tree_[current_node].GetEdge(*i);
120 current_node != 0) {
121 current_node = tree_[current_node].failure();
122 edge_from_current = tree_[current_node].GetEdge(*i);
125 current_node = edge_from_current;
126 matches->insert(tree_[current_node].matches().begin(),
127 tree_[current_node].matches().end());
129 DCHECK_EQ(0u, current_node);
166 uint32 current_node = 0; local
206 AhoCorasickNode& current_node = tree_[queue.front()]; local
    [all...]
  /external/chromium_org/net/spdy/
spdy_priority_tree.h 458 Node* current_node = &all_nodes_[current_node_id]; local
459 const Node* parent_node = FindNode(current_node->parent_id);
460 if (current_node->blocked || !current_node->ready) {
461 if (current_node->total_writeable_child_weights > 0) {
465 current_node->priority = parent_node->priority *
466 (static_cast<float>(current_node->weight) /
469 for (typename List::iterator it = current_node->child_list->begin();
470 it != current_node->child_list->end(); ++it) {
475 current_node->priority = 0
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
jtl_interpreter.cc 88 const base::Value* current_node() const { return stack_.back(); } function in class:__anon9128::ExecutionContext
118 if (!context->current_node()->GetAsDictionary(&dict)) {
149 if (context->current_node()->GetAsDictionary(&dict)) {
158 } else if (context->current_node()->GetAsList(&list)) {
182 const base::Value* current_node = context->current_node(); variable
185 context->stack()->push_back(current_node); variable
253 if (!context->current_node()->IsType(base::Value::TYPE_BOOLEAN))
255 value.reset(context->current_node()->DeepCopy());
258 if (!context->GetValueHash(*context->current_node(), &hash)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 50 unsigned current_node : 2; member in struct:r300_emit_state
330 if (emit->current_node > 0) {
331 error("Node %i has no TEX instructions", emit->current_node);
337 if (emit->current_node == 0)
348 code->code_addr[emit->current_node] =
368 switch(emit->current_node) {
407 if (emit->current_node == 3) {
415 emit->current_node++;
513 code->config |= emit.current_node; /* FIRST_NODE_HAS_TEX set by finish_node */
537 if (emit.current_node < 3)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 50 unsigned current_node : 2; member in struct:r300_emit_state
330 if (emit->current_node > 0) {
331 error("Node %i has no TEX instructions", emit->current_node);
337 if (emit->current_node == 0)
348 code->code_addr[emit->current_node] =
368 switch(emit->current_node) {
407 if (emit->current_node == 3) {
415 emit->current_node++;
513 code->config |= emit.current_node; /* FIRST_NODE_HAS_TEX set by finish_node */
537 if (emit.current_node < 3)
    [all...]
  /external/e2fsprogs/debugfs/
extent_cmds.ct 8 current_node, current;
  /external/chromium_org/tools/grit/grit/tool/
transl2tc.py 153 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/
visitor.py 69 def current_node(self): member in class:Visitor
128 if self.current_node.export is False:
135 if (self.current_node.export is None) and key.startswith('_'):
config.py 156 if not visitor.current_node.literal:
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_delegate_impl_linux.cc 889 const MTPFileNode* current_node = root_node_.get(); local
934 const MTPFileNode* current_node = root_node_.get(); local
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/
tree.jquery.js     [all...]
  /external/chromium_org/content/renderer/
render_frame_impl.cc 1163 WebNode current_node = context_menu_node_.isNull() ? local
    [all...]

Completed in 709 milliseconds