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

1 2

  /external/icu4c/common/
uset_imp.h 16 * Internal USet definitions.
23 #include "unicode/uset.h"
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
    [all...]
uset.cpp 8 * file name: uset.cpp
16 * There are functions to efficiently serialize a USet into an array of uint16_t
18 * instantiating a new USet.
23 #include "unicode/uset.h"
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_EXPORT
    [all...]
uset_props.cpp 22 #include "unicode/uset.h"
30 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)
    [all...]
ucnv_set.c 16 * Conversion API functions using USet (ucnv_getUnicodeSet())
18 * implementation functions on the USet implementation.
22 #include "unicode/uset.h"
31 USet *setFillIn,
uniset_closure.cpp 142 // Does not use uset.h to reduce code dependencies
144 _set_add(USet *set, UChar32 c) {
149 _set_addRange(USet *set, UChar32 start, UChar32 end) {
154 _set_addString(USet *set, const UChar *str, int32_t length) {
  /external/icu4c/common/unicode/
uset.h 8 * file name: uset.h
35 struct USet;
41 typedef struct USet 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() o
    [all...]
ucnvsel.h 26 #include "unicode/uset.h"
75 const USet* excludedCodePoints,
uniset.h 16 #include "unicode/uset.h"
477 * Get a UnicodeSet pointer from a USet
479 * @param uset a USet (the ICU plain C type for UnicodeSet)
484 inline static UnicodeSet *fromUSet(USet *uset);
487 * Get a UnicodeSet pointer from a const USet
489 * @param uset a const USet (the ICU plain C type for UnicodeSet)
494 inline static const UnicodeSet *fromUSet(const USet *uset)
    [all...]
ucnv.h 57 * USet is the C API type for Unicode sets.
60 * See unicode/uset.h
65 struct USet;
67 typedef struct USet USet;
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uset.h 8 * file name: uset.h
34 struct USet;
40 typedef struct USet USet;
117 * USet API
121 * Creates a USet object that contains the range of characters
125 * @return a newly created USet. The caller must call uset_close() on
129 U_STABLE USet* U_EXPORT2
141 U_STABLE USet* U_EXPORT2
156 U_STABLE USet* U_EXPORT
    [all...]
ucnv.h 56 * USet is the C API type for Unicode sets.
59 * See unicode/uset.h
64 struct USet;
66 typedef struct USet USet;
816 * @param setFillIn A valid USet *. It will be cleared by this function before
817 * the converter's specific set is filled into the USet.
830 USet *setFillIn,
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
uset.h 8 * file name: uset.h
34 struct USet;
40 typedef struct USet USet;
117 * USet API
121 * Creates a USet object that contains the range of characters
125 * @return a newly created USet. The caller must call uset_close() on
129 U_STABLE USet* U_EXPORT2
141 U_STABLE USet* U_EXPORT2
156 U_STABLE USet* U_EXPORT
    [all...]
ucnv.h 56 * USet is the C API type for Unicode sets.
59 * See unicode/uset.h
64 struct USet;
66 typedef struct USet USet;
816 * @param setFillIn A valid USet *. It will be cleared by this function before
817 * the converter's specific set is filled into the USet.
830 USet *setFillIn,
    [all...]
  /external/webkit/Source/WebCore/editing/
SmartReplaceICU.cpp 35 #include <unicode/uset.h>
40 static void addAllCodePoints(USet* smartSet, const String& string)
49 static USet* getSmartSet(bool isPreviousCharacter)
51 static USet* preSmartSet = NULL;
52 static USet* postSmartSet = NULL;
53 USet* smartSet = isPreviousCharacter ? preSmartSet : postSmartSet;
82 USet* icuPunct = uset_openPattern(punctuationClass.characters(), punctuationClass.length(), &ec);
  /external/llvm/unittests/ADT/
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...]
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...]
  /external/icu4c/test/cintltst/
usettest.c 7 #include "unicode/uset.h"
15 #define TEST(x) addTest(root, &x, "uset/" # x)
27 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);
79 * Basic API test for uset.x
82 USet* set;
83 USet* set2;
236 static void expect(const USet* set
    [all...]
cldrtest.c 11 #include "unicode/uset.h"
23 static USet*
24 createFlattenSet(USet *origSet, UErrorCode *status) {
27 USet *newSet = NULL;
735 USet *origSet = uset_openPatternOptions(exemplarCharacters, exemplarLen, USET_CASE_INSENSITIVE, &errorCode);
736 USet *exemplarSet = createFlattenSet(origSet, &errorCode);
    [all...]
  /external/icu4c/i18n/unicode/
ulocdata.h 22 #include "unicode/uset.h"
140 * @param fillIn Pointer to a USet object to receive the
143 * then a new USet is created and returned. The caller
157 * @return USet* Either fillIn, or if fillIn is NULL, a pointer to
158 * a newly-allocated USet that the user must close.
162 U_STABLE USet* U_EXPORT2
163 ulocdata_getExemplarSet(ULocaleData *uld, USet *fillIn,
ucol.h 19 #include "unicode/uset.h"
462 USet *conts,
479 USet *contractions, USet *expansions,
    [all...]
uspoof.h 21 #include "unicode/uset.h"
444 * or deleting the USet after calling this function.
449 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status);
453 * Get a USet for the characters permitted in an identifier.
468 * @return A USet containing the characters that are permitted by
472 U_STABLE const USet * U_EXPORT2
491 * or deleting the USet after calling this function.
    [all...]
  /external/icu4c/i18n/
name2uni.cpp 38 // Does not use uset.h to reduce code dependencies
40 _set_add(USet *set, UChar32 c) {
46 _set_addRange(USet *set, UChar32 start, UChar32 end) {
51 _set_addString(USet *set, const UChar *str, int32_t length) {
67 (USet *)legalPtr, // USet* == UnicodeSet*
ucol_tok.h 25 #include "unicode/uset.h"
123 USet *copySet;
124 USet *removeSet;
ucol_sit.cpp 719 USet *conts;
720 USet *expansions;
721 USet *removedContractions;
733 USet *contractions = context->conts;
734 USet *expansions = context->expansions;
804 USet *expansions = ((contContext *)context)->expansions;
805 USet *removed = ((contContext *)context)->removedContractions;
850 USet *contractions,
869 USet *contractions,
870 USet *expansions
    [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
ucnv.h 56 * USet is the C API type for Unicode sets.
59 * See unicode/uset.h
64 struct USet;
66 typedef struct USet USet;
816 * @param setFillIn A valid USet *. It will be cleared by this function before
817 * the converter's specific set is filled into the USet.
830 USet *setFillIn,
    [all...]

Completed in 1961 milliseconds

1 2