Searched refs:USet (Results 1 - 25 of 82) sorted by relevance

1234

/external/chromium_org/third_party/icu/source/common/
H A Duset_imp.h16 * Internal USet definitions.
28 USetAdd(USet *set, UChar32 c);
31 USetAddRange(USet *set, UChar32 start, UChar32 end);
34 USetAddString(USet *set, const UChar *str, int32_t length);
37 USetRemove(USet *set, UChar32 c);
40 USetRemoveRange(USet *set, UChar32 start, UChar32 end);
43 * Interface for adding items to a USet, to keep low-level code from
44 * statically depending on the USet implementation.
48 USet *set;
H A Duset.cpp16 * There are functions to efficiently serialize a USet into an array of uint16_t
18 * instantiating a new USet.
31 U_CAPI USet* U_EXPORT2
33 return (USet*) new UnicodeSet();
36 U_CAPI USet* U_EXPORT2
38 return (USet*) new UnicodeSet(start, end);
42 uset_close(USet* set) {
46 U_CAPI USet * U_EXPORT2
47 uset_clone(const USet *set) {
48 return (USet*) (((UnicodeSe
[all...]
H A Duset_props.cpp30 U_CAPI USet* U_EXPORT2
46 return (USet*) set;
49 U_CAPI USet* U_EXPORT2
66 return (USet*) set;
71 uset_applyPattern(USet *set,
100 uset_applyIntPropertyValue(USet* set,
106 uset_applyPropertyAlias(USet* set,
129 uset_toPattern(const USet* set,
139 uset_closeOver(USet* set, int32_t attributes) {
H A Ducnv_set.c16 * Conversion API functions using USet (ucnv_getUnicodeSet())
18 * implementation functions on the USet implementation.
31 USet *setFillIn,
/external/icu/icu4c/source/common/
H A Duset_imp.h16 * Internal USet definitions.
28 USetAdd(USet *set, UChar32 c);
31 USetAddRange(USet *set, UChar32 start, UChar32 end);
34 USetAddString(USet *set, const UChar *str, int32_t length);
37 USetRemove(USet *set, UChar32 c);
40 USetRemoveRange(USet *set, UChar32 start, UChar32 end);
43 * Interface for adding items to a USet, to keep low-level code from
44 * statically depending on the USet implementation.
48 USet *set;
H A Duset.cpp16 * There are functions to efficiently serialize a USet into an array of uint16_t
18 * instantiating a new USet.
31 U_CAPI USet* U_EXPORT2
33 return (USet*) new UnicodeSet();
36 U_CAPI USet* U_EXPORT2
38 return (USet*) new UnicodeSet(start, end);
42 uset_close(USet* set) {
46 U_CAPI USet * U_EXPORT2
47 uset_clone(const USet *set) {
48 return (USet*) (((UnicodeSe
[all...]
H A Duset_props.cpp30 U_CAPI USet* U_EXPORT2
46 return (USet*) set;
49 U_CAPI USet* U_EXPORT2
66 return (USet*) set;
71 uset_applyPattern(USet *set,
100 uset_applyIntPropertyValue(USet* set,
106 uset_applyPropertyAlias(USet* set,
129 uset_toPattern(const USet* set,
139 uset_closeOver(USet* set, int32_t attributes) {
H A Ducnv_set.c16 * Conversion API functions using USet (ucnv_getUnicodeSet())
18 * implementation functions on the USet implementation.
31 USet *setFillIn,
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duset.h35 struct USet;
41 typedef struct USet USet; typedef in typeref:struct:USet
243 * USet API
247 * Create an empty USet object.
249 * @return a newly created USet. The caller must call uset_close() on
253 U_STABLE USet* U_EXPORT2
257 * Creates a USet object that contains the range of characters
262 * @return a newly created USet. The caller must call uset_close() on
266 U_STABLE USet* U_EXPORT
[all...]
H A Ducnvsel.h75 const USet* excludedCodePoints,
H A Duniset.h480 * Get a UnicodeSet pointer from a USet
482 * @param uset a USet (the ICU plain C type for UnicodeSet)
487 inline static UnicodeSet *fromUSet(USet *uset);
490 * Get a UnicodeSet pointer from a const USet
492 * @param uset a const USet (the ICU plain C type for UnicodeSet)
497 inline static const UnicodeSet *fromUSet(const USet *uset);
500 * Produce a USet * pointer for this UnicodeSet.
501 * USet is the plain C type for UnicodeSet
503 * @return a USet pointer for this UnicodeSet
506 inline USet *toUSe
[all...]
/external/icu/icu4c/source/common/unicode/
H A Duset.h35 struct USet;
41 typedef struct USet USet; typedef in typeref:struct:USet
243 * USet API
247 * Create an empty USet object.
249 * @return a newly created USet. The caller must call uset_close() on
253 U_STABLE USet* U_EXPORT2
257 * Creates a USet object that contains the range of characters
262 * @return a newly created USet. The caller must call uset_close() on
266 U_STABLE USet* U_EXPORT
[all...]
H A Ducnvsel.h75 const USet* excludedCodePoints,
H A Duniset.h480 * Get a UnicodeSet pointer from a USet
482 * @param uset a USet (the ICU plain C type for UnicodeSet)
487 inline static UnicodeSet *fromUSet(USet *uset);
490 * Get a UnicodeSet pointer from a const USet
492 * @param uset a const USet (the ICU plain C type for UnicodeSet)
497 inline static const UnicodeSet *fromUSet(const USet *uset);
500 * Produce a USet * pointer for this UnicodeSet.
501 * USet is the plain C type for UnicodeSet
503 * @return a USet pointer for this UnicodeSet
506 inline USet *toUSe
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSmartReplaceICU.cpp40 static void addAllCodePoints(USet* smartSet, const String& string)
48 static USet* getSmartSet(bool isPreviousCharacter)
50 static USet* preSmartSet = NULL;
51 static USet* postSmartSet = NULL;
52 USet* smartSet = isPreviousCharacter ? preSmartSet : postSmartSet;
81 USet* icuPunct = uset_openPattern(punctuationClass.charactersWithNullTermination().data(), punctuationClass.length(), &ec);
/external/llvm/unittests/ADT/
H A DSparseMultiSetTest.cpp17 typedef SparseMultiSet<unsigned> USet; typedef in namespace:__anon26459
21 USet Set;
32 const USet &CSet = Set;
36 USet::const_iterator I = CSet.find(5);
42 USet Set;
44 USet::iterator I = Set.insert(5);
82 USet Set;
113 USet::iterator I = Set.erase(Set.find(6));
163 USet Set;
173 USet
[all...]
H A DSparseSetTest.cpp17 typedef SparseSet<unsigned> USet; typedef in namespace:__anon26460
21 USet Set;
33 const USet &CSet = Set;
38 USet::const_iterator I = CSet.find(5);
44 USet Set;
46 std::pair<USet::iterator, bool> IP = Set.insert(5);
72 USet::iterator I = Set.find(5);
81 USet Set;
92 USet::const_iterator I = Set.begin();
106 std::pair<USet
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dusettest.c27 static void expect(const USet* set,
31 static void expectContainment(const USet* set,
35 static void expectItems(const USet* set,
56 USet *s = uset_open(1, 0);
82 USet* set;
83 USet* set2;
236 static void expect(const USet* set,
245 log_err("FAIL: USet is NULL\n");
253 static void expectContainment(const USet* set,
355 static void expectItems(const USet* se
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dusettest.c27 static void expect(const USet* set,
31 static void expectContainment(const USet* set,
35 static void expectItems(const USet* set,
56 USet *s = uset_open(1, 0);
82 USet* set;
83 USet* set2;
236 static void expect(const USet* set,
245 log_err("FAIL: USet is NULL\n");
253 static void expectContainment(const USet* set,
355 static void expectItems(const USet* se
[all...]
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dulocdata.h144 * @param fillIn Pointer to a USet object to receive the
147 * then a new USet is created and returned. The caller
161 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to
162 * a newly-allocated USet that the user must close.
166 U_STABLE USet* U_EXPORT2
167 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
H A Duspoof.h560 * or deleting the USet after calling this function.
565 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status);
569 * Get a USet for the characters permitted in an identifier.
584 * @return A USet containing the characters that are permitted by
588 U_STABLE const USet * U_EXPORT2
979 U_DRAFT const USet * U_EXPORT2
993 U_DRAFT const USet * U_EXPORT2
H A Ducol.h464 USet *conts,
481 USet *contractions, USet *expansions,
1309 * @return a pointer to newly created USet. Must be be disposed by using uset_close
1314 U_STABLE USet * U_EXPORT2
1356 USet *unsafe,
/external/icu/icu4c/source/i18n/unicode/
H A Dulocdata.h142 * @param fillIn Pointer to a USet object to receive the
145 * then a new USet is created and returned. The caller
159 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to
160 * a newly-allocated USet that the user must close.
164 U_STABLE USet* U_EXPORT2
165 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
H A Duspoof.h568 * or deleting the USet after calling this function.
573 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status);
577 * Get a USet for the characters permitted in an identifier.
592 * @return A USet containing the characters that are permitted by
596 U_STABLE const USet * U_EXPORT2
986 U_DRAFT const USet * U_EXPORT2
1000 U_DRAFT const USet * U_EXPORT2
H A Ducol.h480 USet *conts,
497 USet *contractions, USet *expansions,
1361 * @return a pointer to newly created USet. Must be be disposed by using uset_close
1366 U_STABLE USet * U_EXPORT2
1383 USet *unsafe,

Completed in 635 milliseconds

1234