Lines Matching refs:status
130 * @param status the error code. Possible errors include U_INVALID_FORMAT_ERROR
135 Formattable(StringPiece number, UErrorCode &status);
300 * getNumber().getDouble(status) is returned. If this object is
302 * the status is set to U_INVALID_FORMAT_ERROR.
303 * @param status the error code
307 double getDouble(UErrorCode& status) const;
320 * as appropriate, is returned and the status is set to
326 * getNumber().getLong(status) is returned. If this object is
328 * the status is set to U_INVALID_FORMAT_ERROR.
329 * @param status the error code
333 int32_t getLong(UErrorCode& status) const;
347 * and the status is set to U_INVALID_FORMAT_ERROR. If the
351 * getNumber().getDouble(status) is returned. If this object is
353 * the status is set to U_INVALID_FORMAT_ERROR.
354 * @param status the error code
358 int64_t getInt64(UErrorCode& status) const;
370 * status is set to U_INVALID_FORMAT_ERROR and the return value is
372 * @param status the error code.
376 UDate getDate(UErrorCode& status) const;
390 * string, status is set to U_INVALID_FORMAT_ERROR and a bogus
393 * @param status the error code.
397 UnicodeString& getString(UnicodeString& result, UErrorCode& status) const;
410 * the type is not a string, status is set to
412 * @param status the error code.
416 const UnicodeString& getString(UErrorCode& status) const;
428 * type is not a string, status is set to U_INVALID_FORMAT_ERROR
430 * @param status the error code.
434 UnicodeString& getString(UErrorCode& status);
448 * not an array, status is set to U_INVALID_FORMAT_ERROR, count is
451 * @param status the error code.
455 const Formattable* getArray(int32_t& count, UErrorCode& status) const;
489 * @param status the error code.
493 StringPiece getDecimalNumber(UErrorCode &status);
578 * @param status the error code. Set to U_INVALID_FORMAT_ERROR if the
583 UErrorCode &status);
636 * @param status the error code
640 inline int32_t getLong(UErrorCode* status) const;
658 void populateDecimalQuantity(number::impl::DecimalQuantity& output, UErrorCode& status) const;
670 * @param status error code
674 CharString *internalGetCharString(UErrorCode &status);
712 inline UDate Formattable::getDate(UErrorCode& status) const {
714 if (U_SUCCESS(status)) {
715 status = U_INVALID_FORMAT_ERROR;
731 inline int32_t Formattable::getLong(UErrorCode* status) const {
732 return getLong(*status);