HomeSort by relevance Sort by last modified time
    Searched refs:MatchInfo (Results 1 - 19 of 19) sorted by null

  /external/icu/icu4c/source/i18n/
tznames.cpp 372 struct MatchInfo : UMemory {
378 MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const UnicodeString* mzID) {
394 delete static_cast<MatchInfo *>(obj);
417 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, &tzID, NULL);
418 if (matchInfo == NULL) {
422 matches(status)->addElement(matchInfo, status);
424 delete matchInfo;
434 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TZDBTimeZoneNames.java 130 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) {
238 private Collection<MatchInfo> _matches;
319 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength);
321 _matches = new LinkedList<MatchInfo>();
333 public Collection<MatchInfo> getMatches() {
TimeZoneGenericNames.java 29 import android.icu.text.TimeZoneNames.MatchInfo;
662 GenericMatchInfo matchInfo = new GenericMatchInfo(info.type, info.tzID, matchLength);
666 _matches.add(matchInfo);
714 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes);
716 MatchInfo longestMatch = null;
717 for (MatchInfo match : tznamesMatches) {
781 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes);
784 for (MatchInfo match : tznamesMatches) {
795 * Returns a <code>GenericMatchInfo</code> for the given <code>MatchInfo</code>.
796 * @param matchInfo the MatchInf
    [all...]
TimeZoneNamesImpl.java 202 public synchronized Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) {
207 Collection<MatchInfo> matches;
247 private Collection<MatchInfo> doFind(NameSearchHandler handler, CharSequence text, int start) {
523 private Collection<MatchInfo> _matches;
540 MatchInfo minfo;
542 minfo = new MatchInfo(ninfo.type, ninfo.tzID, null, matchLength);
545 minfo = new MatchInfo(ninfo.type, null, ninfo.mzID, matchLength);
548 _matches = new LinkedList<MatchInfo>();
562 public Collection<MatchInfo> getMatches() {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TZDBTimeZoneNames.java 128 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) {
236 private Collection<MatchInfo> _matches;
317 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength);
319 _matches = new LinkedList<MatchInfo>();
331 public Collection<MatchInfo> getMatches() {
TimeZoneGenericNames.java 28 import com.ibm.icu.text.TimeZoneNames.MatchInfo;
657 GenericMatchInfo matchInfo = new GenericMatchInfo(info.type, info.tzID, matchLength);
661 _matches.add(matchInfo);
709 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes);
711 MatchInfo longestMatch = null;
712 for (MatchInfo match : tznamesMatches) {
776 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes);
779 for (MatchInfo match : tznamesMatches) {
790 * Returns a <code>GenericMatchInfo</code> for the given <code>MatchInfo</code>.
791 * @param matchInfo the MatchInf
    [all...]
TimeZoneNamesImpl.java 200 public synchronized Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) {
205 Collection<MatchInfo> matches;
245 private Collection<MatchInfo> doFind(NameSearchHandler handler, CharSequence text, int start) {
521 private Collection<MatchInfo> _matches;
538 MatchInfo minfo;
540 minfo = new MatchInfo(ninfo.type, ninfo.tzID, null, matchLength);
543 minfo = new MatchInfo(ninfo.type, null, ninfo.mzID, matchLength);
546 _matches = new LinkedList<MatchInfo>();
560 public Collection<MatchInfo> getMatches() {
    [all...]
  /art/tools/checker/match/
file.py 23 MatchInfo = namedtuple("MatchInfo", ["scope", "variables"])
61 return MatchInfo(MatchScope(i, i), newVariables)
83 return MatchInfo(MatchScope(min(matchedLines), max(matchedLines)), variables)
125 match = MatchInfo(MatchScope(c1Length, c1Length), None)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TimeZoneNames.java 313 * @see MatchInfo
316 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> types) {
321 * A <code>MatchInfo</code> represents a time zone name match used by
326 public static class MatchInfo {
333 * Constructing a <code>MatchInfo</code>.
345 public MatchInfo(NameType nameType, String tzID, String mzID, int matchLength) {
364 * <p><b>Note</b>: A <code>MatchInfo</code> must have either a time zone ID
378 * <p><b>Note</b>: A <code>MatchInfo</code> must have either a time zone ID
570 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) {
TimeZoneFormat.java 46 import android.icu.text.TimeZoneNames.MatchInfo;
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
TimeZoneNames.java 342 * @see MatchInfo
346 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> types) {
351 * A <code>MatchInfo</code> represents a time zone name match used by
356 public static class MatchInfo {
363 * Constructing a <code>MatchInfo</code>.
376 public MatchInfo(NameType nameType, String tzID, String mzID, int matchLength) {
395 * <p><b>Note</b>: A <code>MatchInfo</code> must have either a time zone ID
410 * <p><b>Note</b>: A <code>MatchInfo</code> must have either a time zone ID
600 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) {
TimeZoneFormat.java 45 import com.ibm.icu.text.TimeZoneNames.MatchInfo;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/FileCheck/
FileCheck.cpp 328 SmallVector<StringRef, 4> MatchInfo;
329 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
333 assert(!MatchInfo.empty() && "Didn't get any match");
334 StringRef FullMatch = MatchInfo[0];
338 assert(VariableDefs[i].second < MatchInfo.size() &&
340 VariableTable[VariableDefs[i].first] = MatchInfo[VariableDefs[i].second];
  /external/icu/icu4c/source/i18n/unicode/
tznames.h 77 struct MatchInfo;
  /external/llvm/utils/FileCheck/
FileCheck.cpp 457 SmallVector<StringRef, 4> MatchInfo;
458 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
462 assert(!MatchInfo.empty() && "Didn't get any match");
463 StringRef FullMatch = MatchInfo[0];
467 assert(VariableDef.second < MatchInfo.size() && "Internal paren error");
468 VariableTable[VariableDef.first] = MatchInfo[VariableDef.second];
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/FileCheck/
FileCheck.cpp 491 SmallVector<StringRef, 4> MatchInfo;
492 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
496 assert(!MatchInfo.empty() && "Didn't get any match");
497 StringRef FullMatch = MatchInfo[0];
501 assert(VariableDef.second < MatchInfo.size() && "Internal paren error");
502 VariableTable[VariableDef.first] = MatchInfo[VariableDef.second];
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
TimeZoneFormatTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
TimeZoneFormatTest.java     [all...]
  /external/cldr/tools/java/libs/
icu4j.jar 

Completed in 674 milliseconds