Searched defs:remainingMatchLength_ (Results 1 - 4 of 4) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h66 pos_(bytes_), remainingMatchLength_(-1) {}
82 pos_(other.pos_), remainingMatchLength_(other.remainingMatchLength_) {}
91 remainingMatchLength_=-1;
125 state.remainingMatchLength=remainingMatchLength_;
142 remainingMatchLength_=state.remainingMatchLength;
164 remainingMatchLength_=-1;
225 return pos!=NULL && findUniqueValue(pos+remainingMatchLength_+1, FALSE, uniqueValue);
324 int32_t remainingMatchLength_; member in class:BytesTrie::Iterator
354 pos_(bytes_), remainingMatchLength_(
514 int32_t remainingMatchLength_; member in class:BytesTrie
[all...]
H A Ducharstrie.h66 pos_(uchars_), remainingMatchLength_(-1) {}
82 pos_(other.pos_), remainingMatchLength_(other.remainingMatchLength_) {}
91 remainingMatchLength_=-1;
125 state.remainingMatchLength=remainingMatchLength_;
142 remainingMatchLength_=state.remainingMatchLength;
163 remainingMatchLength_=-1;
240 return pos!=NULL && findUniqueValue(pos+remainingMatchLength_+1, FALSE, uniqueValue);
342 int32_t remainingMatchLength_; member in class:UCharsTrie::Iterator
371 pos_(uchars_), remainingMatchLength_(
571 int32_t remainingMatchLength_; member in class:UCharsTrie
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrie.java46 remainingMatchLength_=-1;
67 remainingMatchLength_=-1;
99 state.remainingMatchLength=remainingMatchLength_;
116 remainingMatchLength_=state.remainingMatchLength;
199 return (remainingMatchLength_<0 && (node=bytes_[pos]&0xff)>=kMinValueLead) ?
213 remainingMatchLength_=-1;
235 int length=remainingMatchLength_; // Actual remaining match length minus 1.
239 remainingMatchLength_=--length;
277 int length=remainingMatchLength_; // Actual remaining match length minus 1.
284 remainingMatchLength_
687 private int remainingMatchLength_; field in class:BytesTrie.Iterator
1069 private int remainingMatchLength_; field in class:BytesTrie
[all...]
H A DCharsTrie.java49 remainingMatchLength_=-1;
70 remainingMatchLength_=-1;
102 state.remainingMatchLength=remainingMatchLength_;
119 remainingMatchLength_=state.remainingMatchLength;
138 return (remainingMatchLength_<0 && (node=chars_.charAt(pos))>=kMinValueLead) ?
151 remainingMatchLength_=-1;
182 int length=remainingMatchLength_; // Actual remaining match length minus 1.
186 remainingMatchLength_=--length;
239 int length=remainingMatchLength_; // Actual remaining match length minus 1.
246 remainingMatchLength_
623 private int remainingMatchLength_; field in class:CharsTrie.Iterator
1017 private int remainingMatchLength_; field in class:CharsTrie
[all...]

Completed in 104 milliseconds