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

References

lib/Support/Unix/Path.inc
  588       PathStr.take_until([](char c) { return path::is_separator(c); });
tools/clang/tools/extra/clang-query/QueryParser.cpp
   42   StringRef Word = Line.take_until(isWhitespace);
tools/clang/tools/extra/clangd/Format.cpp
   73   return Code.take_until([](char C) { return C == '\n'; });
tools/clang/tools/extra/clangd/SourceCode.cpp
  174       Code.substr(StartOfLine).take_until([](char C) { return C == '\n'; });
tools/clang/tools/extra/clangd/unittests/FindTargetTests.cpp
   43         llvm::StringRef(OS.str()).take_until([](char C) { return C == '\n'; });
tools/lldb/source/Utility/TildeExpressionResolver.cpp
   86       Expr.take_until([](char c) { return path::is_separator(c); });
unittests/ADT/StringRefTest.cpp
 1018   Taken = Test.take_until([](char c) { return ::isdigit(c); });
 1024   Taken = Test.take_until([](char c) { return true; });