Home
last modified time | relevance | path

Searched refs:take_while (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Testing/Annotations/
H A DAnnotations.cpp65 Text.take_while([](char C) { return llvm::isAlnum(C) || C == '_'; }); in Annotations()
69 Payload = Text.take_while([](char C) { return C != ')'; }); in Annotations()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DFormatVariadic.cpp102 StringRef Braces = Fmt.take_while([](char C) { return C == '{'; }); in splitLiteralAndReplacement()
H A DRISCVISAInfo.cpp376 MajorStr = In.take_while(isDigit); in getExtensionVersion()
380 MinorStr = In.take_while(isDigit); in getExtensionVersion()
/openbsd-src/gnu/llvm/libcxx/include/__ranges/
H A Dtake_while_view.h168 inline constexpr auto take_while = __take_while::__fn{};
/openbsd-src/gnu/llvm/clang/utils/TableGen/
H A DClangSyntaxEmitter.cpp182 llvm::StringRef Indent = Line.take_while(llvm::isSpace); in printDoc()
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DRangesViews.csv11 C++20,`take_while <https://wg21.link/P1035R7>`_,Hui Xie,`D134952 <https://llvm.org/D134952>`_,✅
/openbsd-src/gnu/llvm/clang/lib/Tooling/Transformer/
H A DParsing.cpp166 auto Id = State.Input.take_while( in parseId()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DArrayRef.h241 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
426 MutableArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
H A DStringRef.h585 [[nodiscard]] StringRef take_while(function_ref<bool(char)> F) const { in take_while() function
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DTokenLexer.cpp1013 Partition = All.take_while([&](const Token &T) { in updateConsecutiveMacroArgTokens()
1022 Partition = All.take_while([&](const Token &T) { in updateConsecutiveMacroArgTokens()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DVFABIDemangling.cpp385 MangledName.take_while([](char In) { return In != '('; }); in tryDemangleForVFABI()
/openbsd-src/gnu/llvm/libcxx/include/
H A Dranges240 namespace views { inline constexpr unspecified take_while = unspecified; }
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp2628 Mask.take_while([](int MaskElt) { return MaskElt == 0; }).size(); in isReplicationMask()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaCodeComplete.cpp6101 Args.take_while([](Expr *Arg) { return !Arg->isTypeDependent(); }); in ProduceCallSignatureHelp()