reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1052 assert(isVerticalWhitespace(Str[0])); 1053 if (Str - 1 < BufferStart) 1056 if ((Str[0] == '\n' && Str[-1] == '\r') || 1056 if ((Str[0] == '\n' && Str[-1] == '\r') || 1057 (Str[0] == '\r' && Str[-1] == '\n')) { 1057 (Str[0] == '\r' && Str[-1] == '\n')) { 1058 if (Str - 2 < BufferStart) 1060 --Str; 1062 --Str; 1065 while (Str > BufferStart && isHorizontalWhitespace(*Str)) 1065 while (Str > BufferStart && isHorizontalWhitespace(*Str)) 1066 --Str; 1068 return *Str == '\\';