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

1 2 3 4 5

  /external/icu4c/i18n/
regexst.h 29 class UnicodeSet;
42 UnicodeSet *fPropSets[URX_LAST_SET]; // The sets for common regex items, e.g. \s
45 UnicodeSet fRuleSets[10]; // Sets used while parsing regexp patterns.
46 UnicodeSet fUnescapeCharSet; // Set of chars handled by unescape when
48 UnicodeSet *fRuleDigitsAlias;
rbt_set.h 28 class UnicodeSet;
153 UnicodeSet& getSourceTargetSet(UnicodeSet& result,
name2uni.h 79 UnicodeSet legal;
rbt.h 61 * The right hand side may contain embedded <code>UnicodeSet</code>
120 * <p><b>UnicodeSet</b></p>
122 * <p><code>UnicodeSet</code> patterns may appear anywhere that
124 * Contrariwise, <code>UnicodeSet</code> patterns may themselves
128 * <p><code>UnicodeSet</code> patterns may also be embedded directly
138 * <p>See {@link UnicodeSet} for more documentation and examples.</p>
174 * <p>It is also possible to match the beginning or the end of the text using a <code>UnicodeSet</code>.
427 virtual void handleGetSourceSet(UnicodeSet& result) const;
433 virtual UnicodeSet& getTargetSet(UnicodeSet& result) const
    [all...]
regexst.cpp 158 fPropSets[URX_ISWORD_SET] = new UnicodeSet(UnicodeString(TRUE, gIsWordPattern, -1), *status);
159 fPropSets[URX_ISSPACE_SET] = new UnicodeSet(UnicodeString(TRUE, gIsSpacePattern, -1), *status);
160 fPropSets[URX_GC_EXTEND] = new UnicodeSet(UnicodeString(TRUE, gGC_ExtendPattern, -1), *status);
161 fPropSets[URX_GC_CONTROL] = new UnicodeSet(UnicodeString(TRUE, gGC_ControlPattern, -1), *status);
162 fPropSets[URX_GC_L] = new UnicodeSet(UnicodeString(TRUE, gGC_LPattern, -1), *status);
163 fPropSets[URX_GC_V] = new UnicodeSet(UnicodeString(TRUE, gGC_VPattern, -1), *status);
164 fPropSets[URX_GC_T] = new UnicodeSet(UnicodeString(TRUE, gGC_TPattern, -1), *status);
165 fPropSets[URX_GC_LV] = new UnicodeSet(UnicodeString(TRUE, gGC_LVPattern, -1), *status);
166 fPropSets[URX_GC_LVT] = new UnicodeSet(UnicodeString(TRUE, gGC_LVTPattern, -1), *status);
191 fPropSets[URX_GC_NORMAL] = new UnicodeSet(0, UnicodeSet::MAX_VALUE)
    [all...]
cpdtrans.h 156 virtual void handleGetSourceSet(UnicodeSet& result) const;
162 virtual UnicodeSet& getTargetSet(UnicodeSet& result) const;
funcrepl.h 96 virtual void addReplacementSetTo(UnicodeSet& toUnionTo) const;
regexcmp.h 90 UnicodeSet *scanProp();
91 UnicodeSet *scanPosixProp();
97 void compileSet(UnicodeSet *theSet); // Generate the compiled pattern for
98 // a reference to a UnicodeSet.
118 UnicodeSet *createSetForProperty(const UnicodeString &propName, UBool negated);
223 setDifference1 = 4 << 16 | 7, // '-', single dash difference op, for compatibility with old UnicodeSet.
224 setIntersection1 = 4 << 16 | 8 // '&', single amp intersection op, for compatibility with old UnicodeSet.
  /external/icu4c/test/intltest/
usettest.h 25 * UnicodeSet test
95 const UnicodeSet& testSet);
97 UBool checkPat(const UnicodeString& source, const UnicodeSet& testSet, const UnicodeString& pat);
99 void _testComplement(int32_t a, UnicodeSet&, UnicodeSet&);
101 void _testAdd(int32_t a, int32_t b, UnicodeSet&, UnicodeSet&, UnicodeSet&);
103 void _testRetain(int32_t a, int32_t b, UnicodeSet&, UnicodeSet&, UnicodeSet&)
    [all...]
nptrans.h 38 UnicodeSet unassigned;
39 UnicodeSet prohibited;
40 UnicodeSet labelSeparatorSet;
usettest.cpp 36 UnicodeString operator+(const UnicodeString& left, const UnicodeSet& set) {
106 UnicodeSet t;
108 UnicodeSet test(t);
131 UnicodeSet s(OTHER_TOPATTERN_TESTS[j], ec);
159 UnicodeSet* s = new UnicodeSet("[a-z {aa} {ab}]", ec);
202 UnicodeSet s;
218 UnicodeSet testSet;
224 const UnicodeSet& testSet) {
227 // be passed back into the UnicodeSet constructor
    [all...]
rbbitst.cpp 651 UnicodeSet *breaks = NULL;
681 breaks = new UnicodeSet;
    [all...]
  /external/icu4c/common/
dictbe.h 39 UnicodeSet fSet;
105 * @param set A UnicodeSet of the set of characters handled by the engine
107 virtual void setCharacters( const UnicodeSet &set );
150 UnicodeSet fThaiWordSet;
151 UnicodeSet fEndWordSet;
152 UnicodeSet fBeginWordSet;
153 UnicodeSet fSuffixSet;
154 UnicodeSet fMarkSet;
uset.cpp 33 return (USet*) new UnicodeSet();
38 return (USet*) new UnicodeSet(start, end);
43 delete (UnicodeSet*) set;
48 return (USet*) (((UnicodeSet*) set)->UnicodeSet::clone());
53 return ((UnicodeSet*) set)->UnicodeSet::isFrozen();
58 ((UnicodeSet*) set)->UnicodeSet::freeze();
63 return (USet*) (((UnicodeSet*) set)->UnicodeSet::cloneAsThawed())
    [all...]
rbbiscan.h 21 #include "unicode/symtable.h"// For UnicodeSet parsing, is the interface that
86 void findSetFor(const UnicodeString &s, RBBINode *node, UnicodeSet *setToAdopt = NULL);
140 UnicodeSet fRuleSets[10]; // Unicode Sets that are needed during
151 UnicodeSet *gRuleSet_rule_char;
152 UnicodeSet *gRuleSet_white_space;
153 UnicodeSet *gRuleSet_name_char;
154 UnicodeSet *gRuleSet_name_start_char;
uset_props.cpp 16 * C wrappers around UnicodeSet functions that are implemented in
35 UnicodeSet* set = new UnicodeSet(pat, *ec);
55 UnicodeSet* set = new UnicodeSet(pat, options, NULL, *ec);
94 ((UnicodeSet*) set)->applyPattern(pat, pos, options, NULL, *status);
102 ((UnicodeSet*) set)->applyIntPropertyValue(prop, value, *ec);
114 ((UnicodeSet*) set)->applyPropertyAlias(p, v, *ec);
125 UnicodeSet::resemblesPattern(pat, pos);
134 ((const UnicodeSet*) set)->toPattern(pat, escapeUnprintable)
    [all...]
uniset.cpp 62 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UnicodeSet)
87 // DEBUG UnicodeSet: ct 0x00A39B20; 397 [\u0A81-\u0A83\u0A85-
88 // DEBUG UnicodeSet: dt 0x00A39B20; 396 [\u0A81-\u0A83\u0A85-
99 static inline void _dbgct(UnicodeSet* set) {
104 printf("DEBUG UnicodeSet: ct 0x%08X; %d %s\n", set, ++_dbgCount, buf);
107 static inline void _dbgdt(UnicodeSet* set) {
112 printf("DEBUG UnicodeSet: dt 0x%08X; %d %s\n", set, --_dbgCount, buf);
143 UnicodeSet::UnicodeSet() :
170 UnicodeSet::UnicodeSet(UChar32 start, UChar32 end)
    [all...]
uniset_props.cpp 102 // Not a TriStateSingletonWrapper because we think the UnicodeSet constructor
105 class UnicodeSetSingleton : public SimpleSingletonWrapper<UnicodeSet> {
108 SimpleSingletonWrapper<UnicodeSet>(s), fPattern(pattern) {}
109 UnicodeSet *getInstance(UErrorCode &errorCode) {
110 return SimpleSingletonWrapper<UnicodeSet>::getInstance(createInstance, fPattern, errorCode);
115 UnicodeSet *set=new UnicodeSet(pattern, errorCode);
129 static UnicodeSet *INCLUSIONS[UPROPS_SRC_COUNT] = { NULL }; // cached getInclusions()
141 ((UnicodeSet *)set)->add(c);
146 ((UnicodeSet *)set)->add(start, end)
    [all...]
brkeng.h 18 class UnicodeSet;
159 UnicodeSet *fHandled[4];
rbbinode.h 22 class UnicodeSet;
58 UnicodeSet *fInputSet; // For uset nodes only.
  /external/icu4c/common/unicode/
uniset.h 38 * <p>The UnicodeSet class is not designed to be subclassed.
40 * <p><code>UnicodeSet</code> supports two APIs. The first is the
42 * a <code>UnicodeSet</code> object. It conforms to Java 2's
44 * <code>UnicodeSet</code> does not actually implement that
48 * <code>UnicodeSet</code> instead of a <code>Collection</code>. The
65 * attributes of a <code>UnicodeSet</code> at once, based on a
117 * for UnicodeSet at
118 * <a href="http://icu-project.org/userguide/unicodeSet.html">
119 * http://icu-project.org/userguide/unicodeSet.html</a>.
172 * <p><b>Warning</b>: you cannot add an empty string ("") to a UnicodeSet.</p
    [all...]
usetiter.h 16 * \brief C++ API: UnicodeSetIterator iterates over the contents of a UnicodeSet.
21 class UnicodeSet;
26 * UnicodeSetIterator iterates over the contents of a UnicodeSet. It
29 * multicharacter strings of the UnicodeSet, if any.
107 UnicodeSetIterator(const UnicodeSet& set);
220 void reset(const UnicodeSet& set);
252 const UnicodeSet* set;
unimatch.h 23 class UnicodeSet;
158 virtual void addMatchSetTo(UnicodeSet& toUnionTo) const = 0;
symtable.h 26 class UnicodeSet;
43 * such as UnicodeSets. If U+E015 is mapped to the UnicodeSet [a-z],
44 * then lookupMatcher(0xE015) will return the UnicodeSet [a-z].
  /external/icu4c/i18n/unicode/
unirepl.h 24 class UnicodeSet;
92 virtual void addReplacementSetTo(UnicodeSet& toUnionTo) const = 0;

Completed in 531 milliseconds

1 2 3 4 5