Searched refs:rawValue (Results 1 – 5 of 5) sorted by relevance
202 uint64_t rawValue = 0; in tryParse() local204 bool parseOK = base::ParseUint(newVal, &rawValue); in tryParse()219 if(rawValue <= UINT32_MAX) in tryParse()225 if(rawValue <= INT32_MAX) // rawValue always >= 0 in tryParse()227 else if(rawValue <= UINT32_MAX) in tryParse()229 else if(rawValue <= INT64_MAX) // rawValue always >= 0 in tryParse()231 else if(rawValue <= UINT64_MAX) in tryParse()236 if(rawValue <= INT32_MAX) // rawValue always >= 0 in tryParse()244 return new LiteralConstantExpression(kind, rawValue, value); in tryParse()402 return rawValue(castKind) + descriptionSuffix(); in value()[all …]
132 std::string rawValue() const;133 std::string rawValue(ScalarType::Kind castKind) const;
572 out << "vector_size: " << mSizes[0]->rawValue() << "\n"; in emitVtsTypeDeclarations()581 out << "vector_size: " << mSizes[index]->rawValue() << "\n"; in emitVtsTypeDeclarations()
553 std::string value = entry->rawValue(scalarType->getKind()); in emitVtsTypeDeclarations()746 std::string EnumValue::rawValue(ScalarType::Kind castKind) const { in rawValue() function in android::EnumValue748 return mValue->rawValue(castKind); in rawValue()
147 std::string rawValue(ScalarType::Kind castKind) const;