Home
last modified time | relevance | path

Searched refs:take_until (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DTildeExpressionResolver.cpp85 Expr.take_until([](char c) { return path::is_separator(c); }); in ResolveFullPath()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp184 StringRef Id = State.Input.take_until([](char c) { return c == '"'; }); in parseStringId()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h249 template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
435 MutableArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
H A DStringRef.h599 [[nodiscard]] StringRef take_until(function_ref<bool(char)> F) const { in take_until() function
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DSectionPriorities.cpp307 line = line.take_until([](char c) { return c == '#'; }); // ignore comments in parseOrderFile()
H A DDriver.cpp1121 line = line.take_until([](char c) { return c == '#'; }).trim(); in parseSymbolPatternsFile()
H A DInputFiles.cpp1670 StringRef frameworkName = path.take_until([](char c) { return c == '.'; }); in isImplicitlyLinked()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp1172 StringRef NameNoBracket = Name.take_until([](char C) { return C == '<'; }); in isModulePassName()
1205 StringRef NameNoBracket = Name.take_until([](char C) { return C == '<'; }); in isCGSCCPassName()
1234 StringRef NameNoBracket = Name.take_until([](char C) { return C == '<'; }); in isFunctionPassName()
H A DStandardInstrumentations.cpp315 SR.take_until([](char C) { return C == '<' || C == '>'; }); in makeHTMLReady()
1861 StringRef Label = BS1.take_until([](char C) { return C == ':'; }); in getBodyContent()
1870 StringRef Line = BS1.take_until([](char C) { return C == '\n'; }); in getBodyContent()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp32 Mnemonic = Mnemonic.take_until([](char C) { return C == '\t'; }); in getMnemonic()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc660 PathStr.take_until([](char c) { return path::is_separator(c); });
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1403 PathStr.take_until([](char c) { return path::is_separator(c); });