Lines Matching defs:value
376 std::unique_ptr<Expression> value = this->expression();
378 cases.push_back(std::make_unique<SwitchCase>(/*line=*/-1, std::move(value),
388 std::unique_ptr<Expression> value = this->expression();
389 return VarDeclaration::Make(fContext, var, baseType, arraySize, std::move(value));
420 bool value = this->readU8();
421 return Literal::MakeBool(fContext, /*line=*/-1, value);
477 float value;
478 memcpy(&value, &floatBits, sizeof(value));
479 return Literal::MakeFloat(/*line=*/-1, value, type);
495 int value = this->readS32();
496 return Literal::MakeInt(/*line=*/-1, value, type);