• Home
  • Raw
  • Download

Lines Matching refs:GetValue

88     value = inter->GetValue();  in GetParam()
158 retValue = make_shared<IntegerValue>(this->GetValue() op value->GetValue()); \
167 retValue = make_shared<FloatValue>(this->GetValue() op value->GetValue()); \
184 retValue = make_shared<IntegerValue>(this->GetValue() op value->GetValue()); \
198 if (value == nullptr || value->GetValue() == 0) { \
201 retValue = make_shared<IntegerValue>(this->GetValue() / value->GetValue()); \
207 if (value == nullptr || value->GetValue() == 0) { \
210 retValue = make_shared<FloatValue>(this->GetValue() / value->GetValue()); \
279 retValue = make_shared<FloatValue>(this->GetValue() op value->GetValue()); \
288 retValue = make_shared<FloatValue>(this->GetValue() op value->GetValue()); \
305 retValue = make_shared<IntegerValue>(this->GetValue() op value->GetValue()); \
319 if (value == nullptr || value->GetValue() == 0) { \
322 retValue = make_shared<FloatValue>(this->GetValue() / value->GetValue()); \
390 float v2 = value->GetValue(); in ComputerEqual()
391 USCRIPT_LOGI("ComputerEqual %f v2: %f", GetValue(), v2); in ComputerEqual()
392 float diff = GetValue() - v2; in ComputerEqual()
398 float diff = GetValue() - value->GetValue(); in ComputerEqual()
400 USCRIPT_LOGI("ComputerEqual %f %f diff: %f", GetValue(), value->GetValue(), diff); in ComputerEqual()
449 str.assign(this->GetValue()); in Computer()
450 return make_shared<StringValue>(str + to_string(integerValue->GetValue())); in Computer()
454 str.assign(this->GetValue()); in Computer()
455 return make_shared<StringValue>(str + to_string(floatValue->GetValue())); in Computer()
459 str.assign(this->GetValue()); in Computer()
460 return make_shared<StringValue>(str + stringValue->GetValue()); in Computer()
475 str.assign(this->GetValue()); in ComputerLogic()
476 return str.compare(value->GetValue()); in ComputerLogic()