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

1 2 3 4

  /external/chromium_org/third_party/icu/source/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,
  /external/icu/icu4c/source/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,
  /external/chromium_org/third_party/icu/source/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"
480 * 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)
    [all...]
  /external/icu/icu4c/source/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"
480 * 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)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SmartReplaceICU.cpp 36 #include <unicode/uset.h>
40 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/
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/chromium_org/third_party/icu/source/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...]
  /external/icu/icu4c/source/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...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
ulocdata.h 22 #include "unicode/uset.h"
144 * @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,
uspoof.h 21 #include "unicode/uset.h"
560 * 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
    [all...]
ucol.h 19 #include "unicode/uset.h"
464 USet *conts,
481 USet *contractions, USet *expansions,
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
ulocdata.h 22 #include "unicode/uset.h"
142 * @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,
uspoof.h 21 #include "unicode/uset.h"
568 * 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
    [all...]
ucol.h 19 #include "unicode/uset.h"
480 USet *conts,
497 USet *contractions, USet *expansions,
    [all...]

Completed in 2145 milliseconds

1 2 3 4