HomeSort by relevance Sort by last modified time
    Searched refs:USet (Results 1 - 25 of 47) 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.c
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,
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,
  /external/icu4c/common/unicode/
uset.h 8 * file name: uset.h
35 struct USet;
41 typedef struct USet USet;
239 * USet API
243 * Create an empty USet object.
245 * @return a newly created USet. The caller must call uset_close() on
249 U_STABLE USet* U_EXPORT2
253 * Creates a USet object that contains the range of characters
258 * @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"
474 * Get a UnicodeSet pointer from a USet
476 * @param uset a USet (the ICU plain C type for UnicodeSet)
481 inline static UnicodeSet *fromUSet(USet *uset);
484 * Get a UnicodeSet pointer from a const USet
486 * @param uset a const USet (the ICU plain C type for UnicodeSet)
491 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...]
ucol.h 18 #include "unicode/uset.h"
359 USet *conts,
    [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...]
ucol.h 18 #include "unicode/uset.h"
359 USet *conts,
    [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/
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"
416 USet *conts,
432 USet *contractions, USet *expansions,
    [all...]
uspoof.h 21 #include "unicode/uset.h"
446 * or deleting the USet after calling this function.
451 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status);
455 * Get a USet for the characters permitted in an identifier.
470 * @return A USet containing the characters that are permitted by
474 U_STABLE const USet * U_EXPORT2
493 * or deleting the USet after calling this function.
    [all...]
  /external/icu4c/i18n/
name2uni.cpp 37 // Does not use uset.h to reduce code dependencies
39 _set_add(USet *set, UChar32 c) {
45 _set_addRange(USet *set, UChar32 start, UChar32 end) {
50 _set_addString(USet *set, const UChar *str, int32_t length) {
66 (USet *)legalPtr, // USet* == UnicodeSet*
ucol_tok.h 25 #include "unicode/uset.h"
123 USet *copySet;
124 USet *removeSet;
ucol_sit.cpp 675 USet *conts;
676 USet *expansions;
677 USet *removedContractions;
689 USet *contractions = context->conts;
690 USet *expansions = context->expansions;
760 USet *expansions = ((contContext *)context)->expansions;
761 USet *removed = ((contContext *)context)->removedContractions;
806 USet *contractions,
825 USet *contractions,
826 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 320 milliseconds

1 2