Home
last modified time | relevance | path

Searched refs:CAT2 (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/flang/runtime/
H A Dfindloc.cpp20 template <TypeCategory CAT1, int KIND1, TypeCategory CAT2, int KIND2>
23 using Type2 = CppTypeFor<CAT2, KIND2>;
42 template <int KIND1, TypeCategory CAT2, int KIND2>
43 struct Equality<TypeCategory::Complex, KIND1, CAT2, KIND2> {
45 using Type2 = CppTypeFor<CAT2, KIND2>;
/llvm-project-15.0.7/clang/test/CXX/except/except.spec/
H A Dp11-2a.cpp10 #define CAT2(a, b) a ## b macro
11 #define CAT(a, b) CAT2(a, b)
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExprCXX.cpp6917 auto *CAT2 = dyn_cast<ConstantArrayType>(Arr2); in FindCompositePointerType() local
6918 if (CAT1 && CAT2 && CAT1->getSize() == CAT2->getSize()) { in FindCompositePointerType()
6928 ((bool)CAT1 != (bool)CAT2) && in FindCompositePointerType()
6936 if (CAT1 || CAT2) in FindCompositePointerType()
H A DSemaOverload.cpp3845 if (auto *CAT2 = S.Context.getAsConstantArrayType( in CompareImplicitConversionSequences() local
3848 CAT2->getElementType())) { in CompareImplicitConversionSequences()
3850 if (CAT1->getSize() != CAT2->getSize()) in CompareImplicitConversionSequences()
3852 return CAT1->getSize().ult(CAT2->getSize()) in CompareImplicitConversionSequences()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp6012 auto *CAT2 = dyn_cast<ConstantArrayType>(AT2); in UnwrapSimilarArrayTypes() local
6013 if (!((CAT2 && CAT1->getSize() == CAT2->getSize()) || in UnwrapSimilarArrayTypes()