Searched refs:localError (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/tools/makeconv/ |
D | makeconv.cpp | 285 UErrorCode localError = U_ZERO_ERROR; in main() local 294 outFileName.append(basename, localError); in main() 298 outFileName.append(arg, localError); in main() 300 if (U_FAILURE(localError)) { in main() 301 return localError; in main() 318 outFileName.append(CONVERTER_FILE_EXTENSION, localError); in main() 319 if (U_FAILURE(localError)) { in main() 320 return localError; in main() 328 createConverter(&data, arg, &localError); in main() 330 if (U_FAILURE(localError)) in main() [all …]
|
/external/icu/icu4c/source/extra/uconv/ |
D | uconv.cpp | 793 UErrorCode localError = U_ZERO_ERROR; in convertFile() local 795 ucnv_getInvalidChars(convfrom, errorBytes, &errorLength, &localError); in convertFile() 796 if (U_FAILURE(localError) || errorLength == 0) { in convertFile() 946 UErrorCode localError = U_ZERO_ERROR; in convertFile() local 948 ucnv_getInvalidUChars(convto, errorUChars, &errorLength, &localError); in convertFile() 949 if (U_FAILURE(localError) || errorLength == 0) { in convertFile()
|
/external/boringssl/src/ssl/test/runner/ |
D | runner.go | 743 localError := "none" 745 localError = err.Error() 748 correctFailure = correctFailure && strings.Contains(localError, test.expectedLocalError) 769 …s: local error '%s', child error '%s', stdout:\n%s\nstderr:\n%s", msg, localError, childError, std…
|