Lines Matching defs:set

2343 void uset_add(USet *set, UChar32 c)
2345 U_ICU_ENTRY_POINT_RENAME(uset_add)(set, c);
2347 void uset_addString(USet *set, const UChar *str, int32_t strLen)
2349 U_ICU_ENTRY_POINT_RENAME(uset_addString)(set, str, strLen);
2351 void uset_clear(USet *set)
2353 U_ICU_ENTRY_POINT_RENAME(uset_clear)(set);
2355 void uset_close(USet *set)
2357 U_ICU_ENTRY_POINT_RENAME(uset_close)(set);
2359 void uset_complement(USet *set)
2361 U_ICU_ENTRY_POINT_RENAME(uset_complement)(set);
2363 UBool uset_contains(const USet *set, UChar32 c)
2365 return U_ICU_ENTRY_POINT_RENAME(uset_contains)(set, c);
2367 UBool uset_containsString(const USet *set, const UChar *str, int32_t strLen)
2369 return U_ICU_ENTRY_POINT_RENAME(uset_containsString)(set, str, strLen);
2371 int32_t uset_getItem(const USet *set, int32_t itemIndex, UChar32 *start, UChar32 *end, UChar *str, int32_t strCapacity,
2374 return U_ICU_ENTRY_POINT_RENAME(uset_getItem)(set, itemIndex, start, end, str, strCapacity, ec);
2376 int32_t uset_getItemCount(const USet *set)
2378 return U_ICU_ENTRY_POINT_RENAME(uset_getItemCount)(set);
2380 int32_t uset_getRangeCount(const USet *set)
2382 return U_ICU_ENTRY_POINT_RENAME(uset_getRangeCount)(set);
2384 UBool uset_isEmpty(const USet *set)
2386 return U_ICU_ENTRY_POINT_RENAME(uset_isEmpty)(set);
2400 void uset_remove(USet *set, UChar32 c)
2402 U_ICU_ENTRY_POINT_RENAME(uset_remove)(set, c);
2404 void uset_removeString(USet *set, const UChar *str, int32_t strLen)
2406 U_ICU_ENTRY_POINT_RENAME(uset_removeString)(set, str, strLen);
2408 int32_t uset_size(const USet *set)
2410 return U_ICU_ENTRY_POINT_RENAME(uset_size)(set);
2412 int32_t uset_toPattern(const USet *set, UChar *result, int32_t resultCapacity, UBool escapeUnprintable,
2415 return U_ICU_ENTRY_POINT_RENAME(uset_toPattern)(set, result, resultCapacity, escapeUnprintable, ec);