Home
last modified time | relevance | path

Searched refs:trueValue (Results 1 – 7 of 7) sorted by relevance

/third_party/node/test/fixtures/wpt/encoding/streams/
Ddecode-attributes.any.js36 for (const trueValue of [true, 1, {}, [], 'yes']) {
38 const stream = new TextDecoderStream('utf-8', { fatal: trueValue });
40 }, `setting fatal to '${trueValue}' should set the attribute to true`);
43 const stream = new TextDecoderStream('utf-8', { ignoreBOM: trueValue });
45 }, `setting ignoreBOM to '${trueValue}' should set the attribute to true`);
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
DAddAndTrueToLoopCondition.cpp40 TIntermTyped *trueValue = CreateBoolNode(true); in visitLoop() local
43 TIntermBinary *andOp = new TIntermBinary(EOpLogicalAnd, loop->getCondition(), trueValue); in visitLoop()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/apple/
DAddAndTrueToLoopCondition.cpp41 TIntermTyped *trueValue = CreateBoolNode(true); in visitLoop() local
44 TIntermBinary *andOp = new TIntermBinary(EOpLogicalAnd, loop->getCondition(), trueValue); in visitLoop()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DReactor.hpp3159 Value *trueValue = ifTrue.loadValue(); in IfThenElse() local
3161 return RValue<T>(Nucleus::createSelect(condition.value(), trueValue, ifFalse.value())); in IfThenElse()
3177 Value *trueValue = ifTrue.loadValue(); in IfThenElse() local
3180 return RValue<T>(Nucleus::createSelect(condition.value(), trueValue, falseValue)); in IfThenElse()
/third_party/skia/src/sksl/codegen/
DSkSLVMCodeGenerator.cpp1712 skvm::I32 trueValue = fBuilder->splat(~0); in writeSwitchStatement() local
1736 switchFallthrough.id = this->writeConditionalStore(switchFallthrough.id, trueValue.id, in writeSwitchStatement()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DOutputSPIRV.cpp5172 const spirv::IdRef trueValue = mNodeData.back().idList[0].id; in visitTernary() local
5182 conditionValue, trueValue, falseValue); in visitTernary()
5187 {spirv::PairIdRefIdRef{trueValue, trueBlockId}, in visitTernary()
/third_party/glslang/SPIRV/
DGlslangToSpv.cpp3191 spv::Id trueValue = accessChainLoad(node->getTrueBlock()->getAsTyped()->getType()); in visitSelection() local
3209 …if (glslangIntermediate->getSpv().spv < glslang::EShTargetSpv_1_4 && builder.isVector(trueValue)) { in visitSelection()
3212 … builder.getNumComponents(trueValue))); in visitSelection()
3218 trueValue, falseValue); in visitSelection()
3235 builder.createStore(trueValue, result); in visitSelection()