Home | History | Annotate | Download | only in hal

Lines Matching full:int32values

344             return (T) propValue.value.int32Values.get(0);
346 return (T) Boolean.valueOf(propValue.value.int32Values.get(0) == 1);
350 Integer[] intArray = new Integer[propValue.value.int32Values.size()];
351 return (T) propValue.value.int32Values.toArray(intArray);
356 return (T) toIntArray(propValue.value.int32Values);
533 v.value.int32Values.add(boolValue ? 1 : 0);
538 v.value.int32Values.add(Integer.decode(s));
586 mPropValue.value.int32Values.add(value);
592 mPropValue.value.int32Values.add(value);
598 mPropValue.value.int32Values.addAll(values);
622 .append(",int32Values: ").append(Arrays.toString(value.value.int32Values.toArray()))