Home | History | Annotate | Download | only in src

Lines Matching full:labels

150   ZoneStringList* labels = node->target()->labels();
151 if (labels != NULL) {
153 ASSERT(labels->length() > 0); // guaranteed to have at least one entry
154 PrintLiteral(labels->at(0), false); // any label from the list is fine
162 ZoneStringList* labels = node->target()->labels();
163 if (labels != NULL) {
165 ASSERT(labels->length() > 0); // guaranteed to have at least one entry
166 PrintLiteral(labels->at(0), false); // any label from the list is fine
188 PrintLabels(node->labels());
200 PrintLabels(node->labels());
210 PrintLabels(node->labels());
219 PrintLabels(node->labels());
239 PrintLabels(node->labels());
511 void PrettyPrinter::PrintLabels(ZoneStringList* labels) {
512 if (labels != NULL) {
513 for (int i = 0; i < labels->length(); i++) {
514 PrintLiteral(labels->at(i), false);
681 void AstPrinter::PrintLabelsIndented(const char* info, ZoneStringList* labels) {
682 if (labels != NULL && labels->length() > 0) {
683 LABELS" : info);
685 PrintLabels(labels);
845 PrintLabelsIndented("CONTINUE", node->target()->labels());
850 PrintLabelsIndented("BREAK", node->target()->labels());
868 PrintLabelsIndented(NULL, node->labels());
878 PrintLabelsIndented(NULL, node->labels());
886 PrintLabelsIndented(NULL, node->labels());
894 PrintLabelsIndented(NULL, node->labels());