HomeSort by relevance Sort by last modified time
    Searched refs:UnicodeMatcher (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/common/
unifunct.cpp 16 UnicodeMatcher* UnicodeFunctor::toMatcher() const {
unifilt.cpp 20 UnicodeMatcher::~UnicodeMatcher() {}
25 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
28 UnicodeMatcher* UnicodeFilter::toMatcher() const {
29 return (UnicodeMatcher*) this;
35 * Default implementation of UnicodeMatcher::matches() for Unicode
util.h 25 class UnicodeMatcher;
228 const UnicodeMatcher* matcher,
  /external/icu/icu4c/source/common/
unifunct.cpp 16 UnicodeMatcher* UnicodeFunctor::toMatcher() const {
unifilt.cpp 21 UnicodeMatcher::~UnicodeMatcher() {}
27 * Note that UnicodeMatcher is a base class of UnicodeFilter.
29 UnicodeMatcher* UnicodeFilter::toMatcher() const {
36 * Default implementation of UnicodeMatcher::matches() for Unicode
util.h 25 class UnicodeMatcher;
227 const UnicodeMatcher* matcher,
  /external/chromium_org/third_party/icu/source/common/unicode/
unifunct.h 23 class UnicodeMatcher;
52 * Cast 'this' to a UnicodeMatcher* pointer and return the
53 * pointer, or null if this is not a UnicodeMatcher*. Subclasses
54 * that mix in UnicodeMatcher as a base class must override this.
56 * cannot be cast to a pointer to a UnicodeMatcher, since
57 * UnicodeMatcher is a mixin that does not derive from
61 virtual UnicodeMatcher* toMatcher() const;
unifilt.h 42 * of its base class, UnicodeMatcher. These methods are toPattern()
48 * be called. However, this breaks the UnicodeMatcher base class
51 * <p>In the future we may revisit the UnicodeMatcher / UnicodeFilter
54 * UnicodeMatcher protocol.
59 class U_COMMON_API UnicodeFilter : public UnicodeFunctor, public UnicodeMatcher {
78 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
82 virtual UnicodeMatcher* toMatcher() const;
85 * Implement UnicodeMatcher API.
unimatch.h 26 * Constants returned by <code>UnicodeMatcher::matches()</code>
64 * <code>UnicodeMatcher</code> defines a protocol for objects that can
68 class U_COMMON_API UnicodeMatcher /* not : public UObject because this is an interface/mixin class */ {
75 virtual ~UnicodeMatcher();
  /external/icu/icu4c/source/common/unicode/
unifunct.h 23 class UnicodeMatcher;
52 * Cast 'this' to a UnicodeMatcher* pointer and return the
53 * pointer, or null if this is not a UnicodeMatcher*. Subclasses
54 * that mix in UnicodeMatcher as a base class must override this.
56 * cannot be cast to a pointer to a UnicodeMatcher, since
57 * UnicodeMatcher is a mixin that does not derive from
61 virtual UnicodeMatcher* toMatcher() const;
unifilt.h 42 * of its base class, UnicodeMatcher. These methods are toPattern()
48 * be called. However, this breaks the UnicodeMatcher base class
51 * <p>In the future we may revisit the UnicodeMatcher / UnicodeFilter
54 * UnicodeMatcher protocol.
59 class U_COMMON_API UnicodeFilter : public UnicodeFunctor, public UnicodeMatcher {
78 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
82 virtual UnicodeMatcher* toMatcher() const;
85 * Implement UnicodeMatcher API.
unimatch.h 26 * Constants returned by <code>UnicodeMatcher::matches()</code>
64 * <code>UnicodeMatcher</code> defines a protocol for objects that can
68 class U_COMMON_API UnicodeMatcher /* not : public UObject because this is an interface/mixin class */ {
75 virtual ~UnicodeMatcher();
  /external/chromium_org/third_party/icu/source/i18n/
rbt_data.h 25 class UnicodeMatcher;
60 * UnicodeMatcher, in which case the character in the UnicodeString in this hash is
62 * data.variables. The stand-in also represents the UnicodeMatcher in
126 * Given a stand-in character, return the UnicodeMatcher that it
130 * @return return the UnicodeMatcher that 'standIn' represents
132 UnicodeMatcher* lookupMatcher(UChar32 standIn) const;
quant.h 22 class Quantifier : public UnicodeFunctor, public UnicodeMatcher {
36 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
38 * @return the UnicodeMatcher pointer.
40 virtual UnicodeMatcher* toMatcher() const;
49 * Implement UnicodeMatcher
76 * Implement UnicodeMatcher
85 * Implement UnicodeMatcher
92 * Implement UnicodeMatcher
strmatch.cpp 41 UnicodeMatcher(o),
65 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
68 UnicodeMatcher* StringMatcher::toMatcher() const {
69 return (UnicodeMatcher*) this;
81 * Implement UnicodeMatcher
93 UnicodeMatcher* subm = data->lookupMatcher(keyChar);
124 UnicodeMatcher* subm = data->lookupMatcher(keyChar);
153 * Implement UnicodeMatcher
165 const UnicodeMatcher* m = data->lookupMatcher(keyChar);
183 * Implement UnicodeMatcher
    [all...]
strmatch.h 27 * UnicodeMatcher API. This object also implements the
42 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer {
49 * stand-ins that represent nested UnicodeMatcher objects.
56 * UnicodeMatcher objects.
82 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
84 * @return the UnicodeMatcher point.
86 virtual UnicodeMatcher* toMatcher() const;
96 * Implement UnicodeMatcher
123 * Implement UnicodeMatcher
132 * Implement UnicodeMatcher
    [all...]
quant.cpp 34 UnicodeMatcher(o),
53 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
56 UnicodeMatcher* Quantifier::toMatcher() const {
57 return (UnicodeMatcher*) this;
93 * Implement UnicodeMatcher
120 * Implement UnicodeMatcher
127 * Implement UnicodeMatcher
rbt_data.cpp 102 UnicodeMatcher*
rbt_rule.cpp 241 UnicodeMatcher *m = (key != NULL) ? key : postContext;
535 const UnicodeMatcher* matcher = data->lookupMatcher(ch);
  /external/icu/icu4c/source/i18n/
rbt_data.h 25 class UnicodeMatcher;
60 * UnicodeMatcher, in which case the character in the UnicodeString in this hash is
62 * data.variables. The stand-in also represents the UnicodeMatcher in
126 * Given a stand-in character, return the UnicodeMatcher that it
130 * @return return the UnicodeMatcher that 'standIn' represents
132 UnicodeMatcher* lookupMatcher(UChar32 standIn) const;
quant.h 22 class Quantifier : public UnicodeFunctor, public UnicodeMatcher {
36 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
38 * @return the UnicodeMatcher pointer.
40 virtual UnicodeMatcher* toMatcher() const;
49 * Implement UnicodeMatcher
76 * Implement UnicodeMatcher
85 * Implement UnicodeMatcher
92 * Implement UnicodeMatcher
quant.cpp 34 UnicodeMatcher(o),
53 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
56 UnicodeMatcher* Quantifier::toMatcher() const {
58 UnicodeMatcher *nonconst_base = static_cast<UnicodeMatcher *>(nonconst_this);
96 * Implement UnicodeMatcher
123 * Implement UnicodeMatcher
130 * Implement UnicodeMatcher
strmatch.cpp 40 UnicodeMatcher(o),
64 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
67 UnicodeMatcher* StringMatcher::toMatcher() const {
69 UnicodeMatcher *nonconst_base = static_cast<UnicodeMatcher *>(nonconst_this);
86 * Implement UnicodeMatcher
98 UnicodeMatcher* subm = data->lookupMatcher(keyChar);
129 UnicodeMatcher* subm = data->lookupMatcher(keyChar);
158 * Implement UnicodeMatcher
170 const UnicodeMatcher* m = data->lookupMatcher(keyChar)
    [all...]
strmatch.h 27 * UnicodeMatcher API. This object also implements the
42 class StringMatcher : public UnicodeFunctor, public UnicodeMatcher, public UnicodeReplacer {
49 * stand-ins that represent nested UnicodeMatcher objects.
56 * UnicodeMatcher objects.
82 * UnicodeFunctor API. Cast 'this' to a UnicodeMatcher* pointer
84 * @return the UnicodeMatcher point.
86 virtual UnicodeMatcher* toMatcher() const;
96 * Implement UnicodeMatcher
123 * Implement UnicodeMatcher
132 * Implement UnicodeMatcher
    [all...]
rbt_data.cpp 102 UnicodeMatcher*

Completed in 882 milliseconds

1 2