reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
646 if (*I == '{') { 648 Start = ++I; 649 while (I != End && *I != '}') 649 while (I != End && *I != '}') 650 ++I; 651 Next = I; 657 while (I != End && 658 ((*I >= 'a' && *I <= 'z') || (*I >= 'A' && *I <= 'Z') || 658 ((*I >= 'a' && *I <= 'z') || (*I >= 'A' && *I <= 'Z') || 658 ((*I >= 'a' && *I <= 'z') || (*I >= 'A' && *I <= 'Z') || 658 ((*I >= 'a' && *I <= 'z') || (*I >= 'A' && *I <= 'Z') || 659 (*I >= '0' && *I <= '9') || *I == '_')) 659 (*I >= '0' && *I <= '9') || *I == '_')) 659 (*I >= '0' && *I <= '9') || *I == '_')) 660 ++I; 661 Next = I; 664 return std::make_pair(StringRef(Start, I - Start), Next);