Lines Matching refs:field
48 * field within the formatted output with two indices: the index
49 * of the first character of the field and the index of the last
50 * character of the field.
57 * formatted output (such as the position of a field).
109 * DONT_CARE may be specified as the field to indicate that the
110 * caller doesn't need to specify a field. Do not subclass.
115 * Creates a FieldPosition object with a non-specified field.
122 * Creates a FieldPosition object for the given field. Fields are
132 FieldPosition(int32_t field)
133 : UObject(), fField(field), fBeginIndex(0), fEndIndex(0) {}
159 * @return TRUE if the two field positions are equal, FALSE otherwise.
167 * @return TRUE if the two field positions are not equal, FALSE otherwise.
186 * Retrieve the field identifier.
187 * @return the field identifier.
193 * Retrieve the index of the first character in the requested field.
194 * @return the index of the first character in the requested field.
201 * requested field.
203 * requested field.
209 * Set the field.
210 * @param f the new value of the field.
245 * Input: Desired field to determine start and end offsets for.
251 * Output: Start offset of field in text.
252 * If the field does not occur in the text, 0 is returned.
257 * Output: End offset of field in text.
258 * If the field does not occur in the text, 0 is returned.