reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
  393       if (*Last == '"' || *Last == '\'' ||
  393       if (*Last == '"' || *Last == '\'' ||
  394           (*Last == '<' && top() == pp_include)) {
  395         if (LLVM_UNLIKELY(isRawStringLiteral(First, Last)))
  396           skipRawString(Last, End);
  398           skipString(Last, End);
  401       if (*Last != '/' || End - Last < 2) {
  401       if (*Last != '/' || End - Last < 2) {
  402         ++Last;
  406       if (Last[1] != '/' && Last[1] != '*') {
  406       if (Last[1] != '/' && Last[1] != '*') {
  407         ++Last;
  412       append(First, findFirstTrailingSpace(First, Last));
  413       First = Last;
  415       if (Last[1] == '/') {
  423       Last = First;
  424     } while (Last != End && !isVerticalWhitespace(*Last));
  424     } while (Last != End && !isVerticalWhitespace(*Last));
  427     const char *LastBeforeTrailingSpace = findLastNonSpace(First, Last);
  428     if (Last == End || LastBeforeTrailingSpace == First ||
  431       First = Last;
  442     First = Last;