Searched refs:old_node (Results 1 - 7 of 7) sorted by relevance
/third_party/node/deps/v8/src/compiler/ |
H A D | node-observer.cc | 34 const Node* old_node, in OnNodeChanged() 36 const auto it = observations_.find(old_node->id()); in OnNodeChanged() 49 observations_.erase(old_node->id()); in OnNodeChanged() 52 if (old_node != new_node) { in OnNodeChanged() 53 observations_.erase(old_node->id()); in OnNodeChanged() 33 OnNodeChanged(const char* reducer_name, const Node* old_node, const Node* new_node) OnNodeChanged() argument
|
H A D | node-observer.h | 102 void OnNodeChanged(const char* reducer_name, const Node* old_node,
|
/third_party/node/deps/v8/src/utils/ |
H A D | locked-queue-inl.h | 32 Node* old_node = nullptr; in ~LockedQueue() local 35 old_node = cur_node; in ~LockedQueue() 37 delete old_node; in ~LockedQueue()
|
/third_party/node/deps/v8/src/execution/ |
H A D | futex-emulation.cc | 688 auto old_node = node; in Wake() local 690 if (old_node->IsAsync()) { in Wake() 691 NotifyAsyncWaiter(old_node); in Wake() 694 old_node->cond_.NotifyOne(); in Wake() 731 auto old_node = node; in Wake() local 733 g_wait_list.Pointer()->RemoveNode(old_node); in Wake() 735 old_node->timeout_task_id_); in Wake() 736 delete old_node; in Wake()
|
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | api.js | [all...] |
/third_party/python/Lib/ |
H A D | ast.py | 180 def copy_location(new_node, old_node): 183 attributes) from *old_node* to *new_node* if possible, and return *new_node*. 186 if attr in old_node._attributes and attr in new_node._attributes: 187 value = getattr(old_node, attr, None) 191 hasattr(old_node, attr) and attr.startswith("end_")
|
/third_party/python/Lib/test/ |
H A D | test_compile.py | 1209 old_node = tree.body[0] 1221 ast.copy_location(new_node, old_node)
|
Completed in 27 milliseconds