Home
last modified time | relevance | path

Searched refs:fromUSection (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
Ducnv_ext.cpp464 ucnv_extFindFromU(const UChar *fromUSection, int32_t length, UChar u) { in ucnv_extFindFromU() argument
479 if(u<=fromUSection[start]) { in ucnv_extFindFromU()
482 if(++start<limit && u<=fromUSection[start]) { in ucnv_extFindFromU()
485 if(++start<limit && u<=fromUSection[start]) { in ucnv_extFindFromU()
494 if(u<fromUSection[i]) { in ucnv_extFindFromU()
502 if(start<limit && u==fromUSection[start]) { in ucnv_extFindFromU()
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetMBCS.java1483 static int findFromU(CharBuffer fromUSection, int length, char u) { in findFromU() argument
1498 if (u <= fromUSection.get(fromUSection.position() + start)) { in findFromU()
1501 if (++start < limit && u <= fromUSection.get(fromUSection.position() + start)) { in findFromU()
1504 if (++start < limit && u <= fromUSection.get(fromUSection.position() + start)) { in findFromU()
1513 if (u < fromUSection.get(fromUSection.position() + i)) { in findFromU()
1521 if (start < limit && u == fromUSection.get(fromUSection.position() + start)) { in findFromU()