Home
last modified time | relevance | path

Searched refs:bool_ (Results 1 – 11 of 11) sorted by relevance

/external/clang/test/Analysis/
Ddtor.cpp378 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/
Dcxx-template-decl.cpp179 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/
Djson_value.cpp258 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/
Dstatstypes.cc255 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()
Dstatstypes.h318 bool bool_; member
/external/v8/src/ast/
Dast-value-factory.h218 explicit AstValue(bool b) : type_(BOOLEAN) { bool_ = b; } in AstValue()
231 bool bool_; member
Dast-value-factory.cc150 return bool_; in BooleanValue()
188 if (bool_) { in Internalize()
/external/selinux/libselinux/src/
Daudit2why.c405 PyObject *bool_ = Py_BuildValue("(si)", b->name, b->active); in analyze() local
406 PyList_SetItem(outboollist, len++, bool_); in analyze()
/external/opencv3/samples/python2/
Dfind_obj.py84 status = np.ones(len(kp_pairs), np.bool_)
/external/selinux/prebuilts/bin/
Dsediff.py90 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/
Dvalue.h482 bool bool_; member