HomeSort by relevance Sort by last modified time
    Searched defs:errorCode (Results 51 - 75 of 302) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
ResourceError.h 48 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
50 , m_errorCode(errorCode)
65 int errorCode() const { return m_errorCode; }
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.cpp 137 unsigned short errorCode = 0;
158 void MediaKeySession::keyError(MediaKeyErrorCode errorCode, unsigned long systemCode)
161 switch (errorCode) {
  /external/chromium_org/third_party/icu/source/common/
unistr_case.cpp 65 UErrorCode errorCode=U_ZERO_ERROR;
67 options|U_COMPARE_IGNORE_CASE, &errorCode);
134 UErrorCode errorCode;
137 errorCode = U_ZERO_ERROR;
141 locale, &errorCode);
145 locale, &errorCode);
148 errorCode=U_UNSUPPORTED_ERROR;
152 (UBreakIterator *)titleIter, locale, options, &errorCode);
158 &errorCode);
161 } while(errorCode==U_BUFFER_OVERFLOW_ERROR && cloneArrayIfNeeded(newLength, newLength, FALSE))
    [all...]
normlzr.cpp 71 UErrorCode errorCode=U_ZERO_ERROR;
72 fNorm2=Normalizer2Factory::getInstance(fUMode, errorCode);
76 new FilteredNormalizer2(*fNorm2, *uniset_getUnicode32Instance(errorCode));
78 if(U_FAILURE(errorCode)) {
79 errorCode=U_ZERO_ERROR;
80 fNorm2=Normalizer2Factory::getNoopInstance(errorCode);
209 UErrorCode &errorCode) {
210 if(left.isBogus() || right.isBogus() || U_FAILURE(errorCode)) {
212 if(U_SUCCESS(errorCode)) {
213 errorCode=U_ILLEGAL_ARGUMENT_ERROR
    [all...]
ucasemap.c 134 UErrorCode errorCode;
161 errorCode=U_ZERO_ERROR;
165 &errorCode);
174 errorCode=U_ZERO_ERROR;
178 &errorCode);
  /external/chromium_org/third_party/icu/source/test/cintltst/
cstrtest.c 237 UErrorCode errorCode;
239 errorCode=U_ZERO_ERROR;
240 cnv=ucnv_open(NULL, &errorCode);
241 if(U_FAILURE(errorCode)) {
244 length=ucnv_fromUChars(cnv, cs, sizeof(cs), invariantUChars, -1, &errorCode);
245 if(U_FAILURE(errorCode)) {
246 log_err("ucnv_fromUChars(invariantUChars) failed - %s\n", u_errorName(errorCode));
251 errorCode=U_ZERO_ERROR;
252 length=ucnv_toUChars(cnv, us, LENGTHOF(us), invariantChars, -1, &errorCode);
253 if(U_FAILURE(errorCode)) {
    [all...]
cucdapi.c 376 UErrorCode errorCode=U_ZERO_ERROR;
378 USCRIPT_COMMON==uscript_getScript(0x0640, &errorCode) &&
379 USCRIPT_INHERITED==uscript_getScript(0x0650, &errorCode) &&
380 USCRIPT_ARABIC==uscript_getScript(0xfdf2, &errorCode)) ||
381 U_FAILURE(errorCode)
434 UErrorCode errorCode;
437 errorCode=U_PARSE_ERROR;
438 length=uscript_getScriptExtensions(0x0640, scripts, LENGTHOF(scripts), &errorCode);
439 if(errorCode!=U_PARSE_ERROR) {
441 u_errorName(errorCode));
    [all...]
  /external/icu4c/samples/numfmt/
main.cpp 100 * @param errorCode ICU error code, must pass U_SUCCESS() on input.
103 setNumberFormatCurrency_2_4(NumberFormat &nf, const char *currency, UErrorCode &errorCode) {
105 if(U_FAILURE(errorCode)) {
109 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
118 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
163 errorCode=U_UNSUPPORTED_ERROR;
189 * @param errorCode ICU error code, must pass U_SUCCESS() on input.
192 setNumberFormatCurrency_2_6(NumberFormat &nf, const char *currency, UErrorCode &errorCode) {
193 if(U_FAILURE(errorCode)) {
197 errorCode=U_ILLEGAL_ARGUMENT_ERROR
    [all...]
  /external/icu4c/samples/uciter8/
uciter8.c 219 UErrorCode errorCode;
241 errorCode=U_ZERO_ERROR;
242 uiter_setState(iter2, state, &errorCode);
243 if(U_FAILURE(errorCode)) {
244 log_err("%s->setState(0x%x) failed: %s\n", n, state, u_errorName(errorCode));
  /external/icu4c/test/cintltst/
cstrtest.c 237 UErrorCode errorCode;
239 errorCode=U_ZERO_ERROR;
240 cnv=ucnv_open(NULL, &errorCode);
241 if(U_FAILURE(errorCode)) {
244 length=ucnv_fromUChars(cnv, cs, sizeof(cs), invariantUChars, -1, &errorCode);
245 if(U_FAILURE(errorCode)) {
246 log_err("ucnv_fromUChars(invariantUChars) failed - %s\n", u_errorName(errorCode));
251 errorCode=U_ZERO_ERROR;
252 length=ucnv_toUChars(cnv, us, LENGTHOF(us), invariantChars, -1, &errorCode);
253 if(U_FAILURE(errorCode)) {
    [all...]
cucdapi.c 384 UErrorCode errorCode=U_ZERO_ERROR;
386 USCRIPT_COMMON==uscript_getScript(0x0640, &errorCode) &&
387 USCRIPT_INHERITED==uscript_getScript(0x0650, &errorCode) &&
388 USCRIPT_ARABIC==uscript_getScript(0xfdf2, &errorCode)) ||
389 U_FAILURE(errorCode)
446 UErrorCode errorCode;
449 errorCode=U_PARSE_ERROR;
450 length=uscript_getScriptExtensions(0x0640, scripts, LENGTHOF(scripts), &errorCode);
451 if(errorCode!=U_PARSE_ERROR) {
453 u_errorName(errorCode));
    [all...]
  /external/icu4c/test/intltest/
listformattertest.cpp 29 UErrorCode errorCode = U_ZERO_ERROR;
30 formatter->format(data, dataSize, actualResult, errorCode);
39 UErrorCode errorCode = U_ZERO_ERROR;
40 LocalPointer<ListFormatter> formatter(ListFormatter::createInstance(Locale(locale_string), errorCode));
41 if (U_FAILURE(errorCode)) {
42 dataerrln("ListFormatter::createInstance(Locale(\"%s\"), errorCode) failed in CheckFourCases: %s", locale_string, u_errorName(errorCode));
60 UErrorCode errorCode = U_ZERO_ERROR;
61 LocalPointer<ListFormatter> formatter(ListFormatter::createInstance(locale, errorCode));
62 if (U_FAILURE(errorCode)) {
    [all...]
itutil.cpp 13 #include "unicode/errorcode.h"
115 ErrorCode errorCode;
116 if(errorCode.get()!=U_ZERO_ERROR || !errorCode.isSuccess() || errorCode.isFailure()) {
117 errln("ErrorCode did not initialize properly");
120 errorCode.assertSuccess();
121 if(errorCode.errorName()!=u_errorName(U_ZERO_ERROR)) {
122 errln("ErrorCode did not format error message string properly")
    [all...]
  /external/icu4c/tools/icuinfo/
icuinfo.cpp 65 void cmd_version(UBool /* noLoad */, UErrorCode &errorCode)
82 errorCode=U_INTERNAL_PROGRAM_ERROR;
90 errorCode=U_INTERNAL_PROGRAM_ERROR;
106 errorCode=U_INTERNAL_PROGRAM_ERROR;
211 UErrorCode errorCode = U_ZERO_ERROR;
253 cmd_version(FALSE, errorCode);
276 cmd_version(FALSE, errorCode); /* at least print the version # */
279 return U_FAILURE(errorCode);
  /frameworks/base/core/java/android/nfc/tech/
BasicTagTechnology.java 73 int errorCode = mTag.getTagService().connect(mTag.getServiceHandle(),
76 if (errorCode == ErrorCodes.SUCCESS) {
80 } else if (errorCode == ErrorCodes.ERROR_NOT_SUPPORTED) {
101 int errorCode = mTag.getTagService().reconnect(mTag.getServiceHandle());
103 if (errorCode != ErrorCodes.SUCCESS) {
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderLoader.h 78 FileError::ErrorCode errorCode() const { return m_errorCode; }
90 void failed(FileError::ErrorCode);
96 static FileError::ErrorCode httpStatusCodeToErrorCode(int);
123 FileError::ErrorCode m_errorCode;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystemSync.cpp 255 FileError::ErrorCode errorCode = errorCallback->error()->code();
256 if (errorCode)
257 FileError::throwDOMException(es, errorCode);
  /external/chromium_org/third_party/icu/source/test/intltest/
itutil.cpp 13 #include "unicode/errorcode.h"
88 ErrorCode errorCode;
89 if(errorCode.get()!=U_ZERO_ERROR || !errorCode.isSuccess() || errorCode.isFailure()) {
90 errln("ErrorCode did not initialize properly");
93 errorCode.assertSuccess();
94 if(errorCode.errorName()!=u_errorName(U_ZERO_ERROR)) {
95 errln("ErrorCode did not format error message string properly")
    [all...]
ucdtest.cpp 34 UErrorCode errorCode=U_ZERO_ERROR;
35 unknownPropertyNames=new U_NAMESPACE_QUALIFIER Hashtable(errorCode);
36 if(U_FAILURE(errorCode)) {
42 unknownPropertyNames->puti(UnicodeString(ignorePropNames[i], -1, US_INV), 1, errorCode);
172 UErrorCode errorCode=U_ZERO_ERROR;
173 me->unknownPropertyNames->puti(propName, 1, errorCode);
198 UErrorCode errorCode=U_ZERO_ERROR;
209 strcpy(backupPath, loadTestData(errorCode));
216 u_parseDelimitedFile(newPath, ';', fields, 2, derivedPropsLineFn, this, &errorCode);
218 if(errorCode==U_FILE_ACCESS_ERROR)
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/utrie2perf/
utrie2perf.cpp 123 UErrorCode errorCode=U_ZERO_ERROR;
125 UNORM_FCD, &errorCode);
126 if(U_FAILURE(errorCode)) {
128 u_errorName(errorCode));
143 UErrorCode errorCode=U_ZERO_ERROR;
145 UNORM_FCD_ALWAYS_GET, &errorCode);
146 if(U_FAILURE(errorCode)) {
148 u_errorName(errorCode));
176 UErrorCode errorCode=U_ZERO_ERROR;
180 &errorCode);
    [all...]
  /external/chromium_org/third_party/icu/source/tools/icuinfo/
icuinfo.cpp 261 UErrorCode errorCode = U_ZERO_ERROR;
316 return U_FAILURE(errorCode);
  /external/icu4c/common/
normlzr.cpp 70 UErrorCode errorCode=U_ZERO_ERROR;
71 fNorm2=Normalizer2Factory::getInstance(fUMode, errorCode);
75 new FilteredNormalizer2(*fNorm2, *uniset_getUnicode32Instance(errorCode));
77 if(U_FAILURE(errorCode)) {
78 errorCode=U_ZERO_ERROR;
79 fNorm2=Normalizer2Factory::getNoopInstance(errorCode);
208 UErrorCode &errorCode) {
209 if(left.isBogus() || right.isBogus() || U_FAILURE(errorCode)) {
211 if(U_SUCCESS(errorCode)) {
212 errorCode=U_ILLEGAL_ARGUMENT_ERROR
    [all...]
ucasemap.cpp 126 UErrorCode errorCode;
153 errorCode=U_ZERO_ERROR;
157 &errorCode);
166 errorCode=U_ZERO_ERROR;
170 &errorCode);
  /external/icu4c/i18n/
sortkey.cpp 174 UErrorCode errorCode = U_ZERO_ERROR;
175 return static_cast<Collator::EComparisonResult>(compareTo(target, errorCode));
  /external/icu4c/samples/ustring/
ustring.cpp 40 UErrorCode errorCode=U_ZERO_ERROR;
47 ucnv_fromUChars(cnv, out, sizeof(out), s, length, &errorCode);
48 if(U_FAILURE(errorCode) || errorCode==U_STRING_NOT_TERMINATED_WARNING) {
49 printf("%sproblem converting string from Unicode: %s\n", announce, u_errorName(errorCode));
198 UErrorCode errorCode;
287 errorCode=U_ZERO_ERROR;
288 length=u_strToLower(buffer, LENGTHOF(buffer), input, -1, "en", &errorCode);
289 if(U_SUCCESS(errorCode)) {
292 printf("error in u_strToLower(en)=%ld error=%s\n", length, u_errorName(errorCode));
    [all...]

Completed in 2113 milliseconds

1 23 4 5 6 7 8 91011>>