Home | History | Annotate | Download | only in common

Lines Matching refs:errorCode

2096     UErrorCode errorCode;
2103 errorCode=U_ZERO_ERROR;
2104 rb=ures_open(path, locale, &errorCode);
2105 if(U_FAILURE(errorCode)) {
2107 *pErrorCode=errorCode;
2109 } else if(errorCode==U_USING_DEFAULT_WARNING ||
2110 (errorCode==U_USING_FALLBACK_WARNING && *pErrorCode!=U_USING_DEFAULT_WARNING)
2113 *pErrorCode=errorCode;
2119 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
2122 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
2123 item = ures_getStringByKeyWithFallback(&subTable, itemKey, pLength, &errorCode);
2124 if(U_FAILURE(errorCode)){
2125 *pErrorCode = errorCode;
2130 ures_getByKeyWithFallback(&table,subTableKey, &table, &errorCode);
2132 if(U_SUCCESS(errorCode)){
2133 item = ures_getStringByKeyWithFallback(&table, itemKey, pLength, &errorCode);
2134 if(U_FAILURE(errorCode)){
2136 *pErrorCode = errorCode; /*save the errorCode*/
2137 errorCode = U_ZERO_ERROR;
2146 item = ures_getStringByKeyWithFallback(&table, replacement, pLength, &errorCode);
2147 if(U_SUCCESS(errorCode)){
2148 *pErrorCode = errorCode;
2157 if(U_FAILURE(errorCode)){
2162 *pErrorCode = errorCode;
2163 errorCode = U_ZERO_ERROR;
2165 fallbackLocale = ures_getStringByKeyWithFallback(&table, "Fallback", &len, &errorCode);
2166 if(U_FAILURE(errorCode)){
2167 *pErrorCode = errorCode;
2179 errorCode);
2180 if(U_FAILURE(errorCode)){
2181 *pErrorCode = errorCode;