Lines Matching defs:L_

99 #  define L_(Str)	  L##Str
123 # define L_(Str) Str
187 # define L_(Str) Str
486 argpos = (UCHAR_T) *f++ - L_('0');
488 argpos = argpos * 10 + ((UCHAR_T) *f++ - L_('0'));
489 if (*f == L_('$'))
503 while (*f == L_('*') || *f == L_('\'') || *f == L_('I'))
506 case L_('*'):
509 case L_('\''):
512 case L_('I'):
526 width += (UCHAR_T) *f++ - L_('0');
535 case L_('h'):
537 if (*f == L_('h'))
545 case L_('l'):
546 if (*f == L_('l'))
556 case L_('q'):
557 case L_('L'):
561 case L_('a'):
564 if (*f != L_('s') && *f != L_('S') && *f != L_('['))
573 case L_('z'):
579 case L_('j'):
585 case L_('t'):
598 if (*f == L_('\0'))
603 if (skip_space || (fc != L_('[') && fc != L_('c')
604 && fc != L_('C') && fc != L_('n')))
620 case L_('%'): /* Must match a literal '%'. */
631 case L_('n'): /* Answer number of assignments done. */
679 case L_('c'): /* Match characters. */
732 case L_('C'):
805 case L_('s'): /* Read a string. */
991 case L_('S'):
1151 case L_('x'): /* Hexadecimal integer. */
1152 case L_('X'): /* Ditto. */
1157 case L_('o'): /* Octal integer. */
1162 case L_('u'): /* Unsigned decimal integer. */
1167 case L_('d'): /* Signed decimal integer. */
1172 case L_('i'): /* Generic number. */
1182 if (c == L_('-') || c == L_('+'))
1191 if (width != 0 && c == L_('0'))
1199 if (width != 0 && TOLOWER (c) == L_('x'))
1367 c = L_('0') + n;
1438 else if (!ISDIGIT (c) || c - L_('0') >= base)
1502 || (wpsize == 1 && (wp[0] == L_('+') || wp[0] == L_('-'))))
1508 && TOLOWER (inchar ()) == L_('n')
1509 && TOLOWER (inchar ()) == L_('i')
1510 && TOLOWER (inchar ()) == L_('l')
1511 && inchar () == L_(')'))
1514 ADDW (L_('0'));
1529 ADDW (L_('\0'));
1580 case L_('e'): /* Floating-point numbers. */
1581 case L_('E'):
1582 case L_('f'):
1583 case L_('F'):
1584 case L_('g'):
1585 case L_('G'):
1586 case L_('a'):
1587 case L_('A'):
1593 if (c == L_('-') || c == L_('+'))
1595 negative = c == L_('-');
1599 if (! ISDIGIT (c) && TOLOWER (c) != L_('i')
1600 && TOLOWER (c) != L_('n'))
1653 if (TOLOWER (c) == L_('n'))
1657 if (width == 0 || inchar () == EOF || TOLOWER (c) != L_('a'))
1662 if (width == 0 || inchar () == EOF || TOLOWER (c) != L_('n'))
1670 else if (TOLOWER (c) == L_('i'))
1674 if (width == 0 || inchar () == EOF || TOLOWER (c) != L_('n'))
1679 if (width == 0 || inchar () == EOF || TOLOWER (c) != L_('f'))
1687 if (TOLOWER (c) == L_('i'))
1694 || TOLOWER (c) != L_('n'))
1700 || TOLOWER (c) != L_('i'))
1706 || TOLOWER (c) != L_('t'))
1712 || TOLOWER (c) != L_('y'))
1726 exp_char = L_('e');
1727 if (width != 0 && c == L_('0'))
1733 if (width != 0 && TOLOWER (c) == L_('x'))
1739 exp_char = L_('p');
1757 && (c == L_('-') || c == L_('+')))
1866 ADDW (L_('\0'));
1893 case L_('['): /* Character class. */
1899 if (*f == L_('^'))
2395 case L_('p'): /* Generic pointer. */