00001
00002
00003
00004
00005
00006
00007 #import <Foundation/NSMutableCharacterSet.h>
00008
00009 @class NSData;
00010
00011 @interface NSConcreteMutableCharacterSet : NSMutableCharacterSet
00012 {
00013 struct NSCharSetPrivateStruct *set;
00014 char *bits;
00015 NSData *data;
00016 BOOL isMutable;
00017 char _padding;
00018 }
00019
00020 + (id)characterSetWithName:(id)fp8;
00021 + (id)characterSetWithCharactersInString:(id)fp8;
00022 + (id)characterSetWithRange:(struct _NSRange)fp8;
00023 + (id)characterSetWithBitmapRepresentation:(id)fp8;
00024 + (id)_findDictOrBitmapSetNamed:(id)fp8;
00025 + (id)_readAndRetainFileNamed:(id)fp8 makeCompact:(BOOL)fp12;
00026 - (id)initWithContentsOfFile:(id)fp8;
00027 - (id)_initWithSet:(struct NSCharSetPrivateStruct *)fp8;
00028 - (id)initWithCharactersInString:(id)fp8;
00029 - (id)initWithRange:(struct _NSRange)fp8;
00030 - (id)initWithBitmapRepresentation:(id)fp8;
00031 - (BOOL)characterIsMember:(unsigned short)fp8;
00032 - (BOOL)longCharacterIsMember:(unsigned long)fp8;
00033 - (void)addCharactersInString:(id)fp8;
00034 - (void)removeCharactersInString:(id)fp8;
00035 - (void)addCharactersInRange:(struct _NSRange)fp8;
00036 - (void)removeCharactersInRange:(struct _NSRange)fp8;
00037 - (void)invert;
00038 - (void)formUnionWithCharacterSet:(id)fp8;
00039 - (void)formIntersectionWithCharacterSet:(id)fp8;
00040 - (BOOL)isEqual:(id)fp8;
00041 - (id)bitmapRepresentation;
00042 - (id)invertedSet;
00043 - (id)mutableCopyWithZone:(struct _NSZone *)fp8;
00044 - (void)dealloc;
00045 - (void)finalize;
00046 - (BOOL)isEmpty;
00047 - (unsigned int)count;
00048 - (BOOL)isMutable;
00049 - (void)makeImmutable;
00050 - (void)_makeSelfMutable;
00051 - (void)freeBitsAndReleaseDataIfNecessary;
00052 - (BOOL)isCompact;
00053 - (void)makeCharacterSetCompact;
00054 - (void)makeCharacterSetFast;
00055
00056 @end
00057