Lines Matching refs:GetValue

97     value = inter->GetValue();

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();
409 USCRIPT_LOGI("ComputerEqual %f v2: %f", GetValue(), v2);
410 float diff = GetValue() - v2;
419 float diff = GetValue() - value->GetValue();
421 USCRIPT_LOGI("ComputerEqual %f %f diff: %f", GetValue(), value->GetValue(), diff);
476 str.assign(this->GetValue());
477 return make_shared<StringValue>(str + to_string(integerValue->GetValue()));
484 str.assign(this->GetValue());
485 return make_shared<StringValue>(str + to_string(floatValue->GetValue()));
492 str.assign(this->GetValue());
493 return make_shared<StringValue>(str + stringValue->GetValue());
511 str.assign(this->GetValue());
512 return str.compare(value->GetValue());