Lines Matching refs:GetValue
97 value = inter->GetValue(); in GetParam()
175 retValue = make_shared<IntegerValue>(this->GetValue() op value->GetValue()); \
184 retValue = make_shared<FloatValue>(this->GetValue() op value->GetValue()); \
201 retValue = make_shared<IntegerValue>(this->GetValue() op value->GetValue()); \
215 if (value == nullptr || value->GetValue() == 0) { \
218 retValue = make_shared<IntegerValue>(this->GetValue() / value->GetValue()); \
224 if (value == nullptr || value->GetValue() == 0) { \
227 retValue = make_shared<FloatValue>(this->GetValue() / value->GetValue()); \
295 retValue = make_shared<FloatValue>(this->GetValue() op value->GetValue()); \
304 retValue = make_shared<FloatValue>(this->GetValue() op value->GetValue()); \
321 retValue = make_shared<IntegerValue>(this->GetValue() op value->GetValue()); \
335 if (value == nullptr || value->GetValue() == 0) { \
338 retValue = make_shared<FloatValue>(this->GetValue() / value->GetValue()); \
408 float v2 = value->GetValue(); in ComputerEqual()
409 USCRIPT_LOGI("ComputerEqual %f v2: %f", GetValue(), v2); in ComputerEqual()
410 float diff = GetValue() - v2; in ComputerEqual()
419 float diff = GetValue() - value->GetValue(); in ComputerEqual()
421 USCRIPT_LOGI("ComputerEqual %f %f diff: %f", GetValue(), value->GetValue(), diff); in ComputerEqual()
476 str.assign(this->GetValue()); in Computer()
477 return make_shared<StringValue>(str + to_string(integerValue->GetValue())); in Computer()
484 str.assign(this->GetValue()); in Computer()
485 return make_shared<StringValue>(str + to_string(floatValue->GetValue())); in Computer()
492 str.assign(this->GetValue()); in Computer()
493 return make_shared<StringValue>(str + stringValue->GetValue()); in Computer()
511 str.assign(this->GetValue()); in ComputerLogic()
512 return str.compare(value->GetValue()); in ComputerLogic()