/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/lib/gcc/arm-linux-androideabi/4.7/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.7/lib/gcc/mipsel-linux-android/4.7/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/lib/gcc/arm-linux-androideabi/4.7/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.7/lib/gcc/mipsel-linux-android/4.7/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/prebuilts/gcc/linux-x86/x86/i686-linux-android-4.7/lib/gcc/i686-linux-android/4.7/include/ |
stdbool.h | 33 #define bool _Bool 40 #define _Bool bool
|
/external/clang/test/Sema/ |
atomic-ops.c | 151 _Bool cmpexch_1 = __c11_atomic_compare_exchange_strong(i, 0, 1, memory_order_seq_cst, memory_order_seq_cst); 152 _Bool cmpexch_2 = __c11_atomic_compare_exchange_strong(p, 0, (int*)1, memory_order_seq_cst, memory_order_seq_cst); 153 _Bool cmpexch_3 = __c11_atomic_compare_exchange_strong(d, (int*)0, 1, memory_order_seq_cst, memory_order_seq_cst); // expected-warning {{incompatible pointer types}} 155 _Bool cmpexch_4 = __atomic_compare_exchange_n(I, I, 5, 1, memory_order_seq_cst, memory_order_seq_cst); 156 _Bool cmpexch_5 = __atomic_compare_exchange_n(I, P, 5, 0, memory_order_seq_cst, memory_order_seq_cst); // expected-warning {{; dereference with *}} 157 _Bool cmpexch_6 = __atomic_compare_exchange_n(I, I, P, 0, memory_order_seq_cst, memory_order_seq_cst); // expected-warning {{passing 'int **' to parameter of type 'int'}} 159 _Bool cmpexch_7 = __atomic_compare_exchange(I, I, 5, 1, memory_order_seq_cst, memory_order_seq_cst); // expected-warning {{passing 'int' to parameter of type 'int *'}} 160 _Bool cmpexch_8 = __atomic_compare_exchange(I, P, I, 0, memory_order_seq_cst, memory_order_seq_cst); // expected-warning {{; dereference with *}} 161 _Bool cmpexch_9 = __atomic_compare_exchange(I, I, I, 0, memory_order_seq_cst, memory_order_seq_cst);
|
static-init.c | 10 _Bool t = &t;
|
/external/clang/lib/Headers/ |
stdbool.h | 31 #define bool _Bool 35 /* Define _Bool, bool, false, true as a GNU extension. */ 36 #define _Bool bool
|
/prebuilts/sdk/renderscript/clang-include/ |
stdbool.h | 31 #define bool _Bool 35 /* Define _Bool, bool, false, true as a GNU extension. */ 36 #define _Bool bool
|
/external/clang/test/Analysis/ |
casts.m | 44 _Bool testLocAsIntegerToBool() {
|
/external/clang/test/CodeGen/ |
2004-06-17-UnorderedBuiltins.c | 4 _Bool A, B, C, D, E, F, G, H;
|
union.c | 39 union RR {_Bool a : 1;} RRU;
|
/external/clang/test/CodeGenObjC/ |
ivars.m | 9 _Bool boolfield :1 ;
|