Home | History | Annotate | Download | only in flex-2.5.4a

Lines Matching full:case

97 /* all_lower - true if a string is all lower-case */
113 /* all_upper - true if a string is all upper-case */
180 /* clower - replace upper-case letter to lower-case */
535 case 'b': return '\b';
536 case 'f': return '\f';
537 case 'n': return '\n';
538 case 'r': return '\r';
539 case 't': return '\t';
542 case 'a': return '\a';
543 case 'v': return '\v';
545 case 'a': return '\007';
546 case 'v': return '\013';
549 case '0':
550 case '1':
551 case '2':
552 case '3':
553 case '4':
554 case '5':
555 case '6':
556 case '7':
578 case 'x':
722 case '\b': return "\\b";
723 case '\f': return "\\f";
724 case '\n': return "\\n";
725 case '\r': return "\\r";
726 case '\t': return "\\t";
729 case '\a': return "\\a";
730 case '\v': return "\\v";
794 case '%':
797 case '+':
801 case '-':
805 case '*':