Home | History | Annotate | Download | only in tools

Lines Matching full:record

481     var record = [];
528 records.push(record);
530 record = [];
537 found = match_regexp(line, lineNo, record, ACTIVE_LINE_SPAN, "debugShowActiveSpans" +
539 ) || match_regexp(line, lineNo, record, ACTIVE_QUAD_SPAN, "debugShowActiveSpans" +
541 ) || match_regexp(line, lineNo, record, ACTIVE_CONIC_SPAN, "debugShowActiveSpans" +
543 ) || match_regexp(line, lineNo, record, ACTIVE_CUBIC_SPAN, "debugShowActiveSpans" +
545 ) || match_regexp(line, lineNo, record, ACTIVE_LINE_SPAN, "debugShowActiveSpans" +
547 ) || match_regexp(line, lineNo, record, ACTIVE_QUAD_SPAN, "debugShowActiveSpans" +
549 ) || match_regexp(line, lineNo, record, ACTIVE_CONIC_SPAN, "debugShowActiveSpans" +
551 ) || match_regexp(line, lineNo, record, ACTIVE_CUBIC_SPAN, "debugShowActiveSpans" +
556 found = match_regexp(line, lineNo, record, ACTIVE_OP, "activeOp" +
561 if (match_regexp(line, lineNo, record, ADD_MOVETO, "PATH.moveTo(P_VAL);")) {
562 moveX = record[1][0];
563 moveY = record[1][1];
565 } else if (match_regexp(line, lineNo, record, ADD_LINETO, "PATH.lineTo(P_VAL);")) {
566 record[1].unshift(moveY);
567 record[1].unshift(moveX);
568 moveX = record[1][2];
569 moveY = record[1][3];
571 } else if (match_regexp(line, lineNo, record, ADD_QUADTO, "PATH.quadTo(P_VAL, P_VAL);")) {
572 record[1].unshift(moveY);
573 record[1].unshift(moveX);
574 moveX = record[1][4];
575 moveY = record[1][5];
577 } else if (match_regexp(line, lineNo, record, ADD_CONICTO, "PATH.conicTo(P_VAL, P_VAL, T_VAL);")) {
578 record[1].unshift(moveY);
579 record[1].unshift(moveX);
580 moveX = record[1][4];
581 moveY = record[1][5];
583 } else if (match_regexp(line, lineNo, record, ADD_CUBICTO, "PATH.cubicTo(P_VAL, P_VAL, P_VAL);")) {
584 record[1].unshift(moveY);
585 record[1].unshift(moveX);
586 moveX = record[1][6];
587 moveY = record[1][7];
589 } else if (match_regexp(line, lineNo, record, ADD_FILL, "PATH.setFillType(FILL_TYPE);")) {
592 found = match_regexp(line, lineNo, record, ADD_CLOSE, "PATH.close();");
596 found = match_regexp(line, lineNo, record, PATH_LINE, "afterPart LINE_VAL")
597 || match_regexp(line, lineNo, record, PATH_QUAD, "afterPart QUAD_VAL")
598 || match_regexp(line, lineNo, record, PATH_CONIC, "afterPart CONIC_VAL")
599 || match_regexp(line, lineNo, record, PATH_CUBIC, "afterPart CUBIC_VAL")
602 found = match_regexp(line, lineNo, record, PATH_LINE, "aligned=IDX LINE_VAL"
603 ) || match_regexp(line, lineNo, record, PATH_QUAD, "aligned=IDX QUAD_VAL"
604 ) || match_regexp(line, lineNo, record, PATH_CONIC, "aligned=IDX CONIC_VAL"
605 ) || match_regexp(line, lineNo, record, PATH_CUBIC, "aligned=IDX CUBIC_VAL"
609 found = match_regexp(line, lineNo, record, ANGLE_AFTER, "after " +
616 found = match_regexp(line, lineNo, record, COIN_MAIN_SPAN, "debugShowCoincidence" +
618 ) || match_regexp(line, lineNo, record, COIN_OPP_SPAN, "debugShowCoincidence" +
624 || match_regexp(line, lineNo, record, COMPUTED_SET_1, "computed quadratics set 1"
625 ) || match_regexp(line, lineNo, record, COMPUTED_SET_2, "computed quadratics set 2"
626 ) || match_regexp(line, lineNo, record, PATH_QUAD, " QUAD_VAL,"
627 ) || match_regexp(line, lineNo, record, PATH_CONIC, " CONIC_VAL,"
628 ) || match_regexp(line, lineNo, record, PATH_CUBIC, " CUBIC_VAL,"
632 found = match_regexp(line, lineNo, record, PATH_LINE, "seg=IDX LINE_VAL"
633 ) || match_regexp(line, lineNo, record, PATH_QUAD, "seg=IDX QUAD_VAL"
634 ) || match_regexp(line, lineNo, record, PATH_CONIC, "seg=IDX CONIC_VAL"
635 ) || match_regexp(line, lineNo, record, PATH_CUBIC, "seg=IDX CUBIC_VAL"
639 found = match_regexp(line, lineNo, record, PATH_LINE, "((SkOpSegment*) PTR_VAL) [IDX] {LINE_VAL}"
640 ) || match_regexp(line, lineNo, record, PATH_QUAD, "((SkOpSegment*) PTR_VAL) [IDX] {QUAD_VAL}"
641 ) || match_regexp(line, lineNo, record, PATH_CONIC, "((SkOpSegment*) PTR_VAL) [IDX] {CONIC_VAL}"
642 ) || match_regexp(line, lineNo, record, PATH_CUBIC, "((SkOpSegment*) PTR_VAL) [IDX] {CUBIC_VAL}"
646 found = match_regexp(line, lineNo, record, INTERSECT_LINE, "debugShowLineIntersection" +
648 ) || match_regexp(line, lineNo, record, INTERSECT_LINE_2, "debugShowLineIntersection" +
650 ) || match_regexp(line, lineNo, record, INTERSECT_LINE_NO, "debugShowLineIntersection" +
652 ) || match_regexp(line, lineNo, record, INTERSECT_QUAD_LINE, "debugShowQuadLineIntersection" +
654 ) || match_regexp(line, lineNo, record, INTERSECT_QUAD_LINE_2, "debugShowQuadLineIntersection" +
656 ) || match_regexp(line, lineNo, record, INTERSECT_QUAD_LINE_NO, "debugShowQuadLineIntersection" +
658 ) || match_regexp(line, lineNo, record, INTERSECT_QUAD, "debugShowQuadIntersection" +
660 ) || match_regexp(line, lineNo, record, INTERSECT_QUAD_2, "debugShowQuadIntersection" +
662 ) || match_regexp(line, lineNo, record, INTERSECT_QUAD_NO, "debugShowQuadIntersection" +
664 ) || match_regexp(line, lineNo, record, INTERSECT_CONIC_LINE, "debugShowConicLineIntersection" +
666 ) || match_regexp(line, lineNo, record, INTERSECT_CONIC_LINE_2, "debugShowConicLineIntersection" +
668 ) || match_regexp(line, lineNo, record, INTERSECT_CONIC_LINE_NO, "debugShowConicLineIntersection" +
670 ) || match_regexp(line, lineNo, record, INTERSECT_CONIC, "debugShowConicIntersection" +
672 ) || match_regexp(line, lineNo, record, INTERSECT_CONIC_2, "debugShowConicIntersection" +
674 ) || match_regexp(line, lineNo, record, INTERSECT_CONIC_NO, "debugShowConicIntersection" +
676 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_LINE, "debugShowCubicLineIntersection" +
678 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_LINE_2, "debugShowCubicLineIntersection" +
680 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_LINE_3, "debugShowCubicLineIntersection" +
682 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_LINE_NO, "debugShowCubicLineIntersection" +
684 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_QUAD, "debugShowCubicQuadIntersection" +
686 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_QUAD_2, "debugShowCubicQuadIntersection" +
688 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_QUAD_3, "debugShowCubicQuadIntersection" +
690 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_QUAD_4, "debugShowCubicQuadIntersection" +
692 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_QUAD_NO, "debugShowCubicQuadIntersection" +
694 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC, "debugShowCubicIntersection" +
696 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_2, "debugShowCubicIntersection" +
698 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_3, "debugShowCubicIntersection" +
700 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_4, "debugShowCubicIntersection" +
702 ) || match_regexp(line, lineNo, record, INTERSECT_CUBIC_NO, "debugShowCubicIntersection" +
704 ) || match_regexp(line, lineNo, record, INTERSECT_SELF_CUBIC, "debugShowCubicIntersection" +
706 ) || match_regexp(line, lineNo, record, INTERSECT_SELF_CUBIC_NO, "debugShowCubicIntersection" +
718 found = match_regexp(line, lineNo, record, SORT_UNARY, "debugOne" +
720 ) || match_regexp(line, lineNo, record, SORT_BINARY, "debugOne" +
722 ) || match_regexp(line, lineNo, record, SORT_UNARY, "dumpOne" +
724 ) || match_regexp(line, lineNo, record, SORT_BINARY, "dumpOne" +
728 record[1].push(hasDone);
729 record[1].push(hasUnorderable);
730 record[1].push(hasSmall);
731 record[1].push(hasTiny);
732 record[1].push(hasOperand);
733 record[1].push(hasStop);
737 found = match_regexp(line, lineNo, record, ACTIVE_OP, "findTop" +
739 ) || match_regexp(line, lineNo, record, ACTIVE_OP, "findTop" +
741 ) || match_regexp(line, lineNo, record, ACTIVE_OP, "findTop" +
746 found = match_regexp(line, lineNo, record, MARK_LINE, "markWinding" +
748 ) || match_regexp(line, lineNo, record, MARK_QUAD, "markWinding" +
750 ) || match_regexp(line, lineNo, record, MARK_CONIC, "markWinding" +
752 ) || match_regexp(line, lineNo, record, MARK_CUBIC, "markWinding" +
754 ) || match_regexp(line, lineNo, record, MARK_DONE_LINE, "markDone" +
756 ) || match_regexp(line, lineNo, record, MARK_DONE_QUAD, "markDone" +
758 ) || match_regexp(line, lineNo, record, MARK_DONE_CONIC, "markDone" +
760 ) || match_regexp(line, lineNo, record, MARK_DONE_CUBIC, "markDone" +
762 ) || match_regexp(line, lineNo, record, MARK_SIMPLE_LINE, "markWinding" +
764 ) || match_regexp(line, lineNo, record, MARK_SIMPLE_QUAD, "markWinding" +
766 ) || match_regexp(line, lineNo, record, MARK_SIMPLE_CONIC, "markWinding" +
768 ) || match_regexp(line, lineNo, record, MARK_SIMPLE_CUBIC, "markWinding" +
770 ) || match_regexp(line, lineNo, record, MARK_ANGLE_LAST, "markAngle" +
772 ) || match_regexp(line, lineNo, record, MARK_ANGLE_LAST, "markAngle" +
781 found = match_regexp(line, lineNo, record, OP_DIFFERENCE, "op diff"
782 ) || match_regexp(line, lineNo, record, OP_INTERSECT, "op intersect"
783 ) || match_regexp(line, lineNo, record, OP_INTERSECT, "op sect"
784 ) || match_regexp(line, lineNo, record, OP_UNION, "op union"
785 ) || match_regexp(line, lineNo, record, OP_XOR, "op xor"
799 records.push(record);