HomeSort by relevance Sort by last modified time
    Searched full:excword (Results 1 - 3 of 3) sorted by null

  /external/icu/icu4c/source/common/
ucase.cpp 113 * Get the value of an optional-value slot where HAS_SLOT(excWord, idx).
115 * @param excWord (in) initial exceptions word
117 * @param pExc16 (in/out) const uint16_t * after excWord=*pExc16++;
121 #define GET_SLOT_VALUE(excWord, idx, pExc16, value) \
122 if(((excWord)&UCASE_EXC_DOUBLE_SLOTS)==0) { \
123 (pExc16)+=SLOT_OFFSET(excWord, idx); \
126 (pExc16)+=2*SLOT_OFFSET(excWord, idx); \
142 uint16_t excWord=*pe++;
143 if(HAS_SLOT(excWord, UCASE_EXC_LOWER)) {
144 GET_SLOT_VALUE(excWord, UCASE_EXC_LOWER, pe, c)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCaseProps.java 151 * Get the value of an optional-value slot where hasSlot(excWord, index).
153 * @param excWord (in) initial exceptions word
155 * @param excOffset (in) offset into exceptions[] after excWord=exceptions[excOffset++];
159 private final long getSlotValueAndOffset(int excWord, int index, int excOffset) {
161 if((excWord&EXC_DOUBLE_SLOTS)==0) {
162 excOffset+=slotOffset(excWord, index);
165 excOffset+=2*slotOffset(excWord, index);
173 private final int getSlotValue(int excWord, int index, int excOffset) {
175 if((excWord&EXC_DOUBLE_SLOTS)==0) {
176 excOffset+=slotOffset(excWord, index)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCaseProps.java 147 * Get the value of an optional-value slot where hasSlot(excWord, index).
149 * @param excWord (in) initial exceptions word
151 * @param excOffset (in) offset into exceptions[] after excWord=exceptions[excOffset++];
155 private final long getSlotValueAndOffset(int excWord, int index, int excOffset) {
157 if((excWord&EXC_DOUBLE_SLOTS)==0) {
158 excOffset+=slotOffset(excWord, index);
161 excOffset+=2*slotOffset(excWord, index);
169 private final int getSlotValue(int excWord, int index, int excOffset) {
171 if((excWord&EXC_DOUBLE_SLOTS)==0) {
172 excOffset+=slotOffset(excWord, index)
    [all...]

Completed in 178 milliseconds