Home
last modified time | relevance | path

Searched refs:HasSize (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.all/range.owning.view/
H A Dsize.pass.cpp25 concept HasSize = requires (T t) {
39 static_assert(HasSize<OwningView&>); in test()
40 static_assert(HasSize<OwningView&&>); in test()
41 static_assert(!HasSize<const OwningView&>); in test()
42 static_assert(!HasSize<const OwningView&&>); in test()
50 static_assert(!HasSize<OwningView&>); in test()
51 static_assert(!HasSize<OwningView&&>); in test()
52 static_assert(!HasSize<const OwningView&>); in test()
53 static_assert(!HasSize<const OwningView&&>); in test()
64 static_assert(HasSize<OwningView&>); in test()
[all …]
/llvm-project-15.0.7/clang/lib/Lex/
H A DLiteralSupport.cpp934 if (HasSize) in NumericLiteralParser()
936 HasSize = true; in NumericLiteralParser()
942 if (HasSize) in NumericLiteralParser()
944 HasSize = true; in NumericLiteralParser()
961 if (HasSize) in NumericLiteralParser()
963 HasSize = true; in NumericLiteralParser()
974 if (HasSize) in NumericLiteralParser()
976 HasSize = true; in NumericLiteralParser()
992 if (HasSize) in NumericLiteralParser()
994 HasSize = true; in NumericLiteralParser()
[all …]
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp2400 TEST_P(ASTMatchersTest, HasSize) { in TEST_P() argument