Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DOffloadBundle.h153 Str.take_until([](char C) { return (C == '#') || (C == '?'); }); in createFileURI()
160 StringRef OffsetStr = Str.take_until([](char C) { return C == '&'; }); in createFileURI()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DTildeExpressionResolver.cpp85 Expr.take_until([](char c) { return path::is_separator(c); }); in ResolveFullPath()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDebugCounter.cpp39 Remaining.take_until([](char c) { return c < '0' || c > '9'; }); in parseChunks()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h245 template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
444 MutableArrayRef<T> take_until(PredicateT Pred) const { in take_until() function
H A DStringRef.h611 [[nodiscard]] StringRef take_until(function_ref<bool(char)> F) const { in take_until() function
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp177 StringRef Id = State.Input.take_until([](char c) { return c == '"'; }); in parseStringId()
/freebsd/contrib/llvm-project/lld/MachO/
H A DSectionPriorities.cpp311 line = line.take_until([](char c) { return c == '#'; }); // ignore comments in parseOrderFile()
H A DDriver.cpp1202 line = line.take_until([](char c) { return c == '#'; }).trim(); in parseSymbolPatternsFile()
H A DInputFiles.cpp1685 StringRef frameworkName = path.take_until([](char c) { return c == '.'; }); in isImplicitlyLinked()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangBuiltinsEmitter.cpp178 auto ReturnType = Prototype.take_until([](char c) { return c == '('; }); in ParseTypes()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp1590 StringRef NameNoBracket = Name.take_until([](char C) { return C == '<'; }); in isModulePassName()
1619 StringRef NameNoBracket = Name.take_until([](char C) { return C == '<'; }); in isCGSCCPassName()
1646 StringRef NameNoBracket = Name.take_until([](char C) { return C == '<'; }); in isFunctionPassName()
H A DStandardInstrumentations.cpp347 SR.take_until([](char C) { return C == '<' || C == '>'; }); in makeHTMLReady()
1950 StringRef Label = BS1.take_until([](char C) { return C == ':'; }); in getBodyContent()
1959 StringRef Line = BS1.take_until([](char C) { return C == '\n'; }); in getBodyContent()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp33 .take_until([](char C) { return C == '\t'; }) in getMnemonic()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h4288 ArrayRef<BindingDecl *> BeforePackBindings = Bindings.take_until( in flat_bindings()
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc660 PathStr.take_until([](char c) { return path::is_separator(c); });
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1435 PathStr.take_until([](char c) { return path::is_separator(c); });