Home
last modified time | relevance | path

Searched refs:drop_until (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h223 template <class PredicateT> ArrayRef<T> drop_until(PredicateT Pred) const { in drop_until() function
407 MutableArrayRef<T> drop_until(PredicateT Pred) const { in drop_until() function
H A DStringRef.h676 StringRef drop_until(function_ref<bool(char)> F) const { in drop_until() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp338 Arch = Arch.drop_until([](char c) { return c == '_' || c == '\0'; }); in getRISCVFeatures()
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DFunction.cpp325 return GetCallEdges().drop_until( in GetTailCallingEdges()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp129 Code = Code.drop_until([](char c) { return c == '\n'; }); in getNextToken()
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DDriver.cpp502 line = line.drop_until([](char c) { return c == ':'; }).drop_front(); in parseOrderFile()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp1882 Filename = Filename.drop_until(isAlphanumeric); in LookupHeaderIncludeOrImport()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp2123 Arch = Arch.drop_until([](char c) { return ::isdigit(c) || c == '_'; }); in parseDirectiveAttribute()