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

1 2

  /external/c-ares/
ares_llist.c 45 /* Inserts new_node before old_node */
47 struct list_node* old_node) {
48 new_node->next = old_node;
49 new_node->prev = old_node->prev;
50 old_node->prev->next = new_node;
51 old_node->prev = new_node;
ares_llist.h 35 struct list_node* old_node);
  /external/v8/src/
locked-queue-inl.h 33 Node* old_node = nullptr; local
36 old_node = cur_node;
38 delete old_node;
  /external/v8/src/debug/
liveedit.js 94 function HarvestTodo(old_node) {
111 if (old_node.status == FunctionStatus.DAMAGED) {
112 CollectDamaged(old_node);
115 if (old_node.status == FunctionStatus.UNCHANGED) {
116 update_positions_list.push(old_node);
117 } else if (old_node.status == FunctionStatus.SOURCE_CHANGED) {
118 update_positions_list.push(old_node);
119 } else if (old_node.status == FunctionStatus.CHANGED) {
120 replace_code_list.push(old_node);
121 CollectNew(old_node.unmatched_new_nodes)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ast.py 113 def copy_location(new_node, old_node):
116 *old_node* to *new_node* if possible, and return *new_node*.
119 if attr in old_node._attributes and attr in new_node._attributes \
120 and hasattr(old_node, attr):
121 setattr(new_node, attr, getattr(old_node, attr))
  /prebuilts/gdb/linux-x86/lib/python2.7/
ast.py 113 def copy_location(new_node, old_node):
116 *old_node* to *new_node* if possible, and return *new_node*.
119 if attr in old_node._attributes and attr in new_node._attributes \
120 and hasattr(old_node, attr):
121 setattr(new_node, attr, getattr(old_node, attr))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 113 def copy_location(new_node, old_node):
116 *old_node* to *new_node* if possible, and return *new_node*.
119 if attr in old_node._attributes and attr in new_node._attributes \
120 and hasattr(old_node, attr):
121 setattr(new_node, attr, getattr(old_node, attr))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 113 def copy_location(new_node, old_node):
116 *old_node* to *new_node* if possible, and return *new_node*.
119 if attr in old_node._attributes and attr in new_node._attributes \
120 and hasattr(old_node, attr):
121 setattr(new_node, attr, getattr(old_node, attr))
  /external/libchrome/sandbox/linux/bpf_dsl/
policy_compiler.cc 229 CodeGen::Node old_node = local
242 if (node != old_node) {
243 ranges->push_back(Range{old_sysnum, old_node});
245 old_node = node;
248 ranges->push_back(Range{old_sysnum, old_node});
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/builder/
_html5lib.py 209 old_node = self.element.contents[index-1]
210 new_str = self.soup.new_string(old_node + node.element)
211 old_node.replace_with(new_str)
  /external/selinux/libsemanage/src/
pywrap-test.py     [all...]
  /external/v8/test/mjsunit/asm/embenchen/
copy.js 2818 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
corrections.js 2818 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
primes.js 2832 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
fannkuch.js 2957 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
fasta.js 3201 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
memops.js 2926 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
zlib.js 2927 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
  /external/v8/test/mjsunit/wasm/embenchen/
copy.js 2821 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
corrections.js 2821 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
primes.js 2835 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
fannkuch.js 2960 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
fasta.js 3204 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
memops.js 2929 var old_node = FS.lookupNode(old_dir, old_name); variable
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cgraph.h 678 struct cgraph_node * cgraph_create_virtual_clone (struct cgraph_node *old_node,
    [all...]

Completed in 766 milliseconds

1 2