Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.h643 StringRef take_until(function_ref<bool(char)> F) const { in take_until() function
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
H A DParsing.cpp185 StringRef Id = State.Input.take_until([](char c) { return c == '"'; }); in parseStringId()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp2091 Arch.take_until([](char c) { return ::isdigit(c) || c == '_'; }); in parseDirectiveAttribute()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Unix/
H A DPath.inc648 PathStr.take_until([](char c) { return path::is_separator(c); });
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DPath.inc1358 StringRef Expr = PathStr.take_until([](char c) { return path::is_separator(c); });