Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexHLSLRootSignature.cpp27 advanceBuffer(Buffer.take_while(isspace).size()); in lexToken()
52 Result.NumSpelling = Buffer.take_while(isNumberChar); in lexToken()
95 Result.NumSpelling = Buffer.take_while(isNumberChar); in lexToken()
103 Buffer.take_while([](char C) { return isalnum(C) || C == '_'; }); in lexToken()
H A DTokenLexer.cpp1022 Partition = All.take_while([&](const Token &T) { in updateConsecutiveMacroArgTokens()
1031 Partition = All.take_while([&](const Token &T) { in updateConsecutiveMacroArgTokens()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILLexer.cpp65 llvm::StringRef candidate = remainder.take_while( in IsWord()
78 llvm::StringRef number = remainder.take_while(IsNumberBodyChar); in IsNumber()
/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/clang/include/clang/Lex/
H A DLexHLSLRootSignature.h74 advanceBuffer(Buffer.take_while(isspace).size()); in isEndOfBuffer()
/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{};
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangSyntaxEmitter.cpp183 StringRef Indent = Line.take_while(isSpace); in printDoc()
H A DClangOptionDocEmitter.cpp208 return OptionName.take_while([](char C) { return isalnum(C) || C == '-'; }); in getSphinxOptionID()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h239 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
437 MutableArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
H A DStringRef.h605 [[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.cpp159 auto Id = State.Input.take_while( in parseId()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DVFABIDemangling.cpp
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DRISCVISAInfo.cpp346 MajorStr = In.take_while(isDigit); in getExtensionVersion()
350 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/llvm/lib/IR/
H A DVFABIDemangler.cpp464 MangledName.take_while([](char In) { return In != '('; }); in tryDemangleForVFABI()
H A DInstructions.cpp2261 Mask.take_while([](int MaskElt) { return MaskElt == 0; }).size(); in isReplicationMask()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dranges257 namespace views { inline constexpr unspecified take_while = unspecified; }
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1221 AllOuts.take_while([I](auto O) { return O.OrigArgIndex == I; }); in getPrototype()
1535 AllOuts.take_while([&](auto O) { return O.OrigArgIndex == ArgI; }); in LowerCall()
3375 const auto ArgIns = AllIns.take_while( in LowerFormalArguments()
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc3900 SYMBOL(take_while, std::ranges::views::, <ranges>)
3983 SYMBOL(take_while, std::views::, <ranges>)
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp6335 Args.take_while([](Expr *Arg) { return !Arg->isTypeDependent(); }); in ProduceCallSignatureHelp()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp33507 return TmpStr.take_while(llvm::isAlpha); in getInstrStrFromOpNo()