HomeSort by relevance Sort by last modified time
    Searched refs:errorCode (Results 226 - 250 of 538) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/test/intltest/
testidn.cpp 79 UErrorCode errorCode=U_ZERO_ERROR;
82 LocalUStringPrepProfilePointer profile(usprep_openByType(USPREP_RFC3491_NAMEPREP, &errorCode));
83 if(U_FAILURE(errorCode)){
84 test.errcheckln(errorCode, "Failed to load IDNA data file. " + UnicodeString(u_errorName(errorCode)));
85 return errorCode;
126 parseMappings(filename,TRUE, test,&errorCode);
127 if(U_FAILURE(errorCode)) {
129 return errorCode;
136 return errorCode;
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
n2builder.cpp 29 #include "unicode/errorcode.h"
161 Normalizer2DataBuilder::Normalizer2DataBuilder(UErrorCode &errorCode) :
164 normTrie=utrie2_open(0, 0, &errorCode);
216 IcuToolErrorCode errorCode("gennorm2/createNorm()");
217 utrie2_set32(normTrie, c, (uint32_t)(p-norms), errorCode);
256 UErrorCode errorCode=U_ZERO_ERROR;
257 u_strToUTF8(NULL, 0, NULL, s.getBuffer(), s.length(), &errorCode);
258 return U_SUCCESS(errorCode) || errorCode==U_BUFFER_OVERFLOW_ERROR;
353 IcuToolErrorCode errorCode("gennorm2/addComposition()")
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gensprep/
gensprep.c 144 UErrorCode errorCode=U_ZERO_ERROR;
224 parseMappings(filename,FALSE, &errorCode);
225 if(U_FAILURE(errorCode)) {
226 fprintf(stderr, "Could not open file %s for reading. Error: %s \n", filename, u_errorName(errorCode));
227 return errorCode;
241 parseNormalizationCorrections(filename,&errorCode);
242 if(U_FAILURE(errorCode)){
244 return errorCode;
256 if(U_SUCCESS(errorCode)) {
267 return errorCode;
    [all...]
store.c 586 UErrorCode errorCode=U_ZERO_ERROR;
601 sprepTrieSize=utrie_serialize(sprepTrie, sprepTrieBlock, sizeof(sprepTrieBlock), getFoldedValue, TRUE, &errorCode);
602 if(U_FAILURE(errorCode)) {
603 fprintf(stderr, "error: utrie_serialize(sprep trie) failed, %s\n", u_errorName(errorCode));
604 exit(errorCode);
622 haveCopyright ? U_COPYRIGHT_STRING : NULL, &errorCode);
623 if(U_FAILURE(errorCode)) {
624 fprintf(stderr, "gensprep: unable to create the output file, error %d\n", errorCode);
625 exit(errorCode);
641 dataLength=udata_finish(pData, &errorCode);
    [all...]
  /external/icu4c/test/intltest/
testidn.cpp 80 UErrorCode errorCode=U_ZERO_ERROR;
83 LocalUStringPrepProfilePointer profile(usprep_openByType(USPREP_RFC3491_NAMEPREP, &errorCode));
84 if(U_FAILURE(errorCode)){
85 test.errcheckln(errorCode, "Failed to load IDNA data file. " + UnicodeString(u_errorName(errorCode)));
86 return errorCode;
127 parseMappings(filename,TRUE, test,&errorCode);
128 if(U_FAILURE(errorCode)) {
130 return errorCode;
137 return errorCode;
    [all...]
strtest.cpp 476 IcuTestErrorCode errorCode(*this, "TestCharString()");
480 CharString chStr(longStr, errorCode);
484 CharString test("Test", errorCode);
485 CharString copy(test,errorCode);
486 copy.copyFrom(chStr, errorCode);
492 chStr.append(sp, errorCode).append(chStr, errorCode);
500 chStr.clear().append("abc", errorCode).append("defghij", 3, errorCode);
506 errorCode);
    [all...]
plurfmts.cpp 584 IcuTestErrorCode errorCode(*this, "ordinalFormatTest");
586 PluralFormat pf(Locale::getEnglish(), UPLURAL_TYPE_ORDINAL, pattern, errorCode);
587 if (errorCode.logDataIfFailureAndReset("PluralFormat(en, UPLURAL_TYPE_ORDINAL, pattern) failed")) {
590 UnicodeString result = pf.format((int32_t)321, errorCode);
591 if (!errorCode.logIfFailureAndReset("PluralFormat.format(321) failed") &&
595 result = pf.format((int32_t)22, errorCode);
596 if (!errorCode.logIfFailureAndReset("PluralFormat.format(22) failed") &&
600 result = pf.format((int32_t)3, errorCode);
601 if (!errorCode.logIfFailureAndReset("PluralFormat.format(3) failed") &&
607 PluralFormat pf2(Locale::getEnglish(), UPLURAL_TYPE_ORDINAL, errorCode);
    [all...]
  /external/icu4c/tools/gennorm2/
n2builder.cpp 29 #include "unicode/errorcode.h"
172 Normalizer2DataBuilder::Normalizer2DataBuilder(UErrorCode &errorCode) :
175 normTrie=utrie2_open(0, 0, &errorCode);
241 IcuToolErrorCode errorCode("gennorm2/createNorm()");
242 utrie2_set32(normTrie, c, (uint32_t)(p-norms), errorCode);
281 UErrorCode errorCode=U_ZERO_ERROR;
282 u_strToUTF8(NULL, 0, NULL, s.getBuffer(), s.length(), &errorCode);
283 return U_SUCCESS(errorCode) || errorCode==U_BUFFER_OVERFLOW_ERROR;
378 IcuToolErrorCode errorCode("gennorm2/addComposition()")
    [all...]
  /external/icu4c/tools/gensprep/
gensprep.c 145 UErrorCode errorCode=U_ZERO_ERROR;
225 parseMappings(filename,FALSE, &errorCode);
226 if(U_FAILURE(errorCode)) {
227 fprintf(stderr, "Could not open file %s for reading. Error: %s \n", filename, u_errorName(errorCode));
228 return errorCode;
242 parseNormalizationCorrections(filename,&errorCode);
243 if(U_FAILURE(errorCode)){
245 return errorCode;
257 if(U_SUCCESS(errorCode)) {
270 return errorCode;
    [all...]
store.c 552 UErrorCode errorCode=U_ZERO_ERROR;
567 sprepTrieSize=utrie_serialize(sprepTrie, sprepTrieBlock, sizeof(sprepTrieBlock), getFoldedValue, TRUE, &errorCode);
568 if(U_FAILURE(errorCode)) {
569 fprintf(stderr, "error: utrie_serialize(sprep trie) failed, %s\n", u_errorName(errorCode));
570 exit(errorCode);
588 haveCopyright ? U_COPYRIGHT_STRING : NULL, &errorCode);
589 if(U_FAILURE(errorCode)) {
590 fprintf(stderr, "gensprep: unable to create the output file, error %d\n", errorCode);
591 exit(errorCode);
607 dataLength=udata_finish(pData, &errorCode);
    [all...]
  /external/icu4c/test/cintltst/
cucdtst.c 338 UErrorCode errorCode;
367 errorCode=U_ZERO_ERROR;
370 length=uset_getItem(aa, i, &start, &end, NULL, 0, &errorCode);
371 if(errorCode==U_INDEX_OUTOFBOUNDS_ERROR) {
374 if(U_FAILURE(errorCode)) {
376 a_name, b_name, i, u_errorName(errorCode));
503 UErrorCode errorCode;
507 errorCode=U_ZERO_ERROR;
508 digits=uset_openPattern(digitsPattern, 6, &errorCode);
509 decimalValues=uset_openPattern(decimalValuesPattern, 24, &errorCode);
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cucdtst.c 337 UErrorCode errorCode;
366 errorCode=U_ZERO_ERROR;
369 length=uset_getItem(aa, i, &start, &end, NULL, 0, &errorCode);
370 if(errorCode==U_INDEX_OUTOFBOUNDS_ERROR) {
373 if(U_FAILURE(errorCode)) {
375 a_name, b_name, i, u_errorName(errorCode));
502 UErrorCode errorCode;
506 errorCode=U_ZERO_ERROR;
507 digits=uset_openPattern(digitsPattern, 6, &errorCode);
508 decimalValues=uset_openPattern(decimalValuesPattern, 24, &errorCode);
    [all...]
  /external/chromium_org/third_party/icu/source/common/
cpputils.h 89 uprv_checkCanGetBuffer(const U_NAMESPACE_QUALIFIER UnicodeString &s, UErrorCode &errorCode) {
90 if(U_SUCCESS(errorCode) && s.isBogus()) {
91 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
  /external/icu4c/common/
cpputils.h 89 uprv_checkCanGetBuffer(const icu::UnicodeString &s, UErrorCode &errorCode) {
90 if(U_SUCCESS(errorCode) && s.isBogus()) {
91 errorCode=U_ILLEGAL_ARGUMENT_ERROR;
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
isac.c 242 instISAC->errorCode = 0;
277 instISAC->errorCode = 0;
413 instISAC->errorCode = ISAC_DISALLOWED_CODING_MODE;
443 instISAC->errorCode = -status;
457 instISAC->errorCode = -status;
512 instISAC->errorCode = ISAC_ENCODER_NOT_INITIATED;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
FileSystemView.js 152 * @param {number} errorCode
155 _directoryContentReceived: function(errorCode, entries)
157 if (errorCode === FileError.NOT_FOUND_ERR) {
163 if (errorCode !== 0 || !entries) {
164 console.error("Failed to read directory: " + errorCode);
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/draft/
bitset.cpp 86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) {
87 if(U_FAILURE(errorCode)) {
92 errorCode=U_MEMORY_ALLOCATION_ERROR;
156 errorCode=U_MEMORY_ALLOCATION_ERROR;
  /external/icu4c/test/perf/unisetperf/draft/
bitset.cpp 86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) {
87 if(U_FAILURE(errorCode)) {
92 errorCode=U_MEMORY_ALLOCATION_ERROR;
156 errorCode=U_MEMORY_ALLOCATION_ERROR;
  /frameworks/av/camera/camera2/
ICameraDeviceCallbacks.cpp 49 void onDeviceError(CameraErrorCode errorCode)
54 data.writeInt32(static_cast<int32_t>(errorCode));
105 CameraErrorCode errorCode =
107 onDeviceError(errorCode);
  /frameworks/av/include/camera/camera2/
ICameraDeviceCallbacks.h 48 virtual void onDeviceError(CameraErrorCode errorCode) = 0;
  /frameworks/base/core/java/android/nfc/tech/
Ndef.java 314 int errorCode = tagService.ndefWrite(serviceHandle, msg);
315 switch (errorCode) {
382 int errorCode = tagService.ndefMakeReadOnly(mTag.getServiceHandle());
383 switch (errorCode) {
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderSync.cpp 103 if (loader.errorCode())
104 FileError::throwDOMException(es, loader.errorCode());
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
main.cpp 121 void error(GLenum errorCode)
127 switch (errorCode)
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
renderer11_utils.h 78 inline bool isDeviceLostError(HRESULT errorCode)
80 switch (errorCode)
  /libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
ChunkHandler.java 61 public static Chunk createFailChunk(int errorCode, String msg) {
67 out.putInt(errorCode);

Completed in 1512 milliseconds

1 2 3 4 5 6 7 8 91011>>