Home
last modified time | relevance | path

Searched refs:CAT (Results 1 – 25 of 109) sorted by relevance

12345

/llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-shell/
H A Dvalid-shell.txt99 # CAT-OUTPUT: abcdefgh
113 # MULTI-CAT-OUTPUT: abcdefgh
114 # MULTI-CAT-OUTPUT-NEXT: efghijkl
115 # MULTI-CAT-OUTPUT-NEXT: mnopqrst
124 # PIPED-CAT-OUTPUT: abcdefgh
125 # PIPED-CAT-OUTPUT-NEXT: efghijkl
134 # GLOB-CAT-OUTPUT: cvbnm
135 # GLOB-CAT-OUTPUT-NEXT: qwerty
140 # NP-CAT-OUTPUT: ^@^A^B^C^D^E^F^G ^H
141 # NP-CAT-OUTPUT-NEXT: ^K^L^M^N^O^P^Q^R^S
[all …]
/llvm-project-15.0.7/polly/lib/External/isl/
H A Disl_union_pw_templ.c2 #define CAT(A,B) xCAT(A,B) macro
4 #define EL CAT(isl_,BASE)
6 #define PW_BASE CAT(pw_,BASE)
8 #define PW CAT(isl_,PW_BASE)
10 #define UNION_BASE CAT(union_,PW_BASE)
12 #define UNION CAT(isl_,UNION_BASE)
H A Dcheck_reparse_test_templ.c2 #define CAT(A,B) xCAT(A,B) macro
4 #define TYPE CAT(isl_,BASE)
9 #define TESTS CAT(reparse_,CAT(BASE,_tests))
H A Dcheck_parse_fail_test_templ.c11 #define CAT(A,B) xCAT(A,B) macro
13 #define TYPE CAT(isl_,BASE)
18 #define TESTS CAT(parse_,CAT(BASE,_fail_tests))
H A Disl_union_macro.h2 #define CAT(A,B) xCAT(A,B) macro
4 #define PART CAT(isl_,BASE)
6 #define UNION CAT(isl_union_,BASE)
H A Disl_test_list_templ.c2 #define CAT(A,B) xCAT(A,B) macro
9 #define SET CAT(isl_,SET_BASE)
11 #define EL CAT(isl_,EL_BASE)
H A Disl_list_macro.h2 #define CAT(A,B) xCAT(A,B) macro
4 #define EL CAT(isl_,EL_BASE)
H A Disl_pw_macro.h2 #define CAT(A,B) xCAT(A,B) macro
4 #define EL CAT(isl_,BASE)
H A Disl_multi_templ.h28 __isl_give MULTI(BASE) *CAT(MULTI(BASE),_alloc)(__isl_take isl_space *space);
32 isl_bool CAT(MULTI(BASE),_has_non_trivial_domain)(
H A Dprint_yaml_field_templ.c2 #define CAT(A,B) xCAT(A,B) macro
4 #define TYPE CAT(isl_,BASE)
H A Dcheck_reparse_templ.c2 #define CAT(A,B) xCAT(A,B) macro
4 #define TYPE CAT(isl_,BASE)
H A Dread_in_string_templ.c4 #define CAT(A,B) xCAT(A,B) macro
6 #define TYPE CAT(isl_,BASE)
H A Disl_ilp_opt_val_templ.c10 #define CAT(A,B) xCAT(A,B) macro
12 #define TYPE CAT(isl_,BASE)
H A Dprint_templ_yaml.c2 #define CAT(A,B) xCAT(A,B) macro
4 #define TYPE CAT(isl_,BASE)
H A Dprint_templ.c4 #define CAT(A,B) xCAT(A,B) macro
6 #define TYPE CAT(isl_,BASE)
/llvm-project-15.0.7/flang/include/flang/Runtime/
H A Dcpp-type.h26 template <TypeCategory CAT, int KIND> struct CppTypeForHelper {};
27 template <TypeCategory CAT, int KIND>
28 using CppTypeFor = typename CppTypeForHelper<CAT, KIND>::type;
30 template <TypeCategory CAT, int KIND, bool SFINAE = false>
32 template <TypeCategory CAT, int KIND>
33 constexpr bool HasCppTypeFor<CAT, KIND, true>{
34 !std::is_void_v<typename CppTypeForHelper<CAT, KIND>::type>};
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dproperty-category-4.m9 @interface IDELogNavigator (CAT) category
15 …cts = _selectedObjects; // expected-error {{property declared in category 'CAT' cannot be implemen…
16 @dynamic d_selectedObjects; // expected-error {{property declared in category 'CAT' cannot be imple…
82 @interface I(CAT) category
86 @implementation I(CAT) category
92 @interface C (CAT) category
118 @interface MyObject (CAT) <MyProtocol> category
121 @implementation MyObject (CAT) // expected-warning {{property 'anotherFloat' requires method 'anoth… category
H A Ddealloc.m34 @interface Subclass (CAT) category
38 @implementation Subclass (CAT) category
48 @interface NSError(CAT) category
51 @implementation NSError(CAT) category
H A Dproperty-category-2.m13 @interface MyObject (CAT) <MyProtocol> category
16 @implementation MyObject (CAT) // expected-warning {{property 'anotherFloat' requires method}} \ category
/llvm-project-15.0.7/flang/runtime/
H A Dextrema.cpp115 template <TypeCategory CAT, int KIND, bool IS_MAX,
120 using CppType = CppTypeFor<CAT, KIND>; in DoMaxOrMinLoc()
197 template <TypeCategory CAT, int KIND, bool IS_MAX,
202 using CppType = CppTypeFor<CAT, KIND>; in DoPartialMaxOrMinLocDirection()
210 template <TypeCategory CAT, int KIND, bool IS_MAX,
224 template <TypeCategory CAT, bool IS_MAX,
301 using Type = CppTypeFor<CAT, KIND>;
320 using Type = CppTypeFor<CAT, KIND>;
359 using Type = CppTypeFor<CAT, KIND>; in DoMaxMinNorm2()
373 PartialReduction<ACCUMULATOR, CAT, KIND>( in DoMaxMinNorm2()
[all …]
H A Dreduction-templates.h77 template <TypeCategory CAT, int KIND, typename ACCUMULATOR>
78 inline CppTypeFor<CAT, KIND> GetTotalReduction(const Descriptor &x, in GetTotalReduction()
82 RUNTIME_CHECK(terminator, TypeCode(CAT, KIND) == x.type()); in GetTotalReduction()
83 using CppType = CppTypeFor<CAT, KIND>; in GetTotalReduction()
193 template <typename ACCUMULATOR, TypeCategory CAT, int KIND>
198 result, x, dim, terminator, intrinsic, TypeCode{CAT, KIND}); in PartialReduction()
202 using CppType = CppTypeFor<CAT, KIND>; in PartialReduction()
256 template <TypeCategory CAT, template <typename> class ACCUM>
266 PartialReduction<Accumulator, CAT, KIND>( in operator()
/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dtools.h604 template <TypeCategory CAT>
606 Expr<SomeKind<CAT>> &&x, Expr<SomeKind<CAT>> &&y) { in AsSameKindExprs()
667 Expr<SomeKind<CAT>> &&x, Expr<SomeKind<CAT>> &&y) { in PromoteAndCombine()
773 template <TypeCategory CAT>
775 Expr<SomeKind<CAT>> &&x, Expr<SomeKind<CAT>> &&y) {
779 template <TypeCategory CAT>
781 Expr<SomeKind<CAT>> &&x, Expr<SomeKind<CAT>> &&y) {
785 template <TypeCategory CAT>
787 Expr<SomeKind<CAT>> &&x, Expr<SomeKind<CAT>> &&y) {
791 template <TypeCategory CAT>
[all …]
H A Dexpression.h759 template <TypeCategory CAT>
760 class Expr<SomeKind<CAT>> : public ExpressionBase<SomeKind<CAT>> {
762 using Result = SomeKind<CAT>;
811 template <TypeCategory CAT, int KIND>
812 explicit Expr(const Expr<Type<CAT, KIND>> &x) : u{Expr<SomeKind<CAT>>{x}} {}
814 template <TypeCategory CAT, int KIND>
815 explicit Expr(Expr<Type<CAT, KIND>> &&x)
818 template <TypeCategory CAT, int KIND>
820 u = Expr<SomeKind<CAT>>{x};
824 template <TypeCategory CAT, int KIND>
[all …]
/llvm-project-15.0.7/lld/test/MachO/
H A Dobjc-imageinfo.s79 # HAS-CAT-CLS: Contents of (__DATA_CONST,__objc_imageinfo) section
80 # HAS-CAT-CLS: 00 00 00 40 00 00 00
81 # HAS-CAT-CLS-EMPTY:
83 # NO-CAT-CLS: Contents of (__DATA_CONST,__objc_imageinfo) section
84 # NO-CAT-CLS: 00 00 00 00 00 00 00
85 # NO-CAT-CLS-EMPTY:
/llvm-project-15.0.7/flang/unittests/Runtime/
H A Dtools.h35 template <TypeCategory CAT, int KIND, typename A>
38 std::size_t elemLen = CAT == TypeCategory::Complex ? 2 * KIND : KIND) {
40 auto result{Descriptor::Create(TypeCode{CAT, KIND}, elemLen, nullptr, rank,

12345