Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Utility/
H A DTildeExpressionResolver.cpp85 Expr.take_until([](char c) { return path::is_separator(c); }); in ResolveFullPath()
/openbsd/gnu/llvm/clang/lib/Tooling/Transformer/
H A DParsing.cpp184 StringRef Id = State.Input.take_until([](char c) { return c == '"'; }); in parseStringId()
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DArrayRef.h247 template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
433 MutableArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
H A DStringRef.h591 [[nodiscard]] StringRef take_until(function_ref<bool(char)> F) const { in take_until() function
/openbsd/gnu/llvm/lld/MachO/
H A DSectionPriorities.cpp307 line = line.take_until([](char c) { return c == '#'; }); // ignore comments in parseOrderFile()
H A DDriver.cpp1092 line = line.take_until([](char c) { return c == '#'; }).trim(); in parseSymbolPatternsFile()
H A DInputFiles.cpp1647 StringRef frameworkName = path.take_until([](char c) { return c == '.'; }); in isImplicitlyLinked()
/openbsd/gnu/llvm/llvm/lib/Passes/
H A DStandardInstrumentations.cpp282 SR.take_until([](char C) { return C == '<' || C == '>'; }); in makeHTMLReady()
1607 StringRef Label = BS1.take_until([](char C) { return C == ':'; }); in getBodyContent()
1616 StringRef Line = BS1.take_until([](char C) { return C == '\n'; }); in getBodyContent()
/openbsd/gnu/llvm/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp31 Mnemonic = Mnemonic.take_until([](char C) { return C == '\t'; }); in getMnemonic()
/openbsd/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc1361 PathStr.take_until([](char c) { return path::is_separator(c); });
/openbsd/gnu/llvm/llvm/lib/Support/Unix/
H A DPath.inc655 PathStr.take_until([](char c) { return path::is_separator(c); });