OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UnicodeFunctor
(Results
1 - 25
of
27
) sorted by null
1
2
/external/icu/icu4c/source/common/
unifunct.cpp
14
UOBJECT_DEFINE_ABSTRACT_RTTI_IMPLEMENTATION(
UnicodeFunctor
)
16
UnicodeFunctor
::~
UnicodeFunctor
() {}
18
UnicodeMatcher*
UnicodeFunctor
::toMatcher() const {
22
UnicodeReplacer*
UnicodeFunctor
::toReplacer() const {
rbbirb.h
73
virtual const
UnicodeFunctor
* lookupMatcher(UChar32 ch) const;
rbbistbl.cpp
119
const
UnicodeFunctor
*RBBISymbolTable::lookupMatcher(UChar32 ch) const
uniset.cpp
328
UnicodeFunctor
* UnicodeSet::clone() const {
332
UnicodeFunctor
*UnicodeSet::cloneAsThawed() const {
[
all
...]
uniset_props.cpp
535
const
UnicodeFunctor
*m = symbols->lookupMatcher(c);
[
all
...]
/external/icu/icu4c/source/common/unicode/
unifunct.h
30
* <code>
UnicodeFunctor
</code> is an abstract base class for objects
35
class U_COMMON_API
UnicodeFunctor
: public UObject {
43
virtual ~
UnicodeFunctor
();
46
* Return a copy of this object. All
UnicodeFunctor
objects
48
*
UnicodeFunctor
to implement cloning.
51
virtual
UnicodeFunctor
* clone() const = 0;
57
* This protocol is required because a pointer to a
UnicodeFunctor
60
*
UnicodeFunctor
.
69
* This protocol is required because a pointer to a
UnicodeFunctor
72
*
UnicodeFunctor
[
all
...]
symtable.h
27
class
UnicodeFunctor
;
90
virtual const
UnicodeFunctor
* lookupMatcher(UChar32 ch) const = 0;
unifilt.h
61
class U_COMMON_API UnicodeFilter : public
UnicodeFunctor
, public UnicodeMatcher {
80
*
UnicodeFunctor
API. Cast 'this' to a UnicodeMatcher* pointer
96
*
UnicodeFunctor
API. Nothing to do.
uniset.h
484
* Returns a copy of this object. All
UnicodeFunctor
objects have
492
virtual
UnicodeFunctor
* clone() const;
570
UnicodeFunctor
*freeze();
580
UnicodeFunctor
*cloneAsThawed() const;
[
all
...]
/external/icu/icu4c/source/i18n/
funcrepl.h
35
class FunctionReplacer : public
UnicodeFunctor
, public UnicodeReplacer {
48
UnicodeFunctor
* replacer;
58
UnicodeFunctor
* adoptedReplacer);
71
* Implement
UnicodeFunctor
73
virtual
UnicodeFunctor
* clone() const;
76
*
UnicodeFunctor
API. Cast 'this' to a UnicodeReplacer* pointer
101
*
UnicodeFunctor
API
rbt_data.h
26
class
UnicodeFunctor
;
70
* Map category variable (UChar) to set (
UnicodeFunctor
).
74
* actual
UnicodeFunctor
object. In addition, the stand-in is
78
UnicodeFunctor
** variables;
92
* variablesLength - 1 represent
UnicodeFunctor
objects.
120
* Given a stand-in character, return the
UnicodeFunctor
that it
123
* @return the
UnicodeFunctor
that 'standIn' represents
125
UnicodeFunctor
* lookup(UChar32 standIn) const;
quant.h
24
class Quantifier : public
UnicodeFunctor
, public UnicodeMatcher {
30
Quantifier(
UnicodeFunctor
*adoptedMatcher,
38
*
UnicodeFunctor
API. Cast 'this' to a UnicodeMatcher* pointer
45
* Implement
UnicodeFunctor
48
virtual
UnicodeFunctor
* clone() const;
99
*
UnicodeFunctor
API
115
UnicodeFunctor
* matcher; // owned
rbt_rule.h
27
class
UnicodeFunctor
;
88
UnicodeFunctor
* output;
108
UnicodeFunctor
** segments;
186
UnicodeFunctor
** segs,
rbt_data.cpp
61
variables = (
UnicodeFunctor
**)uprv_malloc(variablesLength * sizeof(
UnicodeFunctor
*));
98
UnicodeFunctor
*
106
UnicodeFunctor
*f = lookup(standIn);
112
UnicodeFunctor
*f = lookup(standIn);
strrepl.h
37
class StringReplacer : public
UnicodeFunctor
, public UnicodeReplacer {
112
* Implement
UnicodeFunctor
114
virtual
UnicodeFunctor
* clone() const;
117
*
UnicodeFunctor
API. Cast 'this' to a UnicodeReplacer* pointer
142
*
UnicodeFunctor
API
funcrepl.cpp
35
UnicodeFunctor
* adoptedReplacer) {
44
UnicodeFunctor
(other),
60
* Implement
UnicodeFunctor
62
UnicodeFunctor
* FunctionReplacer::clone() const {
67
*
UnicodeFunctor
API. Cast 'this' to a UnicodeReplacer* pointer
120
*
UnicodeFunctor
API
strmatch.h
44
class StringMatcher : public
UnicodeFunctor
, public UnicodeMatcher, public UnicodeReplacer {
78
* Implement
UnicodeFunctor
81
virtual
UnicodeFunctor
* clone() const;
84
*
UnicodeFunctor
API. Cast 'this' to a UnicodeMatcher* pointer
91
*
UnicodeFunctor
API. Cast 'this' to a UnicodeReplacer* pointer
151
* Implement
UnicodeFunctor
quant.cpp
25
Quantifier::Quantifier(
UnicodeFunctor
*adoptedMatcher,
35
UnicodeFunctor
(o),
48
* Implement
UnicodeFunctor
50
UnicodeFunctor
* Quantifier::clone() const {
55
*
UnicodeFunctor
API. Cast 'this' to a UnicodeMatcher* pointer
141
* Implement
UnicodeFunctor
rbt_pars.h
30
class
UnicodeFunctor
;
280
* Generate and return a stand-in for a new
UnicodeFunctor
. Store
282
* @param adopted the
UnicodeFunctor
to be adopted.
283
* @return a stand-in for a new
UnicodeFunctor
.
285
UChar generateStandInFor(
UnicodeFunctor
* adopted, UErrorCode& status);
rbt_pars.cpp
153
virtual const
UnicodeFunctor
* lookupMatcher(UChar32 ch) const;
191
const
UnicodeFunctor
* ParseData::lookupMatcher(UChar32 ch) const {
194
const
UnicodeFunctor
* set = NULL;
199
(
UnicodeFunctor
*) variablesVector->elementAt(i) : 0;
233
UnicodeFunctor
*f = (
UnicodeFunctor
*) variablesVector->elementAt(i);
248
UnicodeFunctor
*f = (
UnicodeFunctor
*) variablesVector->elementAt(i);
674
UnicodeFunctor
*m =
851
delete (
UnicodeFunctor
*)variablesVector.orphanElementAt(0)
[
all
...]
strmatch.cpp
41
UnicodeFunctor
(o),
59
* Implement
UnicodeFunctor
61
UnicodeFunctor
* StringMatcher::clone() const {
66
*
UnicodeFunctor
API. Cast 'this' to a UnicodeMatcher* pointer
77
*
UnicodeFunctor
API. Cast 'this' to a UnicodeReplacer* pointer
277
* Implement
UnicodeFunctor
284
UnicodeFunctor
* f = data->lookup(c);
strrepl.cpp
71
UnicodeFunctor
(other),
88
* Implement
UnicodeFunctor
90
UnicodeFunctor
* StringReplacer::clone() const {
95
* Implement
UnicodeFunctor
310
*
UnicodeFunctor
API
317
UnicodeFunctor
* f = data->lookup(c);
rbt_rule.cpp
62
UnicodeFunctor
** segs,
178
segments = (
UnicodeFunctor
**)uprv_malloc(other.segmentsCount * sizeof(
UnicodeFunctor
*));
/external/icu/icu4c/source/test/intltest/
transapi.cpp
714
virtual
UnicodeFunctor
* clone() const {
735
virtual
UnicodeFunctor
* clone() const {
756
virtual
UnicodeFunctor
* clone() const {
[
all
...]
uobjtest.cpp
469
TESTCLASSID_ABSTRACT(
UnicodeFunctor
);
Completed in 1754 milliseconds
1
2