Lines Matching refs:ToNode
29 RegExpNode* RegExpAtom::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpAtom
38 RegExpNode* RegExpText::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpText
407 RegExpNode* RegExpCharacterClass::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpCharacterClass
719 RegExpNode* RegExpDisjunction::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpDisjunction
728 return alternatives->at(0)->ToNode(compiler, on_success); in ToNode()
738 alternatives->at(i)->ToNode(compiler, on_success)); in ToNode()
744 RegExpNode* RegExpQuantifier::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpQuantifier
746 return ToNode(min(), max(), is_greedy(), body(), compiler, on_success); in ToNode()
787 RegExpNode* RegExpAssertion::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpAssertion
847 RegExpNode* RegExpBackReference::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpBackReference
855 RegExpNode* RegExpEmpty::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpEmpty
899 RegExpNode* RegExpLookaround::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpLookaround
915 RegExpNode* match = body_->ToNode(compiler, builder.on_match_success()); in ToNode()
921 RegExpNode* RegExpCapture::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpCapture
923 return ToNode(body(), index(), compiler, on_success); in ToNode()
926 RegExpNode* RegExpCapture::ToNode(RegExpTree* body, int index, in ToNode() function in v8::internal::RegExpCapture
934 RegExpNode* body_node = body->ToNode(compiler, store_end); in ToNode()
1028 RegExpNode* RegExpAlternative::ToNode(RegExpCompiler* compiler, in ToNode() function in v8::internal::RegExpAlternative
1037 current = children->at(i)->ToNode(compiler, current); in ToNode()
1041 current = children->at(i)->ToNode(compiler, current); in ToNode()
1456 RegExpNode* RegExpQuantifier::ToNode(int min, int max, bool is_greedy, in ToNode() function in v8::internal::RegExpQuantifier
1501 ToNode(0, new_max, is_greedy, body, compiler, on_success, true); in ToNode()
1506 answer = body->ToNode(compiler, answer); in ToNode()
1521 GuardedAlternative(body->ToNode(compiler, answer))); in ToNode()
1526 GuardedAlternative(body->ToNode(compiler, answer))); in ToNode()
1555 RegExpNode* body_node = body->ToNode(compiler, loop_return); in ToNode()