Searched refs:bool_ (Results 1 – 11 of 11) sorted by relevance
/external/clang/test/Analysis/ |
D | dtor.cpp | 378 bool bool_; member 379 NRCheck():bool_(true) {} in NRCheck() 381 operator bool() const { return bool_; } in operator bool() 385 bool bool_; member 386 CheckAutoDestructor():bool_(true) {} in CheckAutoDestructor() 387 operator bool() const { return bool_; } in operator bool() 391 bool bool_; member 392 CheckCustomDestructor():bool_(true) {} in CheckCustomDestructor() 394 operator bool() const { return bool_; } in operator bool()
|
/external/clang/test/Parser/ |
D | cxx-template-decl.cpp | 179 template<bool b> struct bool_ { typedef int type; }; 180 template<> struct bool_<false> { }; 184 #define sassert(_b_) bool_<(_b_)>::type CAT(var, __LINE__);
|
/external/jsoncpp/src/lib_json/ |
D | json_value.cpp | 258 value_.bool_ = false; in Value() 321 value_.bool_ = value; in Value() 449 return value_.bool_ < other.value_.bool_; in operator <() 498 return value_.bool_ == other.value_.bool_; in operator ==() 535 return value_.bool_ ? "true" : "false"; in asString() 568 return value_.bool_ ? 1 : 0; in asInt() 590 return value_.bool_ ? 1 : 0; in asUInt() 613 return value_.bool_ ? 1 : 0; in asInt64() 634 return value_.bool_ ? 1 : 0; in asUInt64() 673 return value_.bool_ ? 1.0 : 0.0; in asDouble() [all …]
|
/external/webrtc/talk/app/webrtc/ |
D | statstypes.cc | 255 value_.bool_ = b; in Value() 308 return value_.bool_ == other.value_.bool_; in Equals() 340 return type_ == kBool && value_.bool_ == value; in operator ==() 378 return value_.bool_; in bool_val() 615 return value_.bool_ ? "true" : "false"; in ToString()
|
D | statstypes.h | 318 bool bool_; member
|
/external/v8/src/ast/ |
D | ast-value-factory.h | 218 explicit AstValue(bool b) : type_(BOOLEAN) { bool_ = b; } in AstValue() 231 bool bool_; member
|
D | ast-value-factory.cc | 150 return bool_; in BooleanValue() 188 if (bool_) { in Internalize()
|
/external/selinux/libselinux/src/ |
D | audit2why.c | 405 PyObject *bool_ = Py_BuildValue("(si)", b->name, b->active); in analyze() local 406 PyList_SetItem(outboollist, len++, bool_); in analyze()
|
/external/opencv3/samples/python2/ |
D | find_obj.py | 84 status = np.ones(len(kp_pairs), np.bool_)
|
/external/selinux/prebuilts/bin/ |
D | sediff.py | 90 args.user, args.bool_, args.sensitivity, args.category, args.level, 175 if all_differences or args.bool_: 177 diff.modified_booleans or args.bool_:
|
/external/jsoncpp/include/json/ |
D | value.h | 482 bool bool_; member
|