HomeSort by relevance Sort by last modified time
    Searched defs:bool (Results 1 - 25 of 185) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p6.cpp 11 operator bool();
15 explicit A::operator bool() { return false; } // expected-warning {{explicit conversion functions are a C++11 extension}}\
  /external/webkit/Source/JavaScriptCore/os-win32/
stdbool.h 30 typedef unsigned char bool; typedef
39 CASSERT(sizeof(bool) == 1, bool_is_one_byte)
  /prebuilt/sdk/11/renderscript/clang-include/
stdbool.h 29 /* Don't define bool, true, and false in C++ */
31 #define bool _Bool macro
  /external/bison/lib/
stdbool_.h 30 - <stdbool.h> must be #included before 'bool', 'false', 'true'
33 - You cannot assume that sizeof (bool) == 1.
35 - Programs should not undefine the macros bool, true, and false,
44 - In C99, casts and automatic conversions to '_Bool' or 'bool' are
48 give the expected result when converted to _Bool' or 'bool'.
50 Also, it is suggested that programs use 'bool' rather than '_Bool';
51 this isn't required, but 'bool' is more common. */
59 # include <OS.h> /* defines bool but not _Bool */
68 so that gdb prints values of type 'bool' symbolically. But if we do
74 /* A compiler known to have 'bool'. *
108 #define bool macro
    [all...]
  /external/bluetooth/bluez/tools/
parser.y 62 %type <number> bool
103 rfcomm_option : K_BIND bool
129 bool : K_YES { $$ = 1; } label
  /external/clang/lib/Headers/
stdbool.h 29 /* Don't define bool, true, and false in C++, except as a GNU extension. */
31 #define bool _Bool macro
35 /* Define _Bool, bool, false, true as a GNU extension. */
36 #define _Bool bool
37 #define bool bool macro
  /external/mesa3d/include/c99/
stdbool.h 35 #define bool _Bool macro
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdbool.in.h 32 - <stdbool.h> must be #included before 'bool', 'false', 'true'
35 - You cannot assume that sizeof (bool) == 1.
37 - Programs should not undefine the macros bool, true, and false,
46 - Bit-fields of type 'bool' are not supported. Portable code
47 should use 'unsigned int foo : 1;' rather than 'bool foo : 1;'.
49 - In C99, casts and automatic conversions to '_Bool' or 'bool' are
53 give the expected result when converted to _Bool' or 'bool'.
55 Also, it is suggested that programs use 'bool' rather than '_Bool';
56 this isn't required, but 'bool' is more common. */
64 # include <OS.h> /* defines bool but not _Bool *
114 #define bool macro
    [all...]