Searched refs:a2 (Results 351 - 375 of 920) sorted by path

<<11121314151617181920>>

/external/clang/test/Parser/
H A Dcxx-extra-semi.cpp33 int a2;; // expected-warning{{extra ';' inside a union}} member in union:B
H A Dcxx0x-lambda-expressions.cpp41 int a2[1] = {[b] = 1 }; local
H A Dcxx0x-member-initializers.cpp34 T1<int, int> a1 = T1<int, int>(), *a2 = new T1<int,int>; member in struct:A
/external/clang/test/Sema/Inputs/
H A Dformat-unused-system-args.h4 #define PRINT2(fmt, a1, a2) \
5 printf((fmt), (a1), (a2))
/external/clang/test/Sema/
H A Darray-declared-as-incorrect-type.c6 extern int a2[]; // expected-note {{previous definition is here}}
7 float a2[1]; // expected-error {{redefinition of 'a2'}} variable
H A Darray-init.c277 int a2[5] = (int[5]){1, 2, 3, 4, 5}; // expected-warning{{initialization of an array of type 'int [5]' from a compound literal of type 'int [5]' is a GNU extension}} variable
H A Dattr-alias-elf.c48 extern int a2 __attribute__((alias("b2"))); // expected-error {{alias must point to a defined variable or function}}
H A Dattr-aligned.c21 char a2[__alignof__(a) == 1? : -1] = { 0 }; variable
H A Dattr-format.c39 void a2(const char *a, ...) __attribute__((format(printf0, 1,2))); // no-error
H A Dbitfield-layout.c13 struct __attribute__((packed)) a2 { short x : 9; char : 0; int y : 17; }; struct
14 CHECK_SIZE(struct, a2, 5)
15 CHECK_ALIGN(struct, a2, 1)
H A Dcomplex-int.c26 __complex int a2; local
H A Dconversion.c405 enum E8559831a a2 = value_c; // expected-warning{{implicit conversion from enumeration type 'E8559831c' to different enumeration type 'enum E8559831a'}} local
406 a2 = value_c; // expected-warning{{implicit conversion from enumeration type 'E8559831c' to different enumeration type 'enum E8559831a'}}
H A Ddesignated-initializers.c120 int a2[]= { [0 ... sizeof(int)] = 0 }; variable
H A Dfunction-redecl.c119 typedef int a2(int*); typedef
121 a2 x2; // expected-note{{passing argument to parameter here}}
H A Dgeneric-selection.c21 int a2[_Generic(0, default: 1, short: 2, float: 3, int: 4) == 4 ? 1 : -1]; local
H A Dinit.c53 short *a2(void) function
H A Dstring-init.c10 char a2[] = u8"a"; // No error. local
H A Dstruct-packed-align.c13 extern int a2[__alignof(struct s) == 4 ? 1 : -1];
/external/clang/test/SemaCXX/
H A DMicrosoftCompatibility.cpp170 Base1::TYPE a2; // expected-warning {{missing 'typename' prior to dependent type name}} member in class:MissingTypename::C
H A DMicrosoftExtensions.cpp56 int a2; member in struct:A::__anon19199
160 void *a2 = &function_prototype; local
H A Dattr-weakref.cpp6 static int a2() __attribute__((weakref, alias ("foo")));
H A Dclass-names.cpp22 class A * a2; variable in typeref:class:A
H A Dconditional-expr.cpp124 A a2((i1 ? Base() : constret()).trick());
H A Dconstant-expression-cxx11.cpp348 struct B { A &&a1; A &&a2; }; member in struct:MaterializeTemporary::B
351 static_assert(&b1.a1 != &b1.a2, "");
352 static_assert(&b1.a1.r != &b1.a2.r, ""); // expected-error {{constant expression}} expected-note {{outside the expression that created the temporary}}
H A Dconversion-function.cpp395 A& a2 = c; local

Completed in 350 milliseconds

<<11121314151617181920>>