Lines Matching refs:value
82 int value;
228 return entries[ndx].value;
271 return (ri::ValueInfo::ValueTag)getEnumValue("sample value tag", s_sampleValueTagMap, DE_LENGTH_OF_ARRAY(s_sampleValueTagMap), tag);
290 static ri::NumericValue getNumericValue (const std::string& value)
292 const bool isFloat = value.find('.') != std::string::npos || value.find('e') != std::string::npos;
296 const double num = toDouble(stripLeadingWhitespace(value.c_str()));
301 const deInt64 num = toInt64(stripLeadingWhitespace(value.c_str()));
723 ri::SampleValue* value = sample->values.allocItem<ri::SampleValue>();
725 item = value;
772 // Parse value for number.
774 number->value = getNumericValue(m_curNumValue);
779 ri::SampleValue* value = static_cast<ri::SampleValue*>(curItem);
780 value->value = getNumericValue(m_curNumValue);