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

1 2 3

  /external/icu/icu4c/source/common/
uset_imp.h 18 * Internal USet definitions.
25 #include "unicode/uset.h"
30 USetAdd(USet *set, UChar32 c);
33 USetAddRange(USet *set, UChar32 start, UChar32 end);
36 USetAddString(USet *set, const UChar *str, int32_t length);
39 USetRemove(USet *set, UChar32 c);
42 USetRemoveRange(USet *set, UChar32 start, UChar32 end);
45 * Interface for adding items to a USet, to keep low-level code from
46 * statically depending on the USet implementation.
50 USet *set
    [all...]
uset.cpp 10 * file name: uset.cpp
18 * There are functions to efficiently serialize a USet into an array of uint16_t
20 * instantiating a new USet.
25 #include "unicode/uset.h"
33 U_CAPI USet* U_EXPORT2
35 return (USet*) new UnicodeSet();
38 U_CAPI USet* U_EXPORT2
40 return (USet*) new UnicodeSet(start, end);
44 uset_close(USet* set) {
48 U_CAPI USet * U_EXPORT
    [all...]
uset_props.cpp 24 #include "unicode/uset.h"
32 U_CAPI USet* U_EXPORT2
48 return (USet*) set;
51 U_CAPI USet* U_EXPORT2
68 return (USet*) set;
73 uset_applyPattern(USet *set,
102 uset_applyIntPropertyValue(USet* set,
108 uset_applyPropertyAlias(USet* set,
131 uset_toPattern(const USet* set,
141 uset_closeOver(USet* set, int32_t attributes)
    [all...]
ucnv_set.cpp 18 * Conversion API functions using USet (ucnv_getUnicodeSet())
20 * implementation functions on the USet implementation.
24 #include "unicode/uset.h"
33 USet *setFillIn,
uniset_closure.cpp 114 // Does not use uset.h to reduce code dependencies
116 _set_add(USet *set, UChar32 c) {
121 _set_addRange(USet *set, UChar32 start, UChar32 end) {
126 _set_addString(USet *set, const UChar *str, int32_t length) {
characterproperties.cpp 15 #include "unicode/uset.h"
55 // Does not use uset.h to reduce code dependencies
57 _set_add(USet *set, UChar32 c) {
62 _set_addRange(USet *set, UChar32 start, UChar32 end) {
67 _set_addString(USet *set, const UChar *str, int32_t length) {
103 (USet *)incl.getAlias(),
352 U_CAPI const USet * U_EXPORT2
  /external/icu/icu4c/source/common/unicode/
uset.h 10 * file name: uset.h
42 * USet is the C API type corresponding to C++ class UnicodeSet.
47 typedef struct USet USet;
253 * USet API
257 * Create an empty USet object.
259 * @return a newly created USet. The caller must call uset_close() on
263 U_STABLE USet* U_EXPORT2
267 * Creates a USet object that contains the range of characters
272 * @return a newly created USet. The caller must call uset_close() o
    [all...]
ucnvsel.h 28 #include "unicode/uset.h"
77 const USet* excludedCodePoints,
uniset.h 19 #include "unicode/uset.h"
516 * Get a UnicodeSet pointer from a USet
518 * @param uset a USet (the ICU plain C type for UnicodeSet)
523 inline static UnicodeSet *fromUSet(USet *uset);
526 * Get a UnicodeSet pointer from a const USet
528 * @param uset a const USet (the ICU plain C type for UnicodeSet)
533 inline static const UnicodeSet *fromUSet(const USet *uset)
    [all...]
  /external/icu/libandroidicu/include/unicode/
uset.h 10 * file name: uset.h
42 * USet is the C API type corresponding to C++ class UnicodeSet.
47 typedef struct USet USet;
253 * USet API
257 * Create an empty USet object.
259 * @return a newly created USet. The caller must call uset_close() on
263 U_STABLE USet* U_EXPORT2
267 * Creates a USet object that contains the range of characters
272 * @return a newly created USet. The caller must call uset_close() o
    [all...]
ucnvsel.h 28 #include "unicode/uset.h"
77 const USet* excludedCodePoints,
ulocdata.h 24 #include "unicode/uset.h"
154 * @param fillIn Pointer to a USet object to receive the
157 * then a new USet is created and returned. The caller
171 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to
172 * a newly-allocated USet that the user must close.
176 U_STABLE USet* U_EXPORT2
177 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
uspoof.h 23 #include "unicode/uset.h"
187 * USet* allowed = uset_openEmpty();
219 * USet* allowed = uset_openEmpty();
    [all...]
ucol.h 21 #include "unicode/uset.h"
492 USet *conts,
509 USet *contractions, USet *expansions,
    [all...]
utrans.h 24 #include "unicode/uset.h"
546 * @param fillIn Pointer to a USet object to receive the modifiable characters
548 * NULL, then a new USet is created and returned. The caller
551 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to a
552 * newly-allocated USet that the user must close. In case of
556 U_STABLE USet* U_EXPORT2
559 USet* fillIn,
  /external/llvm/unittests/ADT/
SparseSetTest.cpp 17 typedef SparseSet<unsigned> USet;
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::iterator, bool> IP = Set.insert(3)
    [all...]
SparseMultiSetTest.cpp 17 typedef SparseMultiSet<unsigned> USet;
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::RangePair RangePair = Set.equal_range(0)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
SparseSetTest.cpp 17 typedef SparseSet<unsigned> USet;
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::iterator, bool> IP = Set.insert(3)
    [all...]
SparseMultiSetTest.cpp 17 typedef SparseMultiSet<unsigned> USet;
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::RangePair RangePair = Set.equal_range(0)
    [all...]
  /external/icu/icu4c/source/test/cintltst/
usettest.c 9 #include "unicode/uset.h"
16 #define TEST(x) addTest(root, &x, "uset/" # x)
28 static void expect(const USet* set,
32 static void expectContainment(const USet* set,
36 static void expectItems(const USet* set,
57 USet *s = uset_open(1, 0);
80 * Basic API test for uset.x
83 USet* set;
84 USet* set2;
237 static void expect(const USet* set
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
ulocdata.h 24 #include "unicode/uset.h"
154 * @param fillIn Pointer to a USet object to receive the
157 * then a new USet is created and returned. The caller
171 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to
172 * a newly-allocated USet that the user must close.
176 U_STABLE USet* U_EXPORT2
177 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
uspoof.h 23 #include "unicode/uset.h"
187 * USet* allowed = uset_openEmpty();
219 * USet* allowed = uset_openEmpty();
    [all...]
ucol.h 21 #include "unicode/uset.h"
492 USet *conts,
509 USet *contractions, USet *expansions,
    [all...]
utrans.h 24 #include "unicode/uset.h"
546 * @param fillIn Pointer to a USet object to receive the modifiable characters
548 * NULL, then a new USet is created and returned. The caller
551 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to a
552 * newly-allocated USet that the user must close. In case of
556 U_STABLE USet* U_EXPORT2
559 USet* fillIn,
  /external/icu/icu4c/source/i18n/
name2uni.cpp 40 // Does not use uset.h to reduce code dependencies
42 _set_add(USet *set, UChar32 c) {
48 _set_addRange(USet *set, UChar32 start, UChar32 end) {
53 _set_addString(USet *set, const UChar *str, int32_t length) {
69 (USet *)legalPtr, // USet* == UnicodeSet*

Completed in 5000 milliseconds

1 2 3