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

1 2

  /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 144 // Does not use uset.h to reduce code dependencies
146 _set_add(USet *set, UChar32 c) {
151 _set_addRange(USet *set, UChar32 start, UChar32 end) {
156 _set_addString(USet *set, const UChar *str, int32_t length) {
  /external/icu/icu4c/source/common/unicode/
uset.h 10 * file name: uset.h
37 struct USet;
43 typedef struct USet USet;
249 * USet API
253 * Create an empty USet object.
255 * @return a newly created USet. The caller must call uset_close() on
259 U_STABLE USet* U_EXPORT2
263 * Creates a USet object that contains the range of characters
268 * @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 18 #include "unicode/uset.h"
504 * Get a UnicodeSet pointer from a USet
506 * @param uset a USet (the ICU plain C type for UnicodeSet)
511 inline static UnicodeSet *fromUSet(USet *uset);
514 * Get a UnicodeSet pointer from a const USet
516 * @param uset a const USet (the ICU plain C type for UnicodeSet)
521 inline static const UnicodeSet *fromUSet(const USet *uset)
    [all...]
ucnv.h 59 * USet is the C API type for Unicode sets.
62 * See unicode/uset.h
67 struct USet;
69 typedef struct USet USet;
    [all...]
unorm2.h 36 #include "unicode/uset.h"
228 * @param filterSet USet which determines the characters to be normalized
237 unorm2_openFiltered(const UNormalizer2 *norm2, const USet *filterSet, UErrorCode *pErrorCode);
  /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/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...]
spooftest.c 30 #include "unicode/uset.h"
261 USet *us;
262 const USet *uset; local
264 uset = uspoof_getAllowedChars(sc, &status);
266 TEST_ASSERT(uset_isFrozen(uset));
398 * AllowedChars set/get the USet of allowed characters.
401 const USet *set;
402 USet *tmpSet;
405 /* By default, we should see no restriction; the USet should allow all characters. *
    [all...]
cldrtest.c 13 #include "unicode/uset.h"
27 static USet*
28 createFlattenSet(USet *origSet, UErrorCode *status) {
31 USet *newSet = NULL;
    [all...]
ucnvseltst.c 275 const USet* excludedCodePoints, const UConverterUnicodeSet whichSet) {
285 USet* set;
382 USet* excluded_sets[3] = { NULL };
  /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"
191 * USet* allowed = uset_openEmpty();
226 * 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*
uspoof.cpp 271 U_CAPI const USet * U_EXPORT2
288 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status) {
708 U_CAPI const USet * U_EXPORT2
714 U_CAPI const USet * U_EXPORT2
767 U_CAPI const USet* U_EXPORT2
  /external/llvm/lib/Target/Hexagon/
HexagonSplitDouble.cpp 68 typedef std::set<unsigned> USet;
69 typedef std::map<unsigned,USet> UUSetMap;
72 typedef std::map<const MachineLoop*,USet> LoopRegMap;
79 bool isProfitable(const USet &Part, LoopRegMap &IRM) const;
81 void collectIndRegsForLoop(const MachineLoop *L, USet &Rs);
95 bool splitPartition(const USet &Part);
98 static void dump_partition(raw_ostream&, const USet&,
112 const USet &Part, const TargetRegisterInfo &TRI) {
122 const USet &Rs = I.second;
227 USet &Asc = AssocMap[R]
    [all...]
  /external/icu/icu4c/source/test/intltest/
ssearch.cpp 21 #include "unicode/uset.h"
    [all...]
colldata.cpp 26 #include "unicode/uset.h"
320 USet *charsToTest = uset_openPattern(test_pattern, 20, &status);
326 USet *charsToRemove = uset_openPattern(remove_pattern, 70, &status);
332 USet *expansions = uset_openEmpty();
333 USet *contractions = uset_openEmpty();

Completed in 485 milliseconds

1 2