HomeSort by relevance Sort by last modified time
    Searched refs:errorValue (Results 1 - 25 of 26) sorted by null

1 2

  /libcore/ojluni/src/main/native/
nio_util.h 53 jint handleSocketError(JNIEnv *env, jint errorValue);
55 jint handleSocketErrorWithDefault(JNIEnv *env, jint errorValue,
Net.c 656 handleSocketErrorWithDefault(JNIEnv *env, jint errorValue, const char *defaultException)
659 switch (errorValue) {
684 errno = errorValue;
692 handleSocketError(JNIEnv *env, jint errorValue) {
693 return handleSocketErrorWithDefault(env, errorValue,
  /external/icu/icu4c/source/common/
utf_impl.c 90 errorValue(int32_t count, int8_t strict) {
179 c=errorValue(i-*pi, strict);
234 if(!U8_IS_TRAIL(c)) { return errorValue(0, strict); }
242 return errorValue(0, strict);
262 c=errorValue(count, strict);
272 c=errorValue(count, strict);
274 c=errorValue(0, strict);
285 c=errorValue(0, strict);
290 c=errorValue(0, strict);
utrie2_impl.h 147 uint32_t initialValue, errorValue;
utrie2.cpp 66 return trie->errorValue;
75 return trie->errorValue;
215 trie->errorValue=trie->data16[UTRIE2_BAD_UTF8_DATA_OFFSET];
221 trie->errorValue=trie->data32[UTRIE2_BAD_UTF8_DATA_OFFSET];
236 uint32_t initialValue, uint32_t errorValue,
292 trie->errorValue=errorValue;
335 *dest16++=(uint16_t)errorValue;
351 *p++=errorValue;
propsvec.h 54 * Special pseudo code points for storing the initialValue and the errorValue,
162 int32_t errorValue;
utrie2_builder.cpp 107 utrie2_open(uint32_t initialValue, uint32_t errorValue, UErrorCode *pErrorCode) {
130 trie->errorValue=errorValue;
137 newTrie->errorValue=errorValue;
152 newTrie->data[i]=errorValue;
268 trie->errorValue=other->errorValue;
380 context.trie=utrie2_open(other->initialValue, other->errorValue, pErrorCode);
408 utrie2_fromUTrie(const UTrie *trie1, uint32_t errorValue, UErrorCode *pErrorCode)
    [all...]
utrie2.h 111 * or the errorValue for out-of-range code points and illegal UTF-8.
117 * @param errorValue the value for out-of-range code points and illegal UTF-8
126 uint32_t initialValue, uint32_t errorValue,
202 * @param errorValue the value for out-of-range code points and illegal UTF-8
207 utrie2_open(uint32_t initialValue, uint32_t errorValue, UErrorCode *pErrorCode);
368 * @param errorValue the value for out-of-range code points and illegal UTF-8
373 utrie2_fromUTrie(const UTrie *trie1, uint32_t errorValue, UErrorCode *pErrorCode);
384 * Returns trie->errorValue if c is not in the range 0..U+10ffff.
394 * Returns trie->errorValue if c is not in the range 0..U+10ffff.
694 uint32_t errorValue;
    [all...]
propsvec.c 509 toUTrie2->errorValue=rowIndex;
518 toUTrie2->errorValue, pErrorCode);
  /external/icu/icu4c/source/test/cintltst/
trie2test.c 41 * It may be preceded by an entry with negative limit and the errorValue.
111 uint32_t initialValue, errorValue;
119 countSpecials=getSpecialValues(checkRanges, countCheckRanges, &initialValue, &errorValue);
196 if(errorValue!=value2) {
198 typeName, testName, (long)start, (long)value2, (long)errorValue);
210 value=errorValue;
244 /* test errorValue */
253 if(value!=errorValue || value2!=errorValue) {
254 log_err("error: %s(%s).get(out of range) != errorValue\n"
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
Trie2Test.java 414 // It may be preceded by an entry with negative limit and the errorValue.
589 int errorValue = 0x0bad;
592 errorValue = ranges[i][2];
596 Trie2Writable trie = new Trie2Writable(initialValue, errorValue);
629 int initialValue, errorValue;
634 countSpecials=0; /*getSpecialValues(checkRanges, countCheckRanges, &initialValue, &errorValue);*/
635 errorValue = 0x0bad;
692 /* test errorValue */
695 if(value!=errorValue || value2!=errorValue) {
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
Trie2Test.java 410 // It may be preceded by an entry with negative limit and the errorValue.
585 int errorValue = 0x0bad;
588 errorValue = ranges[i][2];
592 Trie2Writable trie = new Trie2Writable(initialValue, errorValue);
625 int initialValue, errorValue;
630 countSpecials=0; /*getSpecialValues(checkRanges, countCheckRanges, &initialValue, &errorValue);*/
631 errorValue = 0x0bad;
688 /* test errorValue */
691 if(value!=errorValue || value2!=errorValue) {
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Trie2.java 173 This.errorValue = This.index[This.data16+UTRIE2_BAD_UTF8_DATA_OFFSET];
178 This.errorValue = This.data32[UTRIE2_BAD_UTF8_DATA_OFFSET];
307 if (errorValue != OtherTrie.errorValue ||
669 int errorValue;
    [all...]
Trie2Writable.java 35 this.errorValue = errorValueP;
41 this.errorValue = errorValueP;
57 data[i] = errorValue;
146 init(source.initialValue, source.errorValue);
344 this.errorValue = tempTrie.errorValue;
572 return errorValue;
    [all...]
Trie2_16.java 111 return errorValue;
Trie2_32.java 110 return errorValue;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Trie2.java 171 This.errorValue = This.index[This.data16+UTRIE2_BAD_UTF8_DATA_OFFSET];
176 This.errorValue = This.data32[UTRIE2_BAD_UTF8_DATA_OFFSET];
305 if (errorValue != OtherTrie.errorValue ||
667 int errorValue;
    [all...]
Trie2Writable.java 33 this.errorValue = errorValueP;
39 this.errorValue = errorValueP;
55 data[i] = errorValue;
144 init(source.initialValue, source.errorValue);
342 this.errorValue = tempTrie.errorValue;
570 return errorValue;
    [all...]
Trie2_16.java 109 return errorValue;
Trie2_32.java 108 return errorValue;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnContext.java 450 String errorValue[] = c.split(",");
451 if (errorValue != null && errorValue.length == 2) {
455 errorCode = Integer.parseInt(errorValue[0]);
456 count = Integer.parseInt(errorValue[1]);
  /external/icu/icu4c/source/tools/toolutil/
writesrc.c 212 " 0x%lx,\n" /* errorValue */
218 (long)pTrie->initialValue, (long)pTrie->errorValue,
  /external/deqp/modules/gles3/functional/
es3fShaderTextureFunctionTests.cpp     [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 

Completed in 3196 milliseconds

1 2