| /src/tests/usr.bin/xlint/lint1/ |
| msg_330.c | 4 // Test for message: operand of '%s' must be bool, not '%s' [330] 10 typedef _Bool bool; typedef 13 called(bool); 17 example(bool b, char c, int i) 21 /* expect+2: error: operand of '!' must be bool, not 'char' [330] */ 25 /* expect+2: error: operand of '!' must be bool, not 'int' [330] */
|
| msg_331.c | 4 // Test for message: left operand of '%s' must be bool, not '%s' [331] 10 typedef _Bool bool; typedef 13 test(bool); 16 example(bool b, char c, int i) 20 /* expect+2: error: left operand of '&&' must be bool, not 'char' [331] */ 24 /* expect+2: error: left operand of '&&' must be bool, not 'int' [331] */
|
| msg_332.c | 4 // Test for message: right operand of '%s' must be bool, not '%s' [332] 10 typedef _Bool bool; typedef 13 test(bool); 16 example(bool b, char c, int i) 20 /* expect+2: error: right operand of '&&' must be bool, not 'char' [332] */ 24 /* expect+2: error: right operand of '&&' must be bool, not 'int' [332] */
|
| msg_334.c | 10 typedef _Bool bool; typedef 13 test_bool(bool); 18 caller(bool b, int i)
|
| msg_335.c | 4 // Test for message: operand of '%s' must not be bool [335] 10 typedef _Bool bool; typedef 13 example(bool b) 15 /* expect+1: error: operand of '+' must not be bool [335] */ 18 /* expect+1: error: operand of '-' must not be bool [335] */ 23 /* expect+1: error: operand of 'x++' must not be bool [335] */ 26 /* expect+1: error: operand of '++x' must not be bool [335] */ 29 /* expect+1: error: operand of 'x--' must not be bool [335] */ 32 /* expect+1: error: operand of '--x' must not be bool [335] */
|
| msg_336.c | 4 // Test for message: left operand of '%s' must not be bool [336] 10 typedef _Bool bool; typedef 13 test(bool); 16 example(bool b, int i) 18 /* expect+2: error: left operand of '+' must not be bool [336] */
|
| msg_337.c | 4 // Test for message: right operand of '%s' must not be bool [337] 10 typedef _Bool bool; typedef 13 test(bool); 16 example(bool b, int i) 18 /* expect+2: error: right operand of '+' must not be bool [337] */
|
| /src/external/gpl3/gcc/dist/fixincludes/tests/base/ |
| curses.h | 19 # define bool char macro 27 typedef unsigned int bool ; typedef 28 #endif /* bool
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/ |
| curses.h | 19 # define bool char macro 27 typedef unsigned int bool ; typedef 28 #endif /* bool
|
| /src/external/bsd/tradcpp/dist/ |
| bool.h | 36 typedef int bool; typedef
|
| /src/external/gpl2/diffutils/dist/lib/ |
| setmode.c | 31 typedef enum {false = 0, true = 1} bool; typedef in typeref:enum:__anon9132 54 bool 55 set_binary_mode (int fd, bool mode)
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| ovlymgr.h | 5 typedef enum { FALSE, TRUE } bool; typedef in typeref:enum:__anon18172 9 bool OverlayLoad (unsigned long ovlyno); 10 bool OverlayUnload (unsigned long ovlyno);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| ovlymgr.h | 5 typedef enum { FALSE, TRUE } bool; typedef in typeref:enum:__anon20916 9 bool OverlayLoad (unsigned long ovlyno); 10 bool OverlayUnload (unsigned long ovlyno);
|
| /src/sys/sys/ |
| stdbool.h | 37 #define bool _Bool macro
|
| /src/usr.bin/xlint/xlint/ |
| strict-bool-stdbool.h | 1 /* $NetBSD: strict-bool-stdbool.h,v 1.2 2024/05/07 21:13:26 rillig Exp $ */ 36 #define bool _Bool macro
|
| /src/external/apache2/llvm/dist/libcxx/include/ |
| stdbool.h | 31 #undef bool macro
|
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_recursion_guard.h | 36 const bool Valid; 47 explicit inline operator bool() const { return Valid; }
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| stdbool.h | 13 /* Don't define bool, true, and false in C++, except as a GNU extension. */ 15 #define bool _Bool macro 20 #define _Bool bool 22 /* For C++98, define bool, false, true as a GNU extension. */ 23 #define bool bool macro
|
| /src/external/bsd/jemalloc/dist/include/msvc_compat/C99/ |
| stdbool.h | 6 /* MSVC doesn't define _Bool or bool in C, but does have BOOL */ 7 /* Note this doesn't pass autoconf's test because (bool) 0.5 != true */ 11 typedef BOOL _Bool; 14 #define bool _Bool macro
|
| /src/external/bsd/jemalloc.old/dist/include/msvc_compat/C99/ |
| stdbool.h | 6 /* MSVC doesn't define _Bool or bool in C, but does have BOOL */ 7 /* Note this doesn't pass autoconf's test because (bool) 0.5 != true */ 11 typedef BOOL _Bool; 14 #define bool _Bool macro
|
| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-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...] |
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-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...] |
| /src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
| 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...] |
| /src/external/gpl2/xcvs/dist/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 84 typedef bool _Bool 86 #define bool macro [all...] |
| /src/external/gpl3/gcc/dist/gcc/ginclude/ |
| stdbool.h | 34 /* bool, true and false are keywords. */ 36 #define bool _Bool macro 44 #define _Bool bool
|