Lines Matching defs:node
24 // All the Accept member functions for each syntax tree node type.
33 // Implementation of other node functionality.
748 RegExpTree* node = nodes->at(i);
749 if (node->IsAnchoredAtStart()) { return true; }
750 if (node->max_match() > 0) { return false; }
759 RegExpTree* node = nodes->at(i);
760 if (node->IsAnchoredAtEnd()) { return true; }
761 if (node->max_match() > 0) { return false; }
1003 RegExpTree* node = nodes->at(i);
1004 int node_min_match = node->min_match();
1006 int node_max_match = node->max_match();
1026 void AstConstructionVisitor::Visit##NodeType(NodeType* node) { \
1030 void AstConstructionVisitor::Visit##NodeType(NodeType* node) { \
1032 add_slot_node(node); \
1035 void AstConstructionVisitor::Visit##NodeType(NodeType* node) { \
1042 void AstConstructionVisitor::Visit##NodeType(NodeType* node) { \
1047 void AstConstructionVisitor::Visit##NodeType(NodeType* node) { \
1049 add_slot_node(node); \
1053 void AstConstructionVisitor::Visit##NodeType(NodeType* node) { \
1089 // if (node->var()->IsLookupSlot()) add_flag(kDontInline);
1090 // But node->var() is usually not bound yet at VariableProxy creation time, and
1118 void AstConstructionVisitor::VisitCallRuntime(CallRuntime* node) {
1120 if (node->is_jsruntime()) {
1124 } else if (node->function()->intrinsic_type == Runtime::INLINE &&
1125 (node->name()->IsOneByteEqualTo(
1127 node->name()->IsOneByteEqualTo(STATIC_ASCII_VECTOR("_Arguments")))) {