Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DFormatVariadic.cpp101 StringRef Braces = Fmt.take_while([](char C) { return C == '{'; }); in splitLiteralAndReplacement()
/freebsd/contrib/llvm-project/libcxx/include/__ranges/
H A Dtake_while_view.h159 inline constexpr auto take_while = __take_while::__fn{}; in operator()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h243 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
428 MutableArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
H A DStringRef.h582 [[nodiscard]] StringRef take_while(function_ref<bool(char)> F) const { in take_while() function
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DParsing.cpp166 auto Id = State.Input.take_while( in parseId()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DTokenLexer.cpp1012 Partition = All.take_while([&](const Token &T) { in updateConsecutiveMacroArgTokens()
1021 Partition = All.take_while([&](const Token &T) { in updateConsecutiveMacroArgTokens()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DVFABIDemangling.cpp
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DRISCVISAInfo.cpp347 MajorStr = In.take_while(isDigit); in getExtensionVersion()
351 MinorStr = In.take_while(isDigit); in getExtensionVersion()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dranges.cppm
H A Dranges.inc204 using std::ranges::views::take_while;
/freebsd/contrib/llvm-project/libcxx/include/
H A Dranges257 namespace views { inline constexpr unspecified take_while = unspecified; }
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp2196 Mask.take_while([](int MaskElt) { return MaskElt == 0; }).size(); in isReplicationMask()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc3798 SYMBOL(take_while, std::ranges::views::, <ranges>)
3869 SYMBOL(take_while, std::views::, <ranges>)
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp6233 Args.take_while([](Expr *Arg) { return !Arg->isTypeDependent(); }); in ProduceCallSignatureHelp()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp32284 return TmpStr.take_while(llvm::isAlpha); in getInstrStrFromOpNo()