Home | History | Annotate | Download | only in i18n

Lines Matching refs:array

65  * Creates a new Formattable array and copies the values from the specified
67 * @param array the original array
68 * @param count the original array count
69 * @return the new Formattable array.
71 static inline Formattable* createArrayCopy(const Formattable* array, int32_t count) {
75 result[i] = array[i]; // Don't memcpy!
206 // Sets each element in the array one by one and records the array count.
518 // Sets the value to an array of Formattable objects.
521 Formattable::setArray(const Formattable* array, int32_t count)
525 fValue.fArrayAndCount.fArray = createArrayCopy(array, count);
541 // Adopts the array value and its count.
544 Formattable::adoptArray(Formattable* array, int32_t count)
548 fValue.fArrayAndCount.fArray = array;
686 const Formattable* array;
687 array = obj.getArray(count);
689 // Recursively calling the console I/O routine for each element in the array.
691 FormattableStreamer::streamOut(stream, array[i]);