Home | History | Annotate | Download | only in PCH

Lines Matching refs:typeof

6 typedef typeof(i) int_decl_ref;
7 typedef typeof(Enumerator) enum_decl_ref;
10 typedef typeof(17) integer_literal;
11 typedef typeof(17l) long_literal;
14 typedef typeof((42.5)) floating_literal;
17 typedef typeof(17.0i) imaginary_literal;
23 typedef typeof('a') char_literal;
26 typedef typeof(-Enumerator) negate_enum;
38 typedef typeof(__builtin_offsetof(struct Z, y.array[1 + 2].member))
42 typedef typeof(sizeof(int)) typeof_sizeof;
43 typedef typeof(sizeof(Enumerator)) typeof_sizeof2;
47 typedef typeof(values[2]) array_subscript;
52 typedef typeof((&dplus)(d0, d1)) call_returning_double;
58 typedef typeof(((struct S*)0)->x) member_ref_double;
61 typedef typeof(i + Enumerator) add_result;
64 typedef typeof(i += Enumerator) addeq_result;
67 typedef typeof(i? : d0) conditional_operator;
70 typedef typeof((void *)0) void_ptr;
73 typedef typeof((struct S){.x = 3.5}) compound_literal;
75 typedef typeof(i + sizeof(int[i + Enumerator])) add_result_with_typeinfo;
80 typedef typeof(vec2.x) ext_vector_element;
94 typedef typeof(__builtin_types_compatible_p(float, double)) types_compatible;
97 typedef typeof(__builtin_choose_expr(17 > 19, d0, 1)) choose_expr;
100 // typedef typeof(__null) null_type;
103 typedef typeof(__builtin_shufflevector(vec2, vec2b, 2, 1)) shuffle_expr;
106 typedef typeof(_Generic(i, char*: 0, int: 0., default: hello))