/external/apache-commons-bcel/src/examples/Mini/ |
ASTExpr.java | 195 private static String toBool(String i) { 228 case AND: ASTFunDecl.push(buf, toInt(toBool(_body_int) + " && " + 229 toBool(_body_int2))); break; 230 case OR: ASTFunDecl.push(buf, toInt(toBool(_body_int) + " || " + 231 toBool(_body_int2))); break;
|
/external/deqp/executor/ |
xeTestResultParser.cpp | 59 static inline bool toBool (const char* str) 542 shaderProgram->linkStatus = toBool(getAttribute("LinkStatus")); 555 shader->compileStatus = toBool(getAttribute("CompileStatus")); 596 info->compileStatus = toBool(getAttribute("CompileStatus")); 620 config->bindToTextureRGB = toBool(getAttribute("BindToTextureRGB")); 621 config->bindToTextureRGBA = toBool(getAttribute("BindToTextureRGBA")); 633 config->nativeRenderable = toBool(getAttribute("NativeRenderable"));
|
/external/deqp/modules/gles2/scripts/ |
gen-conversions.py | 96 res.append(Vec.fromScalarList(reduce(operator.add, [x[ndx].toBool().getScalars() for x in comps]))) 296 genConversionCases([inFloat, inInt, inBool], [toFloat, toInt, toBool]))) 304 genConversionCases([inVec2, inVec3, inVec4, inIVec2, inIVec3, inIVec4, inBVec2, inBVec3, inBVec4], [toFloat, toInt, toBool])))
|
genutil.py | 117 def toBool(lst): return [Scalar(bool(v.x)) for v in lst] 124 def toBVec4(lst): return [v.toBool().toVec4() for v in lst] 125 def toBVec3(lst): return [v.toBool().toVec3() for v in lst] 126 def toBVec2(lst): return [v.toBool().toVec2() for v in lst] 235 def toBool(self): return Scalar(bool(self.x)) 349 def toBool(self): return Vec2(bool(self.x), bool(self.y)) 435 def toBool(self): return Vec3(bool(self.x), bool(self.y), bool(self.z)) 528 def toBool(self): return Vec4(bool(self.x), bool(self.y), bool(self.z), bool(self.w))
|
/external/deqp/modules/gles3/scripts/ |
gen-conversions.py | 99 res.append(Vec.fromScalarList(reduce(operator.add, [x[ndx].toBool().getScalars() for x in comps]))) 322 genConversionCases([inFloat, inInt, inUint, inBool], [toFloat, toInt, toBool]) +\ 332 genConversionCases([inVec2, inVec3, inVec4, inIVec2, inIVec3, inIVec4, inUVec2, inUVec3, inUVec4, inBVec2, inBVec3, inBVec4], [toFloat, toInt, toBool]) +\
|
genutil.py | 118 def toBool(lst): return [Scalar(bool(v.x)) for v in lst] 125 def toBVec4(lst): return [v.toBool().toVec4() for v in lst] 126 def toBVec3(lst): return [v.toBool().toVec3() for v in lst] 127 def toBVec2(lst): return [v.toBool().toVec2() for v in lst] 258 def toBool(self): return Scalar(bool(self.x)) 417 def toBool(self): return Vec2(bool(self.x), bool(self.y)) 528 def toBool(self): return Vec3(bool(self.x), bool(self.y), bool(self.z)) 648 def toBool(self): return Vec4(bool(self.x), bool(self.y), bool(self.z), bool(self.w))
|
/external/deqp/modules/gles31/scripts/ |
genutil.py | 118 def toBool(lst): return [Scalar(bool(v.x)) for v in lst] 125 def toBVec4(lst): return [v.toBool().toVec4() for v in lst] 126 def toBVec3(lst): return [v.toBool().toVec3() for v in lst] 127 def toBVec2(lst): return [v.toBool().toVec2() for v in lst] 258 def toBool(self): return Scalar(bool(self.x)) 419 def toBool(self): return Vec2(bool(self.x), bool(self.y)) 530 def toBool(self): return Vec3(bool(self.x), bool(self.y), bool(self.z)) 650 def toBool(self): return Vec4(bool(self.x), bool(self.y), bool(self.z), bool(self.w))
|
/external/golang-protobuf/proto/ |
table_merge.go | 128 case fi.basicWidth == 1 && !*sfp.toBool(): 459 if v := *src.toBool(); v { 460 *dst.toBool() = v
|
pointer_reflect.go | 219 func (p pointer) toBool() *bool {
|
pointer_unsafe.go | 194 func (p pointer) toBool() *bool {
|
table_marshal.go | [all...] |
table_unmarshal.go | [all...] |
/external/syzkaller/vendor/github.com/golang/protobuf/proto/ |
table_merge.go | 128 case fi.basicWidth == 1 && !*sfp.toBool(): 459 if v := *src.toBool(); v { 460 *dst.toBool() = v
|
pointer_reflect.go | 216 func (p pointer) toBool() *bool {
|
pointer_unsafe.go | 189 func (p pointer) toBool() *bool {
|
table_marshal.go | 1197 v := *ptr.toBool() [all...] |
table_unmarshal.go | [all...] |
/external/u-boot/scripts/kconfig/ |
qconf.cc | 337 showName = configSettings->value("/showName", false).toBool(); 338 showRange = configSettings->value("/showRange", false).toBool(); 339 showData = configSettings->value("/showData", false).toBool(); 1025 setShowDebug(configSettings->value("/showDebug", false).toBool()); [all...] |
/external/libxml2/ |
xpath.c | [all...] |
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
wpagui.cpp | 149 startInTray = settings.value("in_tray").toBool(); [all...] |
/external/eigen/unsupported/test/mpreal/ |
mpreal.h | 288 bool toBool ( ) const;
298 explicit operator bool () const { return toBool(); }
[all...] |