/llvm-project/libcxx/test/std/ranges/range.adaptors/range.filter/ |
H A D | base.pass.cpp | 20 struct Range : std::ranges::view_base { struct 21 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) { } in Range() argument 22 …constexpr Range(Range const& other) : begin_(other.begin_), end_(other.end_), wasCopyInitialized(t… in Range() argument 23 …constexpr Range(Range&& other) : begin_(other.begin_), end_(other.end_), wasMoveInitialized(true) … in Range() argument 39 struct NoCopyRange : std::ranges::view_base { argument
|
H A D | ctor.view_pred.pass.cpp | 21 struct Range : std::ranges::view_base { struct 22 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) { } in Range() argument 40 struct TrackingRange : TrackInitialization, std::ranges::view_base { argument 50 static_assert(!test_convertible<std::ranges::filter_view<Range, Pred>, Range, Pred>(), argument
|
H A D | adaptor.pass.cpp | 30 struct Range : std::ranges::view_base { struct 33 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) { } in Range() function 34 constexpr Iterator begin() const { return Iterator(begin_); } in begin() 35 constexpr Sentinel end() const { return Sentinel(Iterator(end_)); } in end() 38 int* begin_; 39 int* end_;
|
H A D | end.pass.cpp | 20 struct Range : std::ranges::view_base { struct 23 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) { } in Range() argument 32 struct CommonRange : std::ranges::view_base { argument 48 Range range(buff, buff + 1); in test() argument
|
H A D | begin.pass.cpp | 19 struct Range : std::ranges::view_base { struct 22 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) { } in Range() argument 33 struct InputRange : std::ranges::view_base { argument 50 template <typename Range> argument
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.chunk.by/ |
H A D | base.pass.cpp | 22 struct Range : std::ranges::view_base { struct 23 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) {} in Range() argument 24 …constexpr Range(Range const& other) : begin_(other.begin_), end_(other.end_), wasCopyInitialized(t… in Range() function 25 …constexpr Range(Range&& other) : begin_(other.begin_), end_(other.end_), wasMoveInitialized(true) … in Range() function 37 static_assert(std::ranges::view<Range>); argument
|
H A D | ctor.view_pred.pass.cpp | 24 struct Range : std::ranges::view_base { struct 25 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) {} in Range() function 34 static_assert(std::ranges::view<Range>); argument
|
H A D | adaptor.pass.cpp | 35 struct Range : std::ranges::view_base { struct 38 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) {} in Range() argument 39 constexpr Iterator begin() const { return Iterator(begin_); } in begin() 40 constexpr Sentinel end() const { return Sentinel(Iterator(end_)); } in end() 43 int* begin_; 44 int* end_;
|
H A D | begin.pass.cpp | 23 struct Range : std::ranges::view_base { struct 26 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) {} in Range() argument 43 static_assert(HasBegin<std::ranges::chunk_by_view<Range, TrackingPred>>); argument
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.transform/ |
H A D | ctor.view_function.pass.cpp | 19 struct Range : std::ranges::view_base { struct 20 constexpr explicit Range(int* b, int* e) : begin_(b), end_(e) {} in Range() function 37 static_assert(!test_convertible<std::ranges::transform_view<Range, F>, Range, F>(), argument
|
/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFDebugAranges.h | 38 struct Range { struct 39 explicit Range(uint64_t LowPC, uint64_t HighPC, uint64_t CUOffset) in Range() function 55 bool operator<(const Range &other) const { argument 77 using RangeColl = std::vector<Range>; argument
|
/llvm-project/lldb/source/Plugins/Process/minidump/ |
H A D | MinidumpParser.h | 37 struct Range { struct 42 Range(lldb::addr_t start, llvm::ArrayRef<uint8_t> range_ref) in Range() argument
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_range.h | 21 struct Range { struct 26 inline bool operator==(const Range &lhs, const Range &rhs) { argument
|
/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | CPlusPlusNameParser.h | 69 struct Range { struct 73 Range() = default; argument 74 Range(size_t begin, size_t end) : begin_index(begin), end_index(end) { in Range() function 84 Range basename_range; argument
|
/llvm-project/llvm/unittests/ADT/ |
H A D | StatisticTest.cpp | 24 extractCounters(const std::vector<std::pair<StringRef, uint64_t>> &Range, in extractCounters() 103 const auto Range = GetStatistics(); in TEST() local 122 auto Range = GetStatistics(); in TEST() local 131 auto Range = GetStatistics(); in TEST() local 147 auto Range = GetStatistics(); in TEST() local
|
/llvm-project/mlir/include/mlir/Dialect/Utils/ |
H A D | StaticValueUtils.h | 33 struct Range { struct 39 /// Given an array of Range values, return a tuple of (offset vector, sizes argument
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.join/ |
H A D | ctad.verify.cpp | 21 struct Range { struct 22 friend T* begin(Range&) { return nullptr; } in begin() argument 24 friend sentinel_wrapper<T*> end(Range&) { return sentinel_wrapper<T*>(nullptr); } in end() argument
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | RangeMap.h | 29 template <typename B, typename S> struct Range { struct 36 Range() : base(0), size(0) {} in Range() argument 38 Range(BaseType b, SizeType s) : base(b), size(s) {} in Range() argument 57 bool Union(const Range &rhs) { in Union() argument 67 Range Intersect(const Range &rhs) const { in Intersect() argument 101 bool Contains(const Range &range) const { in Contains() argument 107 bool DoesAdjoinOrIntersect(const Range argument 45 GetRangeBaseRange GetRangeBase() argument 48 SetRangeBaseRange SetRangeBase() argument 78 GetRangeEndRange GetRangeEnd() argument 80 SetRangeEndRange SetRangeEnd() argument 117 DoesIntersectRange DoesIntersect() argument 442 typedef lldb_private::Range<B, S> Range; global() typedef [all...] |
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.elements/sentinel/ |
H A D | minus.pass.cpp | 85 struct Range : TupleBufferView { struct 102 template <class BaseRange> argument
|
H A D | equality.pass.cpp | 56 struct Range : TupleBufferView { struct 64 using R = Range<Sent>; argument
|
/llvm-project/llvm/lib/CodeGen/MIRParser/ |
H A D | MILexer.cpp | 62 MIToken &MIToken::reset(TokenKind Kind, StringRef Range) { in reset() argument 170 auto Range = C; in lexName() local 296 auto Range = C; maybeLexIdentifier() local 310 auto Range = C; maybeLexMachineBasicBlock() local 344 auto Range = C; maybeLexIndex() local 357 auto Range = C; maybeLexIndexAndName() local 430 auto Range = C; lexVirtualRegister() local 446 Cursor Range = C; lexNamedVirtualRegister() local 471 auto Range = C; maybeLexRegister() local 487 auto Range = C; maybeLexGlobalValue() local 556 lexFloatingPointLiteral(Cursor Range,Cursor C,MIToken & Token) lexFloatingPointLiteral() argument 575 Cursor Range = C; maybeLexHexadecimalLiteral() local 597 auto Range = C; maybeLexNumericalLiteral() local 623 auto Range = C; maybeLexExclaim() local 680 auto Range = C; maybeLexSymbol() local 689 auto Range = C; maybeLexNewline() local 699 auto Range = C; maybeLexEscapedIRValue() local [all...] |
/llvm-project/llvm/include/llvm/Testing/Annotations/ |
H A D | Annotations.h | 57 struct Range { struct 61 friend bool operator==(const Range &L, const Range &R) { argument
|
/llvm-project/clang/lib/Sema/ |
H A D | SemaStmtAttr.cpp | 325 SourceRange Range) { in handleMustTailAttr() argument 28 handleFallThroughAttr(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleFallThroughAttr() argument 55 handleSuppressAttr(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleSuppressAttr() argument 219 handleNoMergeAttr(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleNoMergeAttr() argument 286 handleNoInlineAttr(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleNoInlineAttr() argument 301 handleAlwaysInlineAttr(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleAlwaysInlineAttr() argument 316 handleCXXAssumeAttr(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleCXXAssumeAttr() argument 331 handleLikely(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleLikely() argument 340 handleUnlikely(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleUnlikely() argument 423 handleMSConstexprAttr(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleMSConstexprAttr() argument 557 handleOpenCLUnrollHint(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) handleOpenCLUnrollHint() argument 588 ProcessStmtAttribute(Sema & S,Stmt * St,const ParsedAttr & A,SourceRange Range) ProcessStmtAttribute() argument 666 ActOnCXXAssumeAttr(Stmt * St,const ParsedAttr & A,SourceRange Range) ActOnCXXAssumeAttr() argument 695 BuildCXXAssumeExpr(Expr * Assumption,const IdentifierInfo * AttrName,SourceRange Range) BuildCXXAssumeExpr() argument [all...] |
/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | SourceCode.cpp | 31 StringRef clang::tooling::getText(CharSourceRange Range, in getText() 37 CharSourceRange clang::tooling::maybeExtendRange(CharSourceRange Range, in maybeExtendRange() 53 llvm::Error clang::tooling::validateRange(const CharSourceRange &Range, in validateRange() 84 llvm::Error clang::tooling::validateEditRange(const CharSourceRange &Range, in validateEditRange() 128 static CharSourceRange getRangeForSplitTokens(CharSourceRange Range, in getRangeForSplitTokens() 156 CharSourceRange Range; in getRange() local 177 CharSourceRange Range = in getFileRangeForEdit() local 188 CharSourceRange Range = in getFileRange() local 416 CharSourceRange Range = CharSourceRange::getTokenRange(Decl.getSourceRange()); in getAssociatedRange() local
|
/llvm-project/libcxx/test/std/ranges/range.adaptors/range.all/ |
H A D | all.pass.cpp | 63 struct Range { struct 65 constexpr explicit Range(int start) noexcept : start_(start) {} in Range() argument 70 struct BorrowableRange { argument
|