/third_party/skia/src/sksl/ir/ |
H A D | SkSLLiteral.h | 64 SkASSERT(type->isBoolean()); in MakeBool() 76 SkASSERT(type->isBoolean()); in Make() 91 SkASSERT(this->type().isBoolean()); in boolValue() 106 SkASSERT(this->type().isBoolean());
|
H A D | SkSLPrefixExpression.cpp | 128 SkASSERT(value->type().isBoolean()); in logical_not_operand() 184 if (!baseType.isBoolean()) { in Convert() 236 SkASSERT(base->type().isBoolean()); in Make()
|
H A D | SkSLExpression.h | 107 return this->kind() == Kind::kLiteral && this->type().isBoolean(); in isBoolLiteral()
|
H A D | SkSLType.h | 239 bool isBoolean() const { in isBoolean() function in SkSL::Type
|
H A D | SkSLFunctionCall.cpp | 58 SkASSERT(expr.type().componentType().isBoolean()); in type_check_expression() 553 if (arguments[2]->type().componentType().isBoolean()) { in optimize_intrinsic_call() 562 } else if (numericType.isBoolean()) { in optimize_intrinsic_call()
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deCommandLine.hpp | 133 template<typename T> inline bool isBoolean (void) { return false; } in isBoolean() function 134 template<> inline bool isBoolean<bool> (void) { return true; } in isBoolean() function 137 template<class Option> inline bool isBooleanOpt (void) { return isBoolean<typename OptTraits<Option>::ValueType>(); } in isBooleanOpt()
|
/third_party/node/lib/ |
H A D | util.js | 95 function isBoolean(arg) { function 364 isBoolean,
|
/third_party/node/deps/npm/node_modules/@sigstore/core/dist/asn1/ |
H A D | tag.js | 61 isBoolean() {
|
H A D | obj.js | 57 if (!this.tag.isBoolean()) {
|
/third_party/skia/src/sksl/dsl/ |
H A D | DSLType.cpp | 179 bool DSLType::isBoolean() const { in isBoolean() function in SkSL::dsl::DSLType 180 return this->skslType().isBoolean(); in isBoolean()
|
/third_party/skia/src/sksl/ |
H A D | SkSLConstantFolder.cpp | 511 if (leftType.componentType().isBoolean()) { in Simplify() 525 if (rightType.isBoolean()) { in Simplify() 540 if (leftType.isBoolean()) { in Simplify()
|
H A D | SkSLMemoryLayout.h | 107 if (type.isBoolean()) { in size()
|
H A D | SkSLOperators.cpp | 305 if (leftComponentType.isBoolean() || rightComponentType.isBoolean()) { in determineBinaryType()
|
H A D | SkSLDehydrator.cpp | 374 } else if (l.type().isBoolean()) { in write()
|
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/ |
H A D | option.js | 236 isBoolean() {
|
H A D | help.js | 294 (option.isBoolean() && typeof option.defaultValue === 'boolean');
|
H A D | command.js | 555 } else if (option.isBoolean() || option.optional) {
|
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLSPIRVCodeGenerator.cpp | 220 return (type.isScalar() || type.isVector()) && type.componentType().isBoolean(); in is_bool() 588 if (type->isBoolean()) { in getType() 1149 if (arguments[2]->type().componentType().isBoolean()) { in writeSpecialIntrinsic() 1329 if (outputType.isBoolean()) { in castScalarToType() 1355 if (inputType.isBoolean()) { in castScalarToFloat() 1389 if (inputType.isBoolean()) { in castScalarToSignedInt() 1424 if (inputType.isBoolean()) { in castScalarToUnsignedInt() 1444 SkASSERT(c.type().isBoolean()); in writeBooleanConstructor() 1453 if (inputType.isBoolean()) { in castScalarToBoolean() 2458 SkASSERT(resultType.isBoolean()); in writeBinaryExpression() [all...] |
H A D | SkSLMetalCodeGenerator.cpp | 862 if (arguments[2]->type().componentType().isBoolean()) { in writeIntrinsicCall() 1725 SkASSERT(type.isBoolean()); in writeLiteral()
|
/third_party/skia/include/sksl/ |
H A D | DSLType.h | 97 bool isBoolean() const;
|
/third_party/skia/tests/ |
H A D | SkSLDSLTest.cpp | 487 REPORTER_ASSERT(r, DSLType(kBool_Type).isBoolean()); in DEF_GPUTEST_FOR_MOCK_CONTEXT() 499 REPORTER_ASSERT(r, !DSLType(kInt_Type).isBoolean()); in DEF_GPUTEST_FOR_MOCK_CONTEXT() 511 REPORTER_ASSERT(r, !DSLType(kUInt_Type).isBoolean()); in DEF_GPUTEST_FOR_MOCK_CONTEXT() 523 REPORTER_ASSERT(r, !DSLType(kFloat_Type).isBoolean()); in DEF_GPUTEST_FOR_MOCK_CONTEXT() 535 REPORTER_ASSERT(r, !DSLType(kFloat2_Type).isBoolean()); in DEF_GPUTEST_FOR_MOCK_CONTEXT() 547 REPORTER_ASSERT(r, !DSLType(kHalf2x2_Type).isBoolean()); in DEF_GPUTEST_FOR_MOCK_CONTEXT() 559 REPORTER_ASSERT(r, !DSLType(Array(kFloat_Type, 2)).isBoolean()); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | underscoreTest1.js | 59 isBoolean(): boolean; 233 isBoolean(): ChainedObject<boolean>; 615 isBoolean(object: any): boolean; 846 _.isBoolean(null); 1046 _.isBoolean(null);
|
/third_party/node/src/ |
H A D | jsvm.h | 2463 * @param isBoolean: Whether the given value is Boolean. 2469 bool* isBoolean);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmTypeTests.cpp | 1949 const bool isBoolean = isBooleanResultTest(spirvOperation); 1950 const string resultName = (returnHighPart || isBoolean) ? "%op_result_pre" : "%op_result"; 1951 const string resultType = isBoolean ? getBooleanResultType(m_vectorSize) : m_spirvTestType; 2002 finalizeFullOperation(full_operation, resultName, returnHighPart, isBoolean);
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmTypeTests.cpp | 1951 const bool isBoolean = isBooleanResultTest(spirvOperation); 1952 const string resultName = (returnHighPart || isBoolean) ? "%op_result_pre" : "%op_result"; 1953 const string resultType = isBoolean ? getBooleanResultType(m_vectorSize) : m_spirvTestType; 2004 finalizeFullOperation(full_operation, resultName, returnHighPart, isBoolean);
|