Home | History | Annotate | Download | only in Lex

Lines Matching refs:Prefix

239     // Munch the encoding-prefix and opening double-quote.
1847 // Save prefix and move CurPtr past it
1848 const char *Prefix = CurPtr;
1849 CurPtr += PrefixLen + 1; // skip over prefix and '('
1855 // Check for prefix match and closing quote.
1856 if (strncmp(CurPtr, Prefix, PrefixLen) == 0 && CurPtr[PrefixLen] == '"') {
1857 CurPtr += PrefixLen + 1; // skip over prefix and '"'
1863 << StringRef(Prefix, PrefixLen);
2198 Spelling[1] = '*'; // Change prefix to "/*".