Home
last modified time | relevance | path

Searched refs:falseValue (Results 1 – 5 of 5) sorted by relevance

/third_party/node/test/fixtures/wpt/encoding/streams/
Ddecode-attributes.any.js24 for (const falseValue of [false, 0, '', undefined, null]) {
26 const stream = new TextDecoderStream('utf-8', { fatal: falseValue });
28 }, `setting fatal to '${falseValue}' should set the attribute to false`);
31 const stream = new TextDecoderStream('utf-8', { ignoreBOM: falseValue });
33 }, `setting ignoreBOM to '${falseValue}' should set the attribute to false`);
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DReactor.hpp3168 Value *falseValue = ifFalse.loadValue(); in IfThenElse() local
3170 return RValue<T>(Nucleus::createSelect(condition.value(), ifTrue.value(), falseValue)); in IfThenElse()
3178 Value *falseValue = ifFalse.loadValue(); in IfThenElse() local
3180 return RValue<T>(Nucleus::createSelect(condition.value(), trueValue, falseValue)); in IfThenElse()
/third_party/skia/src/sksl/codegen/
DSkSLVMCodeGenerator.cpp1711 skvm::I32 falseValue = fBuilder->splat( 0); in writeSwitchStatement() local
1715 skvm::I32 switchFallthrough = falseValue; in writeSwitchStatement()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DOutputSPIRV.cpp5174 const spirv::IdRef falseValue = mNodeData.back().idList[2].id; in visitTernary() local
5182 conditionValue, trueValue, falseValue); in visitTernary()
5188 spirv::PairIdRefIdRef{falseValue, falseBlockId}}); in visitTernary()
/third_party/glslang/SPIRV/
DGlslangToSpv.cpp3193 spv::Id falseValue = accessChainLoad(node->getTrueBlock()->getAsTyped()->getType()); in visitSelection() local
3218 trueValue, falseValue); in visitSelection()
3238 builder.createStore(falseValue, result); in visitSelection()