Home
last modified time | relevance | path

Searched refs:MatchInfo (Results 1 – 25 of 32) sorted by relevance

12

/third_party/skia/third_party/externals/icu/source/i18n/
Dtznames.cpp372 struct MatchInfo : UMemory { struct
378MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const Unicod… in MatchInfo() argument
394 delete static_cast<MatchInfo *>(obj); in deleteMatchInfo()
417 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, &tzID, NULL); in addZone()
434 MatchInfo* matchInfo = new MatchInfo(nameType, matchLength, NULL, &mzID); in addMetaZone()
455 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getNameTypeAt()
464 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getMatchLengthAt()
474 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getTimeZoneIDAt()
485 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getMetaZoneIDAt()
/third_party/node/deps/icu-small/source/i18n/
Dtznames.cpp372 struct MatchInfo : UMemory { struct
378MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const Unicod… in MatchInfo() function
394 delete static_cast<MatchInfo *>(obj); in deleteMatchInfo()
417 … LocalPointer <MatchInfo> matchInfo(new MatchInfo(nameType, matchLength, &tzID, nullptr), status); in addZone()
431 LocalPointer<MatchInfo> matchInfo(new MatchInfo(nameType, matchLength, nullptr, &mzID), status); in addMetaZone()
449 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getNameTypeAt()
458 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getMatchLengthAt()
468 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getTimeZoneIDAt()
479 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getMetaZoneIDAt()
/third_party/icu/icu4c/source/i18n/
Dtznames.cpp372 struct MatchInfo : UMemory { struct
378MatchInfo(UTimeZoneNameType nameType, int32_t matchLength, const UnicodeString* tzID, const Unicod… in MatchInfo() argument
394 delete static_cast<MatchInfo *>(obj); in deleteMatchInfo()
417 LocalPointer <MatchInfo> matchInfo(new MatchInfo(nameType, matchLength, &tzID, NULL), status); in addZone()
431 LocalPointer<MatchInfo> matchInfo(new MatchInfo(nameType, matchLength, NULL, &mzID), status); in addMetaZone()
449 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getNameTypeAt()
458 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getMatchLengthAt()
468 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getTimeZoneIDAt()
479 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); in getMetaZoneIDAt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
DCombinerHelper.h93 bool matchCombineExtendingLoads(MachineInstr &MI, PreferredTuple &MatchInfo);
94 void applyCombineExtendingLoads(MachineInstr &MI, PreferredTuple &MatchInfo);
99 bool matchCombineIndexedLoadStore(MachineInstr &MI, IndexedLoadStoreMatchInfo &MatchInfo);
100 void applyCombineIndexedLoadStore(MachineInstr &MI, IndexedLoadStoreMatchInfo &MatchInfo);
178 bool matchPtrAddImmedChain(MachineInstr &MI, PtrAddChain &MatchInfo);
179 bool applyPtrAddImmedChain(MachineInstr &MI, PtrAddChain &MatchInfo);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DCombinerHelper.cpp713 IndexedLoadStoreMatchInfo MatchInfo; in tryCombineIndexedLoadStore() local
714 if (matchCombineIndexedLoadStore(MI, MatchInfo)) { in tryCombineIndexedLoadStore()
715 applyCombineIndexedLoadStore(MI, MatchInfo); in tryCombineIndexedLoadStore()
721 …binerHelper::matchCombineIndexedLoadStore(MachineInstr &MI, IndexedLoadStoreMatchInfo &MatchInfo) { in matchCombineIndexedLoadStore() argument
727 MatchInfo.IsPre = findPreIndexCandidate(MI, MatchInfo.Addr, MatchInfo.Base, in matchCombineIndexedLoadStore()
728 MatchInfo.Offset); in matchCombineIndexedLoadStore()
729 if (!MatchInfo.IsPre && in matchCombineIndexedLoadStore()
730 !findPostIndexCandidate(MI, MatchInfo.Addr, MatchInfo.Base, in matchCombineIndexedLoadStore()
731 MatchInfo.Offset)) in matchCombineIndexedLoadStore()
738 MachineInstr &MI, IndexedLoadStoreMatchInfo &MatchInfo) { in applyCombineIndexedLoadStore() argument
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DTZDBTimeZoneNames.java130 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) { in find()
238 private Collection<MatchInfo> _matches;
319 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength); in handlePrefixMatch()
321 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
333 public Collection<MatchInfo> getMatches() { in getMatches()
DTimeZoneGenericNames.java29 import ohos.global.icu.text.TimeZoneNames.MatchInfo;
714 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in findBestMatch()
716 MatchInfo longestMatch = null; in findBestMatch()
717 for (MatchInfo match : tznamesMatches) { in findBestMatch()
781 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in find()
784 for (MatchInfo match : tznamesMatches) { in find()
799 private GenericMatchInfo createGenericMatchInfo(MatchInfo matchInfo) { in createGenericMatchInfo()
843 …private Collection<MatchInfo> findTimeZoneNames(String text, int start, EnumSet<GenericNameType> t… in findTimeZoneNames()
844 Collection<MatchInfo> tznamesMatches = null; in findTimeZoneNames()
DTimeZoneNamesImpl.java202 …public synchronized Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nam… in find()
207 Collection<MatchInfo> matches; in find()
247 private Collection<MatchInfo> doFind(NameSearchHandler handler, CharSequence text, int start) { in doFind()
523 private Collection<MatchInfo> _matches;
540 MatchInfo minfo; in handlePrefixMatch()
542 minfo = new MatchInfo(ninfo.type, ninfo.tzID, null, matchLength); in handlePrefixMatch()
545 minfo = new MatchInfo(ninfo.type, null, ninfo.mzID, matchLength); in handlePrefixMatch()
548 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
562 public Collection<MatchInfo> getMatches() { in getMatches()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTZDBTimeZoneNames.java128 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) { in find()
236 private Collection<MatchInfo> _matches;
317 MatchInfo minfo = new MatchInfo(ntype, null, match.mzID, matchLength); in handlePrefixMatch()
319 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
331 public Collection<MatchInfo> getMatches() { in getMatches()
DTimeZoneGenericNames.java28 import com.ibm.icu.text.TimeZoneNames.MatchInfo;
709 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in findBestMatch()
711 MatchInfo longestMatch = null; in findBestMatch()
712 for (MatchInfo match : tznamesMatches) { in findBestMatch()
776 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in find()
779 for (MatchInfo match : tznamesMatches) { in find()
794 private GenericMatchInfo createGenericMatchInfo(MatchInfo matchInfo) { in createGenericMatchInfo()
838 …private Collection<MatchInfo> findTimeZoneNames(String text, int start, EnumSet<GenericNameType> t… in findTimeZoneNames()
839 Collection<MatchInfo> tznamesMatches = null; in findTimeZoneNames()
DTimeZoneNamesImpl.java200 …public synchronized Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nam… in find()
205 Collection<MatchInfo> matches; in find()
245 private Collection<MatchInfo> doFind(NameSearchHandler handler, CharSequence text, int start) { in doFind()
521 private Collection<MatchInfo> _matches;
538 MatchInfo minfo; in handlePrefixMatch()
540 minfo = new MatchInfo(ninfo.type, ninfo.tzID, null, matchLength); in handlePrefixMatch()
543 minfo = new MatchInfo(ninfo.type, null, ninfo.mzID, matchLength); in handlePrefixMatch()
546 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
560 public Collection<MatchInfo> getMatches() { in getMatches()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DTimeZoneNames.java316 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> types) { in find()
326 public static class MatchInfo { class in TimeZoneNames
345 public MatchInfo(NameType nameType, String tzID, String mzID, int matchLength) { in MatchInfo() method in TimeZoneNames.MatchInfo
570 … public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) { in find()
DTimeZoneFormat.java46 import ohos.global.icu.text.TimeZoneNames.MatchInfo;
1140 Collection<MatchInfo> specificMatches = _tznames.find(text, startIdx, nameTypes); in parse()
1142 MatchInfo specificMatch = null; in parse()
1143 for (MatchInfo match : specificMatches) { in parse()
1160 Collection<MatchInfo> tzdbNameMatches = in parse()
1163 MatchInfo tzdbNameMatch = null; in parse()
1164 for (MatchInfo match : tzdbNameMatches) { in parse()
1354 … Collection<MatchInfo> specificMatches = _tznames.find(text, startIdx, ALL_SIMPLE_NAME_TYPES); in parse()
1355 MatchInfo specificMatch = null; in parse()
1358 for (MatchInfo match : specificMatches) { in parse()
[all …]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DTimeZoneNames.java345 public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> types) { in find()
354 public static class MatchInfo { class in TimeZoneNames
373 public MatchInfo(NameType nameType, String tzID, String mzID, int matchLength) { in MatchInfo() method in TimeZoneNames.MatchInfo
592 … public Collection<MatchInfo> find(CharSequence text, int start, EnumSet<NameType> nameTypes) { in find()
DTimeZoneFormat.java45 import com.ibm.icu.text.TimeZoneNames.MatchInfo;
1201 Collection<MatchInfo> specificMatches = _tznames.find(text, startIdx, nameTypes); in parse()
1203 MatchInfo specificMatch = null; in parse()
1204 for (MatchInfo match : specificMatches) { in parse()
1221 Collection<MatchInfo> tzdbNameMatches = in parse()
1224 MatchInfo tzdbNameMatch = null; in parse()
1225 for (MatchInfo match : tzdbNameMatches) { in parse()
1415 … Collection<MatchInfo> specificMatches = _tznames.find(text, startIdx, ALL_SIMPLE_NAME_TYPES); in parse()
1416 MatchInfo specificMatch = null; in parse()
1419 for (MatchInfo match : specificMatches) { in parse()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DFileCheck.cpp651 SmallVector<StringRef, 4> MatchInfo; in match() local
655 if (!Regex(RegExToMatch, Flags).match(Buffer, &MatchInfo)) in match()
659 assert(!MatchInfo.empty() && "Didn't get any match"); in match()
660 StringRef FullMatch = MatchInfo[0]; in match()
664 assert(VariableDef.second < MatchInfo.size() && "Internal paren error"); in match()
666 MatchInfo[VariableDef.second]; in match()
674 assert(CaptureParenGroup < MatchInfo.size() && "Internal paren error"); in match()
678 StringRef MatchedValue = MatchInfo[CaptureParenGroup]; in match()
/third_party/node/deps/icu-small/source/i18n/unicode/
Dtznames.h79 struct MatchInfo;
/third_party/icu/icu4c/source/i18n/unicode/
Dtznames.h79 struct MatchInfo;
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Dtznames.h79 struct MatchInfo;
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DTimeZoneFormatTest.java1301 new TimeZoneNames.MatchInfo(null, null, null, -1); in TestAPI()
1308 new TimeZoneNames.MatchInfo(NameType.LONG_GENERIC, null, null, -1); in TestAPI()
1315 new TimeZoneNames.MatchInfo(NameType.LONG_GENERIC, "America/Chicago", null, -1); in TestAPI()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTimeZoneFormatTest.java1298 new TimeZoneNames.MatchInfo(null, null, null, -1); in TestAPI()
1305 new TimeZoneNames.MatchInfo(NameType.LONG_GENERIC, null, null, -1); in TestAPI()
1312 new TimeZoneNames.MatchInfo(NameType.LONG_GENERIC, "America/Chicago", null, -1); in TestAPI()
/third_party/icu/icu4j/tools/build/
Dicu4j66.api3.gz12;ICU4J 66.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j67.api3.gz
Dicu4j68.api3.gz12;ICU4J 68.1;; 2ST@3.6;PB;NS;NF;NS; ...
Dicu4j65.api3.gz

12