Lines Matching refs:Slash
1321 // If we have a slash, look for an escaped newline.
1325 Slash:
1329 // See if we have optional whitespace characters between the slash and
1347 // Otherwise, this is not an escaped newline, just return the slash.
1361 if (C == '\\') goto Slash;
1379 // If we have a slash, look for an escaped newline.
1383 Slash:
1397 // Otherwise, this is not an escaped newline, just return the slash.
1408 if (C == '\\') goto Slash;
1537 {U'\u2215', '/'}, // DIVISION SLASH
2098 // Completion only applies to the filename, after the last slash.
2101 auto Slash = PartialPath.find_last_of(SlashChars);
2103 (Slash == StringRef::npos) ? "" : PartialPath.take_front(Slash);
2105 (Slash == StringRef::npos) ? PathStart : PathStart + Slash + 1;
2109 // We should replace the characters up to the closing quote or closest slash,
2459 // between the slash and newline.
2466 // If we have a slash, we know this is an escaped newline.
2470 // It isn't a slash, is it the ?? / trigraph?
2546 // then this slash does not end the block comment, it is part of it.
2569 // Adjust the pointer to point directly after the first slash. It's
3627 // "foo". Check to see if the character after the second slash is a '*'.
3662 Kind = tok::slash;