Searched refs:attributeValue (Results 1 – 4 of 4) sorted by relevance
363 String attributeValue = parser.getAttributeValue(null, attributeName); in getNullableIntAttribute() local365 if (attributeValue == null) { in getNullableIntAttribute()367 } else if (attributeValue.isEmpty()) { in getNullableIntAttribute()370 return Integer.parseInt(attributeValue); in getNullableIntAttribute()373 "Bad integer for attributeName=" + attributeName + ": " + attributeValue, 0); in getNullableIntAttribute()
944 final String attributeValue = parser.getAttributeValue(null, att); in safeLongArray() local945 if (TextUtils.isEmpty(attributeValue)) return defValue; in safeLongArray()946 String[] values = attributeValue.split(DELIMITER); in safeLongArray()
557 private float[] readFloatArray(String attributeValue) in readFloatArray() argument559 String[] tokens = attributeValue.replaceAll(" ", "").replaceAll("\n", "").split(","); in readFloatArray()
3058 String attributeValue = parser.getAttributeValue(null, "version"); in readProfileStateFromFileLocked() local3060 version = Integer.parseInt(attributeValue); in readProfileStateFromFileLocked()