HomeSort by relevance Sort by last modified time
    Searched defs:matchLength (Results 1 - 25 of 30) sorted by null

1 2

  /external/v8/src/inspector/
search-util.cc 114 int matchLength;
115 if (regex.match(line, 0, &matchLength) != -1)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TimeZoneNames.java 337 * @param matchLength the match length.
340 * or 3) <code>matchLength</code> is 0 or smaller.
344 public MatchInfo(NameType nameType, String tzID, String mzID, int matchLength) {
351 if (matchLength <= 0) {
352 throw new IllegalArgumentException("matchLength must be positive value");
357 _matchLength = matchLength;
403 public int matchLength() {
SearchIterator.java 77 protected int matchLength;
126 return SearchIterator.this.matchLength;
130 SearchIterator.this.matchLength = matchedLength;
388 int matchlength = search_.matchedLength(); local
394 matchindex + matchlength >= endIdx)) {
412 if (matchlength > 0) {
413 // if matchlength is 0 we are at the start of the iteration
417 index += matchlength;
SimpleDateFormat.java     [all...]
  /external/icu/icu4c/source/common/
ucnv_ext.cpp 120 * - the returned matchLength is not offset by 2
131 int32_t i, j, idx, length, matchLength;
143 i=j=matchLength=0;
177 matchLength=i+j;
216 matchLength=i+j;
225 if(matchLength==0) {
232 return matchLength;
526 * the matchLength is 2 if only firstCP matched, and >2 if firstCP and
543 int32_t i, j, idx, length, matchLength;
581 i=j=matchLength=0
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
TimeZoneNames.java 368 * @param matchLength the match length.
371 * or 3) <code>matchLength</code> is 0 or smaller.
376 public MatchInfo(NameType nameType, String tzID, String mzID, int matchLength) {
383 if (matchLength <= 0) {
384 throw new IllegalArgumentException("matchLength must be positive value");
389 _matchLength = matchLength;
439 public int matchLength() {
SimpleDateFormat.java     [all...]
  /external/lz4/lib/
lz4opt.h 100 size_t matchLength = 0;
118 matchLength = LZ4_count(ip, match, iHighLimit);
123 matchLength = LZ4_count(ip, match, vLimit);
124 if ((ip+matchLength == vLimit) && (vLimit < iHighLimit))
125 matchLength += LZ4_count(ip+matchLength, base+dictLimit, iHighLimit);
128 if (matchLength > best_mlen) {
129 best_mlen = matchLength;
135 matches[mnum].len = (int)matchLength;
141 if (ip+matchLength >= iHighLimit) /* equal : no way to know if inf or sup *
    [all...]
lz4.c 574 /* Encode MatchLength */
811 /* Encode MatchLength */
812 { size_t matchLength = LZ4_count(ip+MINMATCH, match+MINMATCH, matchlimit);
814 if (op + ((matchLength+240)/255) > oMaxMatch) {
816 matchLength = (15-1) + (oMaxMatch-op) * 255;
818 ip += MINMATCH + matchLength;
820 if (matchLength>=ML_MASK) {
822 matchLength -= ML_MASK;
823 while (matchLength >= 255) { matchLength-=255; *op++ = 255;
    [all...]
  /external/icu/icu4c/source/i18n/
tznames.cpp 375 int32_t matchLength;
378 MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
380 this->matchLength = matchLength;
412 TimeZoneNames::MatchInfoCollection::addZone(UTimeZoneNameType nameType, int32_t matchLength,
417 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, &tzID, NULL);
429 TimeZoneNames::MatchInfoCollection::addMetaZone(UTimeZoneNameType nameType, int32_t matchLength,
434 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID);
466 return match->matchLength;
tzgnames.cpp 116 int32_t matchLength;
170 return minfo->matchLength;
194 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
214 GNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
241 gmatch->matchLength = matchLength;
247 if (matchLength > fMaxMatchLen) {
248 fMaxMatchLen = matchLength;
    [all...]
smpdtfmt.cpp     [all...]
tznames_impl.cpp 105 int32_t matchLength;
913 UBool handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status);
933 ZNameSearchHandler::handleMatch(int32_t matchLength, const CharacterNode *node, UErrorCode &status) {
955 fResults->addZone(nameinfo->type, matchLength, UnicodeString(nameinfo->tzID, -1), status);
958 fResults->addMetaZone(nameinfo->type, matchLength, UnicodeString(nameinfo->mzID, -1), status);
960 if (U_SUCCESS(status) && matchLength > fMaxMatchLen) {
961 fMaxMatchLen = matchLength;
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
SearchIterator.java 80 protected int matchLength;
129 return SearchIterator.this.matchLength;
133 SearchIterator.this.matchLength = matchedLength;
403 int matchlength = search_.matchedLength(); local
409 matchindex + matchlength >= endIdx)) {
427 if (matchlength > 0) {
428 // if matchlength is 0 we are at the start of the iteration
432 index += matchlength;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneGenericNames.java 605 final int matchLength;
608 private GenericMatchInfo(GenericNameType nameType, String tzID, int matchLength) {
609 this(nameType, tzID, matchLength, TimeType.UNKNOWN);
612 private GenericMatchInfo(GenericNameType nameType, String tzID, int matchLength, TimeType timeType) {
615 this.matchLength = matchLength;
631 public int matchLength() {
632 return matchLength;
653 public boolean handlePrefixMatch(int matchLength, Iterator<NameInfo> values) {
659 GenericMatchInfo matchInfo = new GenericMatchInfo(info.type, info.tzID, matchLength);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
usrchtst.c 346 int32_t matchlength; local
362 matchlength = search.size[count];
365 matchlength != (uint32_t)usearch_getMatchedLength(strsrch)) {
372 matchindex, matchlength);
378 (int32_t) matchlength || U_FAILURE(status) ||
381 matchlength * sizeof(UChar)) != 0) {
404 matchlength = search.size[count];
407 matchlength != (uint32_t)usearch_getMatchedLength(strsrch)) {
414 matchindex, matchlength);
419 (int32_t) matchlength || U_FAILURE(status) |
1258 uint32_t matchlength = search.size[count]; local
1440 int32_t matchlength = search.size[count]; local
2316 uint32_t matchlength = search.size[count]; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneGenericNames.java 603 final int matchLength;
606 private GenericMatchInfo(GenericNameType nameType, String tzID, int matchLength) {
607 this(nameType, tzID, matchLength, TimeType.UNKNOWN);
610 private GenericMatchInfo(GenericNameType nameType, String tzID, int matchLength, TimeType timeType) {
613 this.matchLength = matchLength;
629 public int matchLength() {
630 return matchLength;
651 public boolean handlePrefixMatch(int matchLength, Iterator<NameInfo> values) {
657 GenericMatchInfo matchInfo = new GenericMatchInfo(info.type, info.tzID, matchLength);
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetMBCS.java     [all...]
  /prebuilts/tools/common/m2/repository/org/parboiled/parboiled-java/1.0.2/
parboiled-java-1.0.2.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/lib/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.resources_3.10.0.v20150423-0755.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 636 milliseconds

1 2