Lines Matching refs:sc
137 uspoof_clone(const USpoofChecker *sc, UErrorCode *status) {
138 const SpoofImpl *src = SpoofImpl::validateThis(sc, *status);
152 uspoof_close(USpoofChecker *sc) {
154 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
160 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) {
161 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
178 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status) {
179 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
187 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel) {
189 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
196 uspoof_getRestrictionLevel(const USpoofChecker *sc) {
198 const SpoofImpl *This = SpoofImpl::validateThis(sc, status);
206 uspoof_setAllowedLocales(USpoofChecker *sc, const char *localesList, UErrorCode *status) {
207 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
215 uspoof_getAllowedLocales(USpoofChecker *sc, UErrorCode *status) {
216 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
225 uspoof_getAllowedChars(const USpoofChecker *sc, UErrorCode *status) {
226 const UnicodeSet *result = uspoof_getAllowedUnicodeSet(sc, status);
231 uspoof_getAllowedUnicodeSet(const USpoofChecker *sc, UErrorCode *status) {
232 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
241 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status) {
243 uspoof_setAllowedUnicodeSet(sc, set, status);
248 uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const UnicodeSet *chars, UErrorCode *status) {
249 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
270 uspoof_check(const USpoofChecker *sc,
275 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
284 int32_t result = uspoof_checkUnicodeString(sc, idStr, position, status);
290 uspoof_checkUTF8(const USpoofChecker *sc,
299 int32_t result = uspoof_checkUnicodeString(sc, idStr, position, status);
305 uspoof_areConfusable(const USpoofChecker *sc,
309 SpoofImpl::validateThis(sc, *status);
320 return uspoof_areConfusableUnicodeString(sc, id1Str, id2Str, status);
325 uspoof_areConfusableUTF8(const USpoofChecker *sc,
329 SpoofImpl::validateThis(sc, *status);
339 int32_t results = uspoof_areConfusableUnicodeString(sc, id1Str, id2Str, status);
345 uspoof_areConfusableUnicodeString(const USpoofChecker *sc,
349 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
385 uspoof_getSkeletonUnicodeString(sc, flagsForSkeleton, id1, id1Skeleton, status);
386 uspoof_getSkeletonUnicodeString(sc, flagsForSkeleton, id2, id2Skeleton, status);
415 uspoof_getSkeletonUnicodeString(sc, flagsForSkeleton, id1, id1Skeleton, status);
416 uspoof_getSkeletonUnicodeString(sc, flagsForSkeleton, id2, id2Skeleton, status);
432 uspoof_checkUnicodeString(const USpoofChecker *sc,
436 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
592 uspoof_getSkeleton(const USpoofChecker *sc,
598 SpoofImpl::validateThis(sc, *status);
609 uspoof_getSkeletonUnicodeString(sc, type, idStr, destStr, status);
617 uspoof_getSkeletonUnicodeString(const USpoofChecker *sc,
622 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
666 uspoof_getSkeletonUTF8(const USpoofChecker *sc,
671 SpoofImpl::validateThis(sc, *status);
682 uspoof_getSkeletonUnicodeString(sc, type, srcStr, destStr, status);
695 uspoof_serialize(USpoofChecker *sc,void *buf, int32_t capacity, UErrorCode *status) {
696 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);