Lines Matching refs:outValue
2303 bool ResourceTable::stringToValue(Res_value* outValue, StringPool* pool, in stringToValue() argument
2318 .stringToValue(outValue, &finalStr, str.string(), str.size(), preserveSpaces, in stringToValue()
2324 outValue->size = sizeof(Res_value); in stringToValue()
2325 outValue->res0 = 0; in stringToValue()
2326 outValue->dataType = outValue->TYPE_STRING; in stringToValue()
2327 outValue->data = 0; in stringToValue()
2335 if (outValue->dataType == outValue->TYPE_STRING) { in stringToValue()
2350 outValue->data = pool->add(finalStr, *style, configTypeName, config); in stringToValue()
2352 outValue->data = pool->add(finalStr, true, configTypeName, config); in stringToValue()
2356 outValue->data = 0; in stringToValue()
2507 Res_value* outValue) in getAttributeEnum() argument
2518 return getItemValue(attrID, e->getBag().valueAt(i).bagKeyId, outValue); in getAttributeEnum()
2527 Res_value* outValue) in getAttributeFlags() argument
2529 outValue->dataType = Res_value::TYPE_INT_HEX; in getAttributeFlags()
2530 outValue->data = 0; in getAttributeFlags()
2558 outValue->data |= val.data; in getAttributeFlags()
4414 uint32_t resID, uint32_t attrID, Res_value* outValue) in getItemValue() argument
4435 res = stringToValue(outValue, NULL, item->value, false, false, item->bagKeyId); in getItemValue()
4440 outValue->dataType, outValue->data); in getItemValue()