Home
last modified time | relevance | path

Searched refs:kFourByteValueLead (Results 1 – 7 of 7) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DBytesTrie.java773 } else if(leadByte<kFourByteValueLead) { in readValue()
775 } else if(leadByte==kFourByteValueLead) { in readValue()
787 } else if(leadByte<(kFourByteValueLead<<1)) { in skipValue()
875 } else if(node<kFourByteValueLead) { in branchNext()
878 } else if(node==kFourByteValueLead) { in branchNext()
1101 /*package*/ static final int kFourByteValueLead=0x7e; local
1104 …/*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-…
DBytesTrieBuilder.java244 intBytes[0]=(byte)BytesTrie.kFourByteValueLead; in writeValueAndFinal()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DBytesTrie.java739 } else if(leadByte<kFourByteValueLead) { in readValue()
741 } else if(leadByte==kFourByteValueLead) { in readValue()
753 } else if(leadByte<(kFourByteValueLead<<1)) { in skipValue()
841 } else if(node<kFourByteValueLead) { in branchNext()
844 } else if(node==kFourByteValueLead) { in branchNext()
1067 /*package*/ static final int kFourByteValueLead=0x7e; local
1070 …/*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-…
DBytesTrieBuilder.java240 intBytes[0]=(byte)BytesTrie.kFourByteValueLead; in writeValueAndFinal()
/external/icu/icu4c/source/common/
Dbytestrie.cpp38 } else if(leadByte<kFourByteValueLead) { in readValue()
40 } else if(leadByte==kFourByteValueLead) { in readValue()
119 } else if(node<kFourByteValueLead) { in branchNext()
122 } else if(node==kFourByteValueLead) { in branchNext()
Dbytestriebuilder.cpp450 intBytes[0]=(char)BytesTrie::kFourByteValueLead; in writeValueAndFinal()
/external/icu/icu4c/source/common/unicode/
Dbytestrie.h410 } else if(leadByte<(kFourByteValueLead<<1)) { in skipValue()
526 static const int32_t kFourByteValueLead=0x7e; variable
529 static const int32_t kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-1;