Searched refs:MatchType (Results 1 - 22 of 22) sorted by relevance

/external/lldb/include/lldb/Core/
H A DAddressResolverName.h32 AddressResolver::MatchType type = Exact);
39 AddressResolver::MatchType type);
60 AddressResolver::MatchType m_match_type;
H A DAddressResolver.h52 } MatchType; typedef in class:lldb_private::AddressResolver
/external/skia/tests/
H A DRecordTestUtils.h31 template <typename DrawT> struct MatchType { struct
37 MatchType<DrawT> matcher;
46 MatchType<DrawT> matcher;
/external/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverName.h37 Breakpoint::MatchType type,
40 // This one takes an array of names. It is always MatchType = Exact.
47 // This one takes a C++ array of names. It is always MatchType = Exact.
61 Breakpoint::MatchType type,
111 Breakpoint::MatchType m_match_type;
H A DBreakpoint.h95 } MatchType; typedef in class:lldb_private::Breakpoint
/external/openfst/src/include/fst/
H A Dmatcher.h49 // Matcher(const F &fst, MatchType type);
65 // MatchType Type(bool test) const;
114 virtual MatchType Type(bool test) const = 0;
148 SortedMatcher(const F &fst, MatchType match_type,
194 virtual MatchType Type(bool test) const {
311 MatchType match_type_; // Type of match to perform
404 MatchType match_type,
446 virtual MatchType Type(bool test) const { return matcher_->Type(test); }
512 MatchType match_type_; // Type of match requested
578 MatchType match_typ
[all...]
H A Dlookahead-filter.h38 MatchType LookAheadMatchType(const M1 &m1, const M2 &m2) {
39 MatchType type1 = m1.Type(false);
40 MatchType type2 = m2.Type(false);
61 MatchType LookAheadMatchType(const Fst<Arc> &fst1, const Fst<Arc> &fst2) {
76 template <class M1, class M2, MatchType MT>
83 template <class M, MatchType MT>
89 LookAheadSelector(M *lmatcher1, M *lmatcher2, MatchType type)
116 MatchType type_;
128 LookAheadSelector(M1 *lmatcher1, M2 *lmatcher2, MatchType)
160 LookAheadSelector(M1 *lmatcher1, M2 *lmatcher2, MatchType)
[all...]
H A Dmatcher-fst.h42 // Matcher(const F &fst, MatchType type, MatcherData *data);
141 virtual M *InitMatcher(MatchType match_type) const {
152 typename M::MatcherData *GetData(MatchType match_type) const {
212 Matcher(const FST &fst, MatchType match_type) {
226 MatchType Type(bool test) const { return matcher_->Type(test); }
252 LookAheadMatcher(const FST &fst, MatchType match_type) {
267 MatchType Type(bool test) const { return matcher_->Type(test); }
H A Dlookahead-matcher.h50 // LookAheadMatcher(const F &fst, MatchType match_type);
193 TrivialLookAheadMatcher(const FST &fst, MatchType match_type)
205 MatchType Type(bool test) const { return matcher_.Type(test); }
265 ArcLookAheadMatcher(const FST &fst, MatchType match_type,
284 MatchType Type(bool test) const { return matcher_.Type(test); }
438 LabelLookAheadMatcher(const FST &fst, MatchType match_type,
479 MatchType Type(bool test) const { return matcher_.Type(test); }
717 LookAheadMatcher(const F &fst, MatchType match_type) {
736 MatchType Type(bool test) const { return base_->Type(test); }
H A Dreplace.h993 virtual MatcherBase<A> *InitMatcher(MatchType match_type) const {
1241 ReplaceFstMatcher(const ReplaceFst<A, T> &fst, fst::MatchType match_type)
1295 virtual MatchType Type(bool test) const {
1404 MatchType match_type_; // Supplied by caller
H A Dcompose.h381 MatchType match_type_;
420 MatchType type1 = matcher1_->Type(false);
421 MatchType type2 = matcher2_->Type(false);
H A Dfst.h148 enum MatchType { MATCH_INPUT, // Match input label. enum in namespace:fst
274 virtual MatcherBase<A> *InitMatcher(MatchType match_type) const;
529 MatcherBase<A> *Fst<A>::InitMatcher(MatchType match_type) const {
H A Dcompact-fst.h889 virtual MatcherBase<A> *InitMatcher(MatchType match_type) const {
/external/lldb/source/Core/
H A DAddressResolverName.cpp28 AddressResolver::MatchType type
65 AddressResolver::MatchType type
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
H A DPhoneNumberUtilTest.java2371 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2373 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2375 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2377 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2379 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2381 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2383 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2386 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2389 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH,
2392 assertEquals(PhoneNumberUtil.MatchType
[all...]
/external/openfst/src/include/fst/script/
H A Dinfo-impl.h182 MatchType InputMatchType() const { CheckLong(); return input_match_type_; }
183 MatchType OutputMatchType() const { CheckLong(); return output_match_type_; }
221 MatchType input_match_type_;
222 MatchType output_match_type_;
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberUtil.java419 public enum MatchType { enum in class:PhoneNumberUtil
3049 public MatchType isNumberMatch(PhoneNumber firstNumberIn, PhoneNumber secondNumberIn) {
3074 return MatchType.NO_MATCH;
3081 return MatchType.EXACT_MATCH;
3087 return MatchType.SHORT_NSN_MATCH;
3090 return MatchType.NO_MATCH;
3097 return MatchType.NSN_MATCH;
3100 return MatchType.SHORT_NSN_MATCH;
3102 return MatchType.NO_MATCH;
3126 public MatchType isNumberMatc
[all...]
H A DPhoneNumberMatcher.java20 import com.google.i18n.phonenumbers.PhoneNumberUtil.MatchType;
639 if (util.isNumberMatch(number, candidate.substring(index)) != MatchType.NSN_MATCH) {
/external/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp33 Breakpoint::MatchType type,
103 Breakpoint::MatchType type,
/external/openfst/src/include/fst/extensions/pdt/
H A Dcompose.h50 ParenMatcher(const FST &fst, MatchType match_type,
80 MatchType Type(bool test) const { return matcher_.Type(test); }
163 MatchType match_type_; // Type of match to perform
/external/openfst/src/include/fst/extensions/ngram/
H A Dngram-fst.h718 virtual MatcherBase<A>* InitMatcher(MatchType match_type) const {
757 NGramFstMatcher(const NGramFst<A> &fst, MatchType match_type)
779 virtual MatchType Type(bool test) const {
849 MatchType match_type_; // Supplied by caller
/external/openfst/src/test/
H A Dfst_test.h69 MatchType match_type = matcher.Type(true);

Completed in 742 milliseconds