Home
last modified time | relevance | path

Searched refs:boolValue (Results 1 – 25 of 35) sorted by relevance

12

/third_party/protobuf/js/experimental/runtime/kernel/
Dbool_test_pairs.js19 boolValue: true, property
24 boolValue: false, property
29 boolValue: true, property
35 boolValue: false, property
41 boolValue: true, property
48 boolValue: true, property
55 boolValue: true, property
62 boolValue: false, property
69 boolValue: true, property
Dreader_test.js53 expect(d).toEqual(pair.boolValue);
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DBindGeneratesResourceTest.cpp40 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()
DClientArraysTest.cpp51 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/randomshaders/
DrsgToken.cpp66 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 !=()
DrsgToken.hpp159 bool boolValue; member
191 m_arg.boolValue = value; in Token()
220 return m_arg.boolValue; in getBool()
/third_party/vk-gl-cts/framework/qphelper/
DqpXmlWriter.h49 deBool boolValue; member
59 attrib.boolValue = (deBool)0xFFFFFFFFu; in qpSetStringAttrib()
70 attrib.boolValue = (deBool)0xFFFFFFFFu; in qpSetIntAttrib()
81 attrib.boolValue = value; in qpSetBoolAttrib()
DqpXmlWriter.c226 writeEscaped(writer, attrib->boolValue ? "True" : "False"); in qpXmlWriter_startElement()
/third_party/python/Mac/PythonLauncher/
DFileSettings.m221 if (value) honourhashbang = [value boolValue];
223 if (value) debug = [value boolValue];
225 if (value) verbose = [value boolValue];
227 if (value) inspect = [value boolValue];
229 if (value) optimize = [value boolValue];
231 if (value) nosite = [value boolValue];
233 if (value) tabs = [value boolValue];
239 if (value) with_terminal = [value boolValue];
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcParallelShaderCompileTests.cpp94 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/node/deps/v8/tools/tracing/proto-converter/
Dproto-to-json.ts53 if (typeof arg.boolValue !== 'undefined') {
54 return arg.boolValue;
/third_party/skia/third_party/externals/angle2/src/common/serializer/
DJsonSerializer.cpp104 rapidjson::Value boolValue(value); in addBool() local
105 addValue(name, std::move(boolValue)); in addBool()
/third_party/protobuf/objectivec/
DGPBExtensionInternals.m75 FIELD_CASE(Bool, boolValue)
108 FIELD_CASE(Bool, boolValue)
174 FIELD_CASE(Bool, boolValue)
215 FIELD_CASE(Bool, boolValue)
DGPBStruct.pbobjc.h151 @property(nonatomic, readwrite) BOOL boolValue;
DGPBStruct.pbobjc.m148 @dynamic boolValue;
195 .name = "boolValue",
/third_party/skia/src/sksl/
DSkSLConstantFolder.cpp32 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()
/third_party/cJSON/
DcJSON.h283 #define cJSON_SetBoolValue(object, boolValue) ( \ argument
285 …(object)->type=((object)->type &(~(cJSON_False|cJSON_True)))|((boolValue)?cJSON_True:cJSON_False) …
/third_party/skia/src/sksl/ir/
DSkSLTernaryExpression.cpp72 return testExpr->as<Literal>().boolValue() ? std::move(ifTrue) in Make()
DSkSLIfStatement.cpp88 if (testValue->as<Literal>().boolValue()) { in Make()
DSkSLLiteral.h90 SKSL_INT boolValue() const { in boolValue() function
DSkSLPrefixExpression.cpp130 return Literal::MakeBool(operand->fLine, !b.boolValue(), &operand->type()); in logical_not_operand()
DSkSLBinaryExpression.cpp184 bool capsBitIsTrue = caps->isBoolLiteral() && caps->as<Literal>().boolValue(); in Make()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fProgramUniformTests.cpp734 static VarValue getRandomBoolRepresentation (const VarValue& boolValue, const glu::DataType targetS… 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/
Des3fUniformApiTests.cpp835 static VarValue getRandomBoolRepresentation (const VarValue& boolValue, const glu::DataType targetS… 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/
Des2fUniformApiTests.cpp684 static VarValue getRandomBoolRepresentation (const VarValue& boolValue, const glu::DataType targetS… 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()

12