HomeSort by relevance Sort by last modified time
    Searched refs:errorCode (Results 476 - 500 of 716) sorted by null

<<11121314151617181920>>

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEvent.java 279 public int errorCode;
  /external/chromium_org/third_party/icu/source/common/
usprep.cpp 234 UErrorCode* errorCode) {
243 if(errorCode==NULL || U_FAILURE(*errorCode)) {
249 dataMemory=udata_openChoice(path, type, name, isSPrepAcceptable, NULL, errorCode);
250 if(U_FAILURE(*errorCode)) {
256 utrie_unserialize(&_sprepTrie, pb, p[_SPREP_INDEX_TRIE_SIZE], errorCode);
260 if(U_FAILURE(*errorCode)) {
286 if(U_FAILURE(*errorCode)){
294 *errorCode = U_INVALID_FORMAT_ERROR;
ucnv.c 321 UErrorCode errorCode = U_ZERO_ERROR;
332 ucnv_getName(converter, &errorCode), converter, converter->isCopyLocal);
351 errorCode = U_ZERO_ERROR;
352 converter->fromCharErrorBehaviour(converter->toUContext, &toUArgs, NULL, 0, UCNV_CLOSE, &errorCode);
366 errorCode = U_ZERO_ERROR;
367 converter->fromUCharErrorBehaviour(converter->fromUContext, &fromUArgs, NULL, 0, 0, UCNV_CLOSE, &errorCode);
569 UErrorCode errorCode;
583 errorCode = U_ZERO_ERROR;
584 converter->fromCharErrorBehaviour(converter->toUContext, &toUArgs, NULL, 0, UCNV_RESET, &errorCode);
598 errorCode = U_ZERO_ERROR
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gencnval/
gencnval.c 223 UErrorCode errorCode=U_ZERO_ERROR;
292 options[COPYRIGHT].doesOccur ? U_COPYRIGHT_STRING : NULL, &errorCode);
293 if(U_FAILURE(errorCode)) {
294 fprintf(stderr, "gencnval: unable to open output file - error %s\n", u_errorName(errorCode));
295 exit(errorCode);
302 udata_finish(out, &errorCode);
303 if(U_FAILURE(errorCode)) {
304 fprintf(stderr, "gencnval: error finishing output file - %s\n", u_errorName(errorCode));
305 exit(errorCode);
    [all...]
  /external/icu/icu4c/source/common/
usprep.cpp 225 UErrorCode* errorCode) {
234 if(errorCode==NULL || U_FAILURE(*errorCode)) {
240 dataMemory=udata_openChoice(path, type, name, isSPrepAcceptable, NULL, errorCode);
241 if(U_FAILURE(*errorCode)) {
247 utrie_unserialize(&_sprepTrie, pb, p[_SPREP_INDEX_TRIE_SIZE], errorCode);
251 if(U_FAILURE(*errorCode)) {
277 if(U_FAILURE(*errorCode)){
285 *errorCode = U_INVALID_FORMAT_ERROR;
ucnv.c 331 UErrorCode errorCode = U_ZERO_ERROR;
342 ucnv_getName(converter, &errorCode), converter, converter->isCopyLocal);
361 errorCode = U_ZERO_ERROR;
362 converter->fromCharErrorBehaviour(converter->toUContext, &toUArgs, NULL, 0, UCNV_CLOSE, &errorCode);
376 errorCode = U_ZERO_ERROR;
377 converter->fromUCharErrorBehaviour(converter->fromUContext, &fromUArgs, NULL, 0, 0, UCNV_CLOSE, &errorCode);
579 UErrorCode errorCode;
593 errorCode = U_ZERO_ERROR;
594 converter->fromCharErrorBehaviour(converter->toUContext, &toUArgs, NULL, 0, UCNV_RESET, &errorCode);
608 errorCode = U_ZERO_ERROR
    [all...]
  /external/icu/icu4c/source/tools/gencnval/
gencnval.c 224 UErrorCode errorCode=U_ZERO_ERROR;
293 options[COPYRIGHT].doesOccur ? U_COPYRIGHT_STRING : NULL, &errorCode);
294 if(U_FAILURE(errorCode)) {
295 fprintf(stderr, "gencnval: unable to open output file - error %s\n", u_errorName(errorCode));
296 exit(errorCode);
303 udata_finish(out, &errorCode);
304 if(U_FAILURE(errorCode)) {
305 fprintf(stderr, "gencnval: error finishing output file - %s\n", u_errorName(errorCode));
306 exit(errorCode);
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDeviceImpl.java     [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
usettest.cpp 56 UErrorCode errorCode=U_ZERO_ERROR;
57 utf8Cnv=ucnv_open("UTF-8", &errorCode);
    [all...]
numfmtst.h 195 const char *exp, UErrorCode errorCode) {
196 expect(fmt, n, UnicodeString(exp, ""), errorCode);
  /external/icu/icu4c/source/test/intltest/
usettest.cpp 56 UErrorCode errorCode=U_ZERO_ERROR;
57 utf8Cnv=ucnv_open("UTF-8", &errorCode);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
custrtst.c     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleAdvertiserService.java 270 public void onStartFailure(int errorCode) {
271 Log.e(TAG, "fail. Error code: " + errorCode);
BleScannerService.java 223 public void onScanFailed(int errorCode) {
224 Log.e(TAG, "Scan fail. Error code: " + new Integer(errorCode).toString());
  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/geofencing/
MainActivity.java 166 int errorCode = connectionResult.getErrorCode();
167 Log.e(TAG, "Connection to Google Play services failed with error code " + errorCode);
  /development/samples/wearable/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
MainActivity.java 166 int errorCode = connectionResult.getErrorCode();
167 Log.e(TAG, "Connection to Google Play services failed with error code " + errorCode);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 510 * @param errorCode
514 public static String getName(int errorCode) {
515 switch (errorCode) {
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
HandlerTest.java 367 public void error(String msg, Exception ex, int errorCode) {
370 CallVerificationStack.getInstance().push(errorCode);
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
ClientOnPageFinishedTest.java 66 public void onReceivedError(int errorCode, String description, String failingUrl) {
72 super.onReceivedError(errorCode, description, failingUrl);
TestAwContentsClient.java 133 public void onReceivedError(int errorCode, String description, String failingUrl) {
134 mOnReceivedErrorHelper.notifyCalled(errorCode, description, failingUrl);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omaha/
ResponseParser.java 123 private boolean logError(Node node, int errorCode) throws RequestFailureException {
125 if (mStrictParsingMode) throw new RequestFailureException(errorMessage, errorCode);
  /external/chromium_org/chrome/browser/resources/ssl/
interstitial_v2.js 53 $('error-code').textContent = loadTimeData.getString('errorCode');
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.cpp 284 void FileReaderLoader::failed(FileError::ErrorCode errorCode)
286 m_errorCode = errorCode;
292 FileError::ErrorCode FileReaderLoader::httpStatusCodeToErrorCode(int httpStatusCode)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DirectoryContentView.js 165 * @param {number} errorCode
168 _metadataReceived: function(errorCode, metadata)
171 if (errorCode !== 0)
  /external/chromium_org/third_party/icu/source/tools/icuinfo/
icuinfo.cpp 261 UErrorCode errorCode = U_ZERO_ERROR;
316 return U_FAILURE(errorCode);

Completed in 1636 milliseconds

<<11121314151617181920>>