HomeSort by relevance Sort by last modified time
    Searched full:errorcode (Results 176 - 200 of 1343) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu/icu4c/source/common/unicode/
normalizer2.h 88 * Same as getInstance(NULL, "nfc", UNORM2_COMPOSE, errorCode).
90 * @param errorCode Standard ICU error code. Its input value must
98 getNFCInstance(UErrorCode &errorCode);
102 * Same as getInstance(NULL, "nfc", UNORM2_DECOMPOSE, errorCode).
104 * @param errorCode Standard ICU error code. Its input value must
112 getNFDInstance(UErrorCode &errorCode);
116 * Same as getInstance(NULL, "nfkc", UNORM2_COMPOSE, errorCode).
118 * @param errorCode Standard ICU error code. Its input value must
126 getNFKCInstance(UErrorCode &errorCode);
130 * Same as getInstance(NULL, "nfkc", UNORM2_DECOMPOSE, errorCode)
    [all...]
idna.h 82 * @param errorCode Standard ICU error code. Its input value must
90 createUTS46Instance(uint32_t options, UErrorCode &errorCode);
105 * @param errorCode Standard ICU error code. Its input value must
114 IDNAInfo &info, UErrorCode &errorCode) const = 0;
127 * @param errorCode Standard ICU error code. Its input value must
136 IDNAInfo &info, UErrorCode &errorCode) const = 0;
151 * @param errorCode Standard ICU error code. Its input value must
160 IDNAInfo &info, UErrorCode &errorCode) const = 0;
173 * @param errorCode Standard ICU error code. Its input value must
182 IDNAInfo &info, UErrorCode &errorCode) const = 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
PositionError.h 38 enum ErrorCode {
44 static PositionError* create(ErrorCode code, const String& message) { return new PositionError(code, message); }
47 ErrorCode code() const { return m_code; }
53 PositionError(ErrorCode code, const String& message)
58 ErrorCode m_code;
  /external/chromium_org/third_party/WebKit/Source/platform/network/
SocketStreamError.h 44 static PassRefPtr<SocketStreamError> create(int errorCode, const String& errorMessage)
46 return adoptRef(new SocketStreamError(errorCode, errorMessage));
51 int errorCode() const { return m_errorCode; }
58 explicit SocketStreamError(int errorCode, const String& errorMessage)
59 : m_errorCode(errorCode)
  /external/chromium_org/third_party/icu/source/test/intltest/
bytestrietest.cpp 78 IcuTestErrorCode errorCode(*this, "BytesTrieTest()");
79 builder_=new BytesTrieBuilder(errorCode);
113 IcuTestErrorCode errorCode(*this, "TestBuilder()");
115 delete builder_->build(USTRINGTRIE_BUILD_FAST, errorCode);
116 if(errorCode.reset()!=U_INDEX_OUTOFBOUNDS_ERROR) {
121 builder_->add("=", 0, errorCode).add("=", 1, errorCode).build(USTRINGTRIE_BUILD_FAST, errorCode);
122 if(errorCode.reset()!=U_ILLEGAL_ARGUMENT_ERROR) {
400 IcuTestErrorCode errorCode(*this, "TestIteratorFromBranch()")
    [all...]
  /external/icu/icu4c/source/i18n/
collationtailoring.cpp 67 CollationTailoring::ensureOwnedData(UErrorCode &errorCode) {
68 if(U_FAILURE(errorCode)) { return FALSE; }
70 const Normalizer2Impl *nfcImpl = Normalizer2Factory::getNFCImpl(errorCode);
71 if(U_FAILURE(errorCode)) { return FALSE; }
74 errorCode = U_MEMORY_ALLOCATION_ERROR;
collationsets.h 47 errorCode(U_ZERO_ERROR) {}
49 void forData(const CollationData *d, UErrorCode &errorCode);
52 * @return U_SUCCESS(errorCode) in C++, void in Java
82 UErrorCode errorCode;
101 errorCode(U_ZERO_ERROR) {}
103 void forData(const CollationData *d, UErrorCode &errorCode);
136 UErrorCode errorCode;
utf8collationiterator.cpp 43 UTF8CollationIterator::handleNextCE32(UChar32 &c, UErrorCode & /*errorCode*/) {
94 UTF8CollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) {
108 UTF8CollationIterator::previousCodePoint(UErrorCode & /*errorCode*/) {
118 UTF8CollationIterator::forwardNumCodePoints(int32_t num, UErrorCode & /*errorCode*/) {
123 UTF8CollationIterator::backwardNumCodePoints(int32_t num, UErrorCode & /*errorCode*/) {
150 FCDUTF8CollationIterator::handleNextCE32(UChar32 &c, UErrorCode &errorCode) {
204 if(!nextSegment(errorCode)) {
210 return UTF8CollationIterator::handleNextCE32(c, errorCode);
265 FCDUTF8CollationIterator::nextCodePoint(UErrorCode &errorCode) {
283 if(!nextSegment(errorCode)) {
    [all...]
collationbuilder.h 40 CollationBuilder(const CollationTailoring *base, UErrorCode &errorCode);
49 UErrorCode &errorCode);
58 const char *&errorReason, UErrorCode &errorCode);
61 const char *&parserErrorReason, UErrorCode &errorCode);
66 const char *&errorReason, UErrorCode &errorCode);
73 UErrorCode &errorCode);
74 int32_t findOrInsertNodeForRootCE(int64_t ce, int32_t strength, UErrorCode &errorCode);
76 int32_t findOrInsertNodeForPrimary(uint32_t p, UErrorCode &errorCode);
79 UErrorCode &errorCode);
87 int32_t insertTailoredNodeAfter(int32_t index, int32_t strength, UErrorCode &errorCode);
    [all...]
utf16collationiterator.cpp 58 UTF16CollationIterator::handleNextCE32(UChar32 &c, UErrorCode & /*errorCode*/) {
86 UTF16CollationIterator::nextCodePoint(UErrorCode & /*errorCode*/) {
106 UTF16CollationIterator::previousCodePoint(UErrorCode & /*errorCode*/) {
121 UTF16CollationIterator::forwardNumCodePoints(int32_t num, UErrorCode & /*errorCode*/) {
137 UTF16CollationIterator::backwardNumCodePoints(int32_t num, UErrorCode & /*errorCode*/) {
208 FCDUTF16CollationIterator::handleNextCE32(UChar32 &c, UErrorCode &errorCode) {
220 if(!nextSegment(errorCode)) {
249 FCDUTF16CollationIterator::nextCodePoint(UErrorCode &errorCode) {
261 if(!nextSegment(errorCode)) {
288 FCDUTF16CollationIterator::previousCodePoint(UErrorCode &errorCode) {
    [all...]
  /external/icu/icu4c/source/test/intltest/
bytestrietest.cpp 78 IcuTestErrorCode errorCode(*this, "BytesTrieTest()");
79 builder_=new BytesTrieBuilder(errorCode);
113 IcuTestErrorCode errorCode(*this, "TestBuilder()");
115 delete builder_->build(USTRINGTRIE_BUILD_FAST, errorCode);
116 if(errorCode.reset()!=U_INDEX_OUTOFBOUNDS_ERROR) {
121 builder_->add("=", 0, errorCode).add("=", 1, errorCode).build(USTRINGTRIE_BUILD_FAST, errorCode);
122 if(errorCode.reset()!=U_ILLEGAL_ARGUMENT_ERROR) {
400 IcuTestErrorCode errorCode(*this, "TestIteratorFromBranch()")
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
alphaindex.cpp 65 UErrorCode &errorCode) {
66 if (U_FAILURE(errorCode)) { return NULL; }
72 errorCode = U_MEMORY_ALLOCATION_ERROR;
102 UErrorCode errorCode = U_ZERO_ERROR;
103 UCollationResult cmp = coll.compare(s, *si, errorCode);
144 UErrorCode &errorCode) {
152 collatorPrimaryOnly.compare(name, bucket->lowerBoundary_, errorCode);
191 const UnicodeString &name, UErrorCode &errorCode) const {
192 return buckets_->getBucketIndex(name, *collatorPrimaryOnly_, errorCode);
254 AlphabeticIndex::ImmutableIndex *AlphabeticIndex::buildImmutableIndex(UErrorCode &errorCode) {
    [all...]
  /external/llvm/lib/Support/
RWMutex.cpp 59 int errorcode = pthread_rwlock_init(rwlock, nullptr);
60 (void)errorcode;
61 assert(errorcode == 0);
82 int errorcode = pthread_rwlock_rdlock(rwlock);
83 return errorcode == 0;
92 int errorcode = pthread_rwlock_unlock(rwlock);
93 return errorcode == 0;
102 int errorcode = pthread_rwlock_wrlock(rwlock);
103 return errorcode == 0;
112 int errorcode = pthread_rwlock_unlock(rwlock)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unorm_it.h 42 * UErrorCode errorCode;
44 * errorCode=U_ZERO_ERROR;
45 * uni=unorm_openIter(&errorCode);
46 * if(U_FAILURE(errorCode)) {
51 * iter=unorm_setIter(uni, srcIter, UNORM_FCD, &errorCode);
52 * if(U_FAILURE(errorCode)) {
67 * uiter_setState(iter, state, &errorCode);
  /libcore/luni/src/main/native/
libcore_icu_NativeConverter.cpp 214 UErrorCode errorCode = U_ZERO_ERROR;
215 ucnv_fromUnicode(cnv , &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, (UBool) flush, &errorCode);
220 if (errorCode == U_ILLEGAL_CHAR_FOUND || errorCode == U_INVALID_CHAR_FOUND ||
221 errorCode == U_TRUNCATED_CHAR_FOUND) {
232 if (shouldCodecThrow(flush, errorCode)) {
233 maybeThrowIcuException(env, "ucnv_fromUnicode", errorCode);
235 return errorCode;
270 UErrorCode errorCode = U_ZERO_ERROR;
271 ucnv_toUnicode(cnv, &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, flush, &errorCode);
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
idnatest.c     [all...]
ccapitst.c     [all...]
  /external/icu/icu4c/source/test/cintltst/
idnatest.c     [all...]
ccapitst.c     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
FileSystemModel.js 112 * @param {number} errorCode
115 function innerCallback(error, errorCode, backendRootEntry)
122 callback(errorCode, backendRootEntry);
153 * @param {number} errorCode
156 _fileSystemRootReceived: function(origin, type, store, errorCode, backendRootEntry)
158 if (!errorCode && backendRootEntry && this._fileSystemsForOrigin[origin] === store) {
182 * @param {number} errorCode
185 function innerCallback(error, errorCode, backendEntries)
192 if (errorCode !== 0) {
193 callback(errorCode);
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
idna.h 82 * @param errorCode Standard ICU error code. Its input value must
90 createUTS46Instance(uint32_t options, UErrorCode &errorCode);
105 * @param errorCode Standard ICU error code. Its input value must
114 IDNAInfo &info, UErrorCode &errorCode) const = 0;
127 * @param errorCode Standard ICU error code. Its input value must
136 IDNAInfo &info, UErrorCode &errorCode) const = 0;
151 * @param errorCode Standard ICU error code. Its input value must
160 IDNAInfo &info, UErrorCode &errorCode) const = 0;
173 * @param errorCode Standard ICU error code. Its input value must
182 IDNAInfo &info, UErrorCode &errorCode) const = 0
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
SourceDebugExtensionTest.java 86 short errorCode = checkedReply.getErrorCode();
88 switch ( errorCode ) {
95 logWriter.println("=> ERROR is returned: "+ errorCode
96 + "(" + JDWPConstants.Error.getName(errorCode) + ")");
100 logWriter.println("=> ERROR is returned: "+ errorCode
101 + "(" + JDWPConstants.Error.getName(errorCode) + ")");
106 + errorCode + "(" + JDWPConstants.Error.getName(errorCode) + ")");
108 + errorCode + "(" + JDWPConstants.Error.getName(errorCode) + ")")
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
ppucd.h 96 PreparsedUCD(const char *filename, UErrorCode &errorCode);
108 LineType readLine(UErrorCode &errorCode);
129 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode);
135 * Returns U_SUCCESS(errorCode).
137 UBool getRangeForAlgNames(UChar32 &start, UChar32 &end, UErrorCode &errorCode);
148 UErrorCode &errorCode);
149 UChar32 parseCodePoint(const char *s, UErrorCode &errorCode);
150 UBool parseCodePointRange(const char *s, UChar32 &start, UChar32 &end, UErrorCode &errorCode);
151 void parseString(const char *s, UnicodeString &uni, UErrorCode &errorCode);
152 void parseScriptExtensions(const char *s, UnicodeSet &scx, UErrorCode &errorCode);
    [all...]
package.cpp 285 UErrorCode errorCode;
290 errorCode=U_ZERO_ERROR;
295 uprv_mkdir(filename, &errorCode);
296 if(U_FAILURE(errorCode)) {
310 UErrorCode errorCode;
355 errorCode=U_ZERO_ERROR;
356 typeEnum=getTypeEnumForInputData(data, length, &errorCode);
357 if(typeEnum<0 || U_FAILURE(errorCode)) {
450 UErrorCode errorCode;
470 errorCode=U_ZERO_ERROR
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
ppucd.h 96 PreparsedUCD(const char *filename, UErrorCode &errorCode);
108 LineType readLine(UErrorCode &errorCode);
129 const UniProps *getProps(UnicodeSet &newValues, UErrorCode &errorCode);
135 * Returns U_SUCCESS(errorCode).
137 UBool getRangeForAlgNames(UChar32 &start, UChar32 &end, UErrorCode &errorCode);
148 UErrorCode &errorCode);
149 UChar32 parseCodePoint(const char *s, UErrorCode &errorCode);
150 UBool parseCodePointRange(const char *s, UChar32 &start, UChar32 &end, UErrorCode &errorCode);
151 void parseString(const char *s, UnicodeString &uni, UErrorCode &errorCode);
152 void parseScriptExtensions(const char *s, UnicodeSet &scx, UErrorCode &errorCode);
    [all...]

Completed in 415 milliseconds

1 2 3 4 5 6 78 91011>>