Lines Matching refs:sc

181 uspoof_clone(const USpoofChecker *sc, UErrorCode *status) {
182 const SpoofImpl *src = SpoofImpl::validateThis(sc, *status);
196 uspoof_close(USpoofChecker *sc) {
198 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
204 uspoof_setChecks(USpoofChecker *sc, int32_t checks, UErrorCode *status) {
205 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
222 uspoof_getChecks(const USpoofChecker *sc, UErrorCode *status) {
223 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
231 uspoof_setRestrictionLevel(USpoofChecker *sc, URestrictionLevel restrictionLevel) {
233 SpoofImpl *This = SpoofImpl::validateThis(sc, status);
240 uspoof_getRestrictionLevel(const USpoofChecker *sc) {
242 const SpoofImpl *This = SpoofImpl::validateThis(sc, status);
250 uspoof_setAllowedLocales(USpoofChecker *sc, const char *localesList, UErrorCode *status) {
251 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
259 uspoof_getAllowedLocales(USpoofChecker *sc, UErrorCode *status) {
260 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
269 uspoof_getAllowedChars(const USpoofChecker *sc, UErrorCode *status) {
270 const UnicodeSet *result = uspoof_getAllowedUnicodeSet(sc, status);
275 uspoof_getAllowedUnicodeSet(const USpoofChecker *sc, UErrorCode *status) {
276 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
285 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status) {
287 uspoof_setAllowedUnicodeSet(sc, set, status);
292 uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const UnicodeSet *chars, UErrorCode *status) {
293 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
314 uspoof_check(const USpoofChecker *sc,
319 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
328 int32_t result = uspoof_checkUnicodeString(sc, idStr, position, status);
334 uspoof_checkUTF8(const USpoofChecker *sc,
343 int32_t result = uspoof_checkUnicodeString(sc, idStr, position, status);
349 uspoof_areConfusable(const USpoofChecker *sc,
353 SpoofImpl::validateThis(sc, *status);
364 return uspoof_areConfusableUnicodeString(sc, id1Str, id2Str, status);
369 uspoof_areConfusableUTF8(const USpoofChecker *sc,
373 SpoofImpl::validateThis(sc, *status);
383 int32_t results = uspoof_areConfusableUnicodeString(sc, id1Str, id2Str, status);
389 uspoof_areConfusableUnicodeString(const USpoofChecker *sc,
393 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
431 uspoof_getSkeletonUnicodeString(sc, flagsForSkeleton, id1, id1Skeleton, status);
432 uspoof_getSkeletonUnicodeString(sc, flagsForSkeleton, id2, id2Skeleton, status);
461 uspoof_getSkeletonUnicodeString(sc, flagsForSkeleton, id1, id1Skeleton, status);
462 uspoof_getSkeletonUnicodeString(sc, flagsForSkeleton, id2, id2Skeleton, status);
478 uspoof_checkUnicodeString(const USpoofChecker *sc,
482 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
638 uspoof_getSkeleton(const USpoofChecker *sc,
644 SpoofImpl::validateThis(sc, *status);
655 uspoof_getSkeletonUnicodeString(sc, type, idStr, destStr, status);
663 uspoof_getSkeletonUnicodeString(const USpoofChecker *sc,
668 const SpoofImpl *This = SpoofImpl::validateThis(sc, *status);
712 uspoof_getSkeletonUTF8(const USpoofChecker *sc,
717 SpoofImpl::validateThis(sc, *status);
728 uspoof_getSkeletonUnicodeString(sc, type, srcStr, destStr, status);
741 uspoof_serialize(USpoofChecker *sc,void *buf, int32_t capacity, UErrorCode *status) {
742 SpoofImpl *This = SpoofImpl::validateThis(sc, *status);