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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p6.cpp 16 operator bool();
20 explicit A::operator bool() { return false; }
  /external/clang/test/Sema/
pr9812.c 3 #define bool _Bool macro
6 bool signed; // expected-error {{'bool' cannot be signed or unsigned}} expected-warning {{declaration does not declare anything}}
10 #undef bool macro
12 typedef int bool; typedef
16 bool signed; // expected-error {{'type-name' cannot be signed or unsigned}} expected-warning {{declaration does not declare anything}}
  /external/clang/test/SemaTemplate/
enum-bool.cpp 3 enum E : bool { A }; enum
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.completion/
done.pass.cpp 18 // bool done() const
35 ASSERT_SAME_TYPE(decltype(H.done()), bool); local
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.observe/
has_value.pass.cpp 13 // constexpr bool optional<T>::has_value() const noexcept;
27 ASSERT_SAME_TYPE(decltype(opt.has_value()), bool); local
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
bool-is-macro-expected.cc 7 // On Linux, bool can be a macro. Make sure this case is handled correctly.
8 #define bool bool macro
10 bool FunctionReturningBool(char* input_data) {
bool-is-macro-original.cc 7 // On Linux, bool can be a macro. Make sure this case is handled correctly.
8 #define bool bool macro
10 bool functionReturningBool(char* inputData) {
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/
stdbool.h 37 #define bool _Bool macro
  /device/linaro/bootloader/edk2/StdLib/Include/
stdbool.h 7 The macro bool expands to _Bool, as required by the C99 specification.
17 macros bool, true, and false.
32 #define bool _Bool macro
  /external/catch2/projects/ExtraTests/
X10-FallbackStringifier.cpp 16 explicit operator bool() const {
  /external/clang/test/Parser/
altivec-csk-bool.c 4 // PR16456: Verify that bool, true, false are treated as context-sensitive
11 } bool; typedef in typeref:enum:__anon17621
  /external/epid-sdk/epid/common/
stdtypes.h 28 /// C99 standard name for bool
31 typedef char bool; typedef
  /external/epid-sdk/example/util/
stdtypes.h 28 /// C99 standard name for bool
31 typedef char bool; typedef
  /external/libcxx/include/
stdbool.h 32 #undef bool macro
  /device/google/fuchsia/bioniccompat/include/
stdbool.h 29 /* Don't define bool, true, and false in C++, except as a GNU extension. */
31 #define bool _Bool macro
36 #define _Bool bool
38 /* For C++98, define bool, false, true as a GNU extension. */
39 #define bool bool macro
  /external/catch2/include/internal/
catch_interfaces_generatortracker.h 24 virtual bool next() = 0;
32 virtual auto hasGenerator() const -> bool = 0; member in struct:Catch::IGeneratorTracker
catch_section.cpp 33 Section::operator bool() const {
  /external/catch2/projects/SelfTest/UsageTests/
Decomposition.tests.cpp 15 truthy(bool b):m_value(b){}
16 operator bool() const {
19 bool m_value;
  /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/clang/test/FixIt/
fixit-uninit.c 10 #define bool _Bool macro
11 #define false (bool)0
12 #define true (bool)1
13 bool test_bool_with_false() {
14 bool var; // expected-note {{initialize}}
19 bool test_bool_with_false_undefined() {
20 bool
  /external/jemalloc/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
  /external/jemalloc_new/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
  /external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.compare/
equal_comp.pass.cpp 18 // bool operator==(coroutine_handle<>, coroutine_handle<>) noexcept
19 // bool operator!=(coroutine_handle<>, coroutine_handle<>) noexcept
35 const bool ExpectIsEqual = (LHSVal == RHSVal);
43 ASSERT_SAME_TYPE(decltype(LHS == RHS), bool); local
44 ASSERT_SAME_TYPE(decltype(LHS != RHS), bool);
less_comp.pass.cpp 18 // bool operator<(coroutine_handle<>, coroutine_handle<>) noexcept
19 // bool operator>(coroutine_handle<>, coroutine_handle<>) noexcept
20 // bool operator>=(coroutine_handle<>, coroutine_handle<>) noexcept
21 // bool operator<=(coroutine_handle<>, coroutine_handle<>) noexcept
50 ASSERT_SAME_TYPE(decltype(LHS < RHS), bool);
51 ASSERT_SAME_TYPE(decltype(LHS > RHS), bool); local
52 ASSERT_SAME_TYPE(decltype(LHS <= RHS), bool); local
53 ASSERT_SAME_TYPE(decltype(LHS >= RHS), bool);
  /external/skia/include/gpu/gl/
GrGLFunctions.h 306 explicit operator bool() const { return fCall != nullptr; }

Completed in 1250 milliseconds

1 2 3 4 5 6 7 8 91011>>