Home
last modified time | relevance | path

Searched refs:maxLength_ (Results 1 – 16 of 16) sorted by relevance

/third_party/skia/third_party/externals/icu/source/common/
Ducharstrieiterator.cpp30 maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
52 maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
68 if(maxLength_>0 && length>maxLength_) { in Iterator()
69 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal. in Iterator()
87 if(maxLength_>0 && length>maxLength_) { in reset()
88 length=maxLength_; in reset()
147 if(isFinal || (maxLength_>0 && str_.length()==maxLength_)) { in next()
160 if(maxLength_>0 && str_.length()==maxLength_) { in next()
174 if(maxLength_>0 && str_.length()+length>maxLength_) { in next()
175 str_.append(pos, maxLength_-str_.length()); in next()
Dbytestrieiterator.cpp30 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
52 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
69 if(maxLength_>0 && length>maxLength_) { in Iterator()
70 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal. in Iterator()
88 if(maxLength_>0 && length>maxLength_) { in reset()
89 length=maxLength_; in reset()
139 if(isFinal || (maxLength_>0 && str_->length()==maxLength_)) { in next()
146 if(maxLength_>0 && str_->length()==maxLength_) { in next()
160 if(maxLength_>0 && str_->length()+length>maxLength_) { in next()
162 maxLength_-str_->length(), errorCode); in next()
/third_party/icu/icu4c/source/common/
Ducharstrieiterator.cpp30 maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
52 maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
68 if(maxLength_>0 && length>maxLength_) { in Iterator()
69 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal. in Iterator()
87 if(maxLength_>0 && length>maxLength_) { in reset()
88 length=maxLength_; in reset()
147 if(isFinal || (maxLength_>0 && str_.length()==maxLength_)) { in next()
160 if(maxLength_>0 && str_.length()==maxLength_) { in next()
174 if(maxLength_>0 && str_.length()+length>maxLength_) { in next()
175 str_.append(pos, maxLength_-str_.length()); in next()
Dbytestrieiterator.cpp30 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
52 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
69 if(maxLength_>0 && length>maxLength_) { in Iterator()
70 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal. in Iterator()
88 if(maxLength_>0 && length>maxLength_) { in reset()
89 length=maxLength_; in reset()
139 if(isFinal || (maxLength_>0 && str_->length()==maxLength_)) { in next()
146 if(maxLength_>0 && str_->length()==maxLength_) { in next()
160 if(maxLength_>0 && str_->length()+length>maxLength_) { in next()
162 maxLength_-str_->length(), errorCode); in next()
/third_party/node/deps/icu-small/source/common/
Ducharstrieiterator.cpp30 maxLength_(maxStringLength), value_(0), stack_(nullptr) { in Iterator()
52 maxLength_(maxStringLength), value_(0), stack_(nullptr) { in Iterator()
68 if(maxLength_>0 && length>maxLength_) { in Iterator()
69 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal. in Iterator()
87 if(maxLength_>0 && length>maxLength_) { in reset()
88 length=maxLength_; in reset()
147 if(isFinal || (maxLength_>0 && str_.length()==maxLength_)) { in next()
160 if(maxLength_>0 && str_.length()==maxLength_) { in next()
174 if(maxLength_>0 && str_.length()+length>maxLength_) { in next()
175 str_.append(pos, maxLength_-str_.length()); in next()
Dbytestrieiterator.cpp30 str_(nullptr), maxLength_(maxStringLength), value_(0), stack_(nullptr) { in Iterator()
52 str_(nullptr), maxLength_(maxStringLength), value_(0), stack_(nullptr) { in Iterator()
69 if(maxLength_>0 && length>maxLength_) { in Iterator()
70 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal. in Iterator()
88 if(maxLength_>0 && length>maxLength_) { in reset()
89 length=maxLength_; in reset()
139 if(isFinal || (maxLength_>0 && str_->length()==maxLength_)) { in next()
146 if(maxLength_>0 && str_->length()==maxLength_) { in next()
160 if(maxLength_>0 && str_->length()+length>maxLength_) { in next()
162 maxLength_-str_->length(), errorCode); in next()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DBytesTrie.java579 maxLength_=maxStringLength;
580 entry_=new Entry(maxLength_!=0 ? maxLength_ : 32);
585 if(maxLength_>0 && length>maxLength_) {
586 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal.
603 if(maxLength_>0 && length>maxLength_) { in reset()
604 length=maxLength_; in reset()
665 if(isFinal || (maxLength_>0 && entry_.length==maxLength_)) { in next()
672 if(maxLength_>0 && entry_.length==maxLength_) { in next()
686 if(maxLength_>0 && entry_.length+length>maxLength_) { in next()
687 entry_.append(bytes_, pos, maxLength_-entry_.length); in next()
[all …]
DCharsTrie.java495 maxLength_=maxStringLength; in Iterator()
500 if(maxLength_>0 && length>maxLength_) { in Iterator()
501 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal. in Iterator()
519 if(maxLength_>0 && length>maxLength_) { in reset()
520 length=maxLength_; in reset()
590 if(isFinal || (maxLength_>0 && str_.length()==maxLength_)) { in next()
604 if(maxLength_>0 && str_.length()==maxLength_) { in next()
618 if(maxLength_>0 && str_.length()+length>maxLength_) { in next()
619 str_.append(chars_, pos, pos+maxLength_-str_.length()); in next()
683 private int maxLength_; field in CharsTrie.Iterator
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DBytesTrie.java548 maxLength_=maxStringLength;
549 entry_=new Entry(maxLength_!=0 ? maxLength_ : 32);
554 if(maxLength_>0 && length>maxLength_) {
555 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal.
571 if(maxLength_>0 && length>maxLength_) { in reset()
572 length=maxLength_; in reset()
631 if(isFinal || (maxLength_>0 && entry_.length==maxLength_)) { in next()
638 if(maxLength_>0 && entry_.length==maxLength_) { in next()
652 if(maxLength_>0 && entry_.length+length>maxLength_) { in next()
653 entry_.append(bytes_, pos, maxLength_-entry_.length); in next()
[all …]
DCharsTrie.java472 maxLength_=maxStringLength; in Iterator()
477 if(maxLength_>0 && length>maxLength_) { in Iterator()
478 length=maxLength_; // This will leave remainingMatchLength>=0 as a signal. in Iterator()
495 if(maxLength_>0 && length>maxLength_) { in reset()
496 length=maxLength_; in reset()
564 if(isFinal || (maxLength_>0 && str_.length()==maxLength_)) { in next()
578 if(maxLength_>0 && str_.length()==maxLength_) { in next()
592 if(maxLength_>0 && str_.length()+length>maxLength_) { in next()
593 str_.append(chars_, pos, pos+maxLength_-str_.length()); in next()
656 private int maxLength_; field in CharsTrie.Iterator
/third_party/skia/third_party/externals/icu/source/common/unicode/
Dbytestrie.h368 int32_t maxLength_; variable
Ducharstrie.h385 int32_t maxLength_; variable
/third_party/icu/icu4c/source/common/unicode/
Dbytestrie.h368 int32_t maxLength_; variable
Ducharstrie.h385 int32_t maxLength_; variable
/third_party/node/deps/icu-small/source/common/unicode/
Dbytestrie.h368 int32_t maxLength_; variable
Ducharstrie.h385 int32_t maxLength_; variable