HomeSort by relevance Sort by last modified time
    Searched defs:bool (Results 101 - 125 of 1477) sorted by null

1 2 3 45 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
asdl.h 9 typedef enum {false, true} bool; typedef in typeref:enum:__anon4608
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
core_types.h 24 typedef unsigned char bool; typedef
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNull.java 80 public boolean bool() method in class:XNull
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Equals.java 62 public boolean bool(XPathContext xctxt) method in class:Equals
  /external/clang/test/Analysis/
member-expr.cpp 3 void clang_analyzer_checkInlined(bool);
29 bool h() const;
34 void g(bool (A::*mp_f)() const) { function in struct:PR19531::B
  /external/clang/test/CXX/conv/conv.prom/
p4.cpp 14 enum B : bool { false_, true_ }; enum
15 template<bool> struct T {};
19 T<+true_> q; // desired-error {{conversion from 'int' to 'bool'}}
21 enum B2 : bool { enum
27 e = +false_ // desired-error {{conversion from 'int' to 'bool'}}
  /external/clang/test/SemaCXX/
condition.cpp 13 if (s) ++x; // expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
14 while (struct S x=s) ; // expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
15 do ; while (s); // expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
16 for (;s;) ; // expected-error {{value of type 'struct S' is not contextually convertible to 'bool'}}
56 void test4(bool (&x)(void)) { function
  /external/drm_hwcomposer/
autofd.h 97 operator bool() const {
  /external/libmojo/base/
unguessable_token.h 62 bool is_empty() const { return high_ == 0 && low_ == 0; }
66 explicit operator bool() const { return !is_empty(); }
68 bool operator<(const UnguessableToken& other) const {
72 bool operator==(const UnguessableToken& other) const {
76 bool operator!=(const UnguessableToken& other) const {
  /external/libmojo/mojo/edk/system/
atomic_flag.h 38 void Set(bool value) {
42 bool Get() const {
46 operator const bool() const { return Get(); }
  /external/libmojo/mojo/public/cpp/bindings/lib/
array_internal.cc 32 ArrayDataTraits<bool>::BitRef::~BitRef() {
35 ArrayDataTraits<bool>::BitRef::BitRef(uint8_t* storage, uint8_t mask)
39 ArrayDataTraits<bool>::BitRef& ArrayDataTraits<bool>::BitRef::operator=(
40 bool value) {
49 ArrayDataTraits<bool>::BitRef& ArrayDataTraits<bool>::BitRef::operator=(
51 return (*this) = static_cast<bool>(value);
54 ArrayDataTraits<bool>::BitRef::operator bool() const
    [all...]
  /external/llvm/include/llvm/CodeGen/
DwarfStringPoolEntry.h 36 explicit operator bool() const { return I; }
45 bool operator==(const DwarfStringPoolEntryRef &X) const { return I == X.I; }
46 bool operator!=(const DwarfStringPoolEntryRef &X) const { return I != X.I; }
  /external/llvm/include/llvm/ExecutionEngine/Orc/
JITSymbol.h 61 explicit operator bool() const { return CachedAddr || GetAddress; }
  /external/llvm/include/llvm/IR/
DebugLoc.h 77 explicit operator bool() const { return Loc; }
80 bool hasTrivialDestructor() const { return Loc.hasTrivialDestructor(); }
115 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; }
116 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
  /external/pdfium/core/fxcrt/
shared_copy_on_write.h 49 bool operator==(const SharedCopyOnWrite& that) const {
52 bool operator!=(const SharedCopyOnWrite& that) const {
55 explicit operator bool() const { return !!m_pObject; }
  /external/perfetto/include/perfetto/base/
weak_ptr.h 68 explicit operator bool() const { return !!get(); }
  /external/perfetto/include/perfetto/protozero/
message_handle.h 47 explicit operator bool() const {
  /external/python/cpython2/Include/
asdl.h 9 typedef enum {false, true} bool; typedef in typeref:enum:__anon32549
  /external/selinux/libsepol/tests/
test-linker-cond-map.c 33 * Test each cond/bool for these
53 const char *bool; member in struct:test_cond_expr
71 if (bools[i].bool) {
72 CU_ASSERT(strcmp(p->sym_val_to_name[SYM_BOOLS][expr->bool - 1], bools[i].bool) == 0);
78 void test_bool_state(policydb_t * p, const char *bool, int state)
82 b = hashtab_search(p->p_bools.table, bool);
96 /* bool existance and state, global scope */
102 bools[0].bool = "g_b_bool_1";
106 /* bool existance and state, optional scope *
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
InMemoryStruct.h 72 operator bool() const { return Target != 0; }
Optional.h 44 operator bool() const { return hasVal; }
45 bool hasValue() const { return hasVal; }
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DebugLoc.h 67 explicit operator bool() const { return Loc; }
70 bool hasTrivialDestructor() const { return Loc.hasTrivialDestructor(); }
105 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; }
106 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
  /external/webrtc/webrtc/base/
optional.h 92 // Conversion to bool to test if we have a value.
93 explicit operator bool() const { return has_value_; }
121 friend bool operator==(const Optional& m1, const Optional& m2) {
125 friend bool operator!=(const Optional& m1, const Optional& m2) {
134 bool has_value_;
  /frameworks/minikin/libs/minikin/
MinikinInternal.h 56 bool isVariationSelector(uint32_t codePoint);
72 inline operator bool() const { return size() > 0; }
  /frameworks/native/cmds/lshal/
NullableOStream.h 60 operator bool() const {

Completed in 652 milliseconds

1 2 3 45 6 7 8 91011>>