/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | bool_test_pairs.js | 12 * @return {!Array<{name: string, boolValue: boolean, bufferDecoder: 19 boolValue: true, 24 boolValue: false, 29 boolValue: true, 35 boolValue: false, 41 boolValue: true, 48 boolValue: true, 55 boolValue: true, 62 boolValue: false, 69 boolValue [all...] |
H A D | reader_test.js | 53 expect(d).toEqual(pair.boolValue);
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | BindGeneratesResourceTest.cpp | 40 GLboolean boolValue = GL_TRUE; in TEST_P() local 41 glGetBooleanv(GL_BIND_GENERATES_RESOURCE_CHROMIUM, &boolValue); in TEST_P() 43 EXPECT_GL_FALSE(boolValue); in TEST_P() 45 boolValue = glIsEnabled(GL_BIND_GENERATES_RESOURCE_CHROMIUM); in TEST_P() 47 EXPECT_GL_FALSE(boolValue); in TEST_P()
|
H A D | ClientArraysTest.cpp | 51 GLboolean boolValue = GL_TRUE; in TEST_P() local 52 glGetBooleanv(GL_CLIENT_ARRAYS_ANGLE, &boolValue); in TEST_P() 54 EXPECT_GL_FALSE(boolValue); in TEST_P()
|
/third_party/vk-gl-cts/framework/qphelper/ |
H A D | qpXmlWriter.h | 49 deBool boolValue; member 59 attrib.boolValue = (deBool)0xFFFFFFFFu; in qpSetStringAttrib() 70 attrib.boolValue = (deBool)0xFFFFFFFFu; in qpSetIntAttrib() 81 attrib.boolValue = value; in qpSetBoolAttrib()
|
H A D | qpXmlWriter.c | 229 writeEscaped(writer, attrib->boolValue ? "True" : "False"); in qpXmlWriter_startElement()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgToken.cpp | 66 m_arg.boolValue = other.m_arg.boolValue; in operator =() 88 else if (m_type == BOOL_LITERAL && m_arg.boolValue != other.m_arg.boolValue) in operator !=()
|
H A D | rsgToken.hpp | 159 bool boolValue; member 191 m_arg.boolValue = value; in Token() 220 return m_arg.boolValue; in getBool()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcParallelShaderCompileTests.cpp | 94 GLboolean boolValue; in iterate() local 103 gl.getBooleanv(GL_MAX_SHADER_COMPILER_THREADS_KHR, &boolValue); in iterate() 124 if (boolValue != (intValue != 0) || intValue != (GLint)floatValue || in iterate() 130 << "bool(" << (int)boolValue << "), " in iterate()
|
/third_party/skia/third_party/externals/angle2/src/common/serializer/ |
H A D | JsonSerializer.cpp | 104 rapidjson::Value boolValue(value); in addBool() 105 addValue(name, std::move(boolValue)); in addBool()
|
/third_party/skia/src/sksl/ |
H A D | SkSLConstantFolder.cpp | 32 bool rightVal = right.as<Literal>().boolValue(); in eliminate_no_op_boolean() 50 bool leftVal = left.as<Literal>().boolValue(); in short_circuit_boolean() 358 bool leftVal = left->as<Literal>().boolValue(); in Simplify() 359 bool rightVal = right->as<Literal>().boolValue(); in Simplify()
|
H A D | SkSLDehydrator.cpp | 376 this->writeU8(l.boolValue()); in write()
|
/third_party/cJSON/ |
H A D | cJSON.h | 311 #define cJSON_SetBoolValue(object, boolValue) ( \ 313 (object)->type=((object)->type &(~(cJSON_False|cJSON_True)))|((boolValue)?cJSON_True:cJSON_False) : \
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLIfStatement.cpp | 88 if (testValue->as<Literal>().boolValue()) { in Make()
|
H A D | SkSLTernaryExpression.cpp | 72 return testExpr->as<Literal>().boolValue() ? std::move(ifTrue) in Make()
|
H A D | SkSLLiteral.h | 90 SKSL_INT boolValue() const { in boolValue() function in SkSL::Literal
|
H A D | SkSLBinaryExpression.cpp | 184 bool capsBitIsTrue = caps->isBoolLiteral() && caps->as<Literal>().boolValue(); in Make()
|
H A D | SkSLPrefixExpression.cpp | 130 return Literal::MakeBool(operand->fLine, !b.boolValue(), &operand->type()); in logical_not_operand()
|
/third_party/protobuf/objectivec/ |
H A D | GPBStruct.pbobjc.h | 151 @property(nonatomic, readwrite) BOOL boolValue; variable
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fProgramUniformTests.cpp | 734 static VarValue getRandomBoolRepresentation (const VarValue& boolValue, const glu::DataType targetScalarType, Random& rnd) in getRandomBoolRepresentation() argument 736 DE_ASSERT(glu::isDataTypeBoolOrBVec(boolValue.type)); in getRandomBoolRepresentation() 738 const int size = glu::getDataTypeScalarSize(boolValue.type); in getRandomBoolRepresentation() 748 if (boolValue.val.boolV[i]) in getRandomBoolRepresentation() 762 if (boolValue.val.boolV[i]) in getRandomBoolRepresentation() 772 if (boolValue.val.boolV[i]) in getRandomBoolRepresentation()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fUniformApiTests.cpp | 835 static VarValue getRandomBoolRepresentation (const VarValue& boolValue, const glu::DataType targetScalarType, Random& rnd) in getRandomBoolRepresentation() argument 837 DE_ASSERT(glu::isDataTypeBoolOrBVec(boolValue.type)); in getRandomBoolRepresentation() 839 const int size = glu::getDataTypeScalarSize(boolValue.type); in getRandomBoolRepresentation() 849 if (boolValue.val.boolV[i]) in getRandomBoolRepresentation() 863 if (boolValue.val.boolV[i]) in getRandomBoolRepresentation() 873 if (boolValue.val.boolV[i]) in getRandomBoolRepresentation()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fUniformApiTests.cpp | 684 static VarValue getRandomBoolRepresentation (const VarValue& boolValue, const glu::DataType targetScalarType, Random& rnd) in getRandomBoolRepresentation() argument 686 DE_ASSERT(glu::isDataTypeBoolOrBVec(boolValue.type)); in getRandomBoolRepresentation() 688 const int size = glu::getDataTypeScalarSize(boolValue.type); in getRandomBoolRepresentation() 698 if (boolValue.val.boolV[i]) in getRandomBoolRepresentation() 712 if (boolValue.val.boolV[i]) in getRandomBoolRepresentation()
|
/third_party/python/Modules/ |
H A D | _tkinter.c | 1067 int boolValue; in fromBoolean() local 1068 if (Tcl_GetBooleanFromObj(Tkapp_Interp(tkapp), value, &boolValue) == TCL_ERROR) in fromBoolean() 1070 return PyBool_FromLong(boolValue); in fromBoolean()
|
/third_party/protobuf/conformance/ |
H A D | binary_json_conformance_suite.cc | 2894 "boolValue": true, in RunJsonTestsForStruct() 2914 key: "boolValue" in RunJsonTestsForStruct()
|
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLGLSLCodeGenerator.cpp | 1005 this->write(l.boolValue() ? "true" : "false"); in writeLiteral()
|