00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSArray, NSMutableData;
00010
00011 @interface ABVCardLexer : NSObject
00012 {
00013 NSMutableData *_data;
00014 char *_bytes;
00015 unsigned int _length;
00016 unsigned int _peakedPoint;
00017 unsigned int _cursor;
00018 BOOL _unicode;
00019 int _errorCount;
00020 NSArray *_activeTokenSets;
00021 }
00022
00023 - (id)tokenName:(int)fp8;
00024 - (id)initWithData:(id)fp8;
00025 - (void)dealloc;
00026 - (void)finalize;
00027 - (unsigned int)cursor;
00028 - (int)errorCount;
00029 - (id)tokenSetForLength:(int)fp8;
00030 - (int)nextTokenPeakSingle:(BOOL)fp8 length:(int)fp12;
00031 - (int)nextTokenPeakUnicode:(BOOL)fp8 length:(int)fp12;
00032 - (int)nextTokenPeak:(BOOL)fp8;
00033 - (id)nextQuotedPrintableData;
00034 - (id)nextEscapedCharacter;
00035 - (id)nextSingleByteStringInEncoding:(unsigned int)fp8 quotedPrintable:(BOOL)fp12 stopTokens:(int)fp16 trim:(BOOL)fp20;
00036 - (id)nextUnicodeStringStopTokens:(int)fp8 quotedPrintable:(BOOL)fp12 trim:(BOOL)fp16;
00037 - (id)nextStringInEncoding:(unsigned int)fp8 quotedPrintable:(BOOL)fp12 stopTokens:(int)fp16 trim:(BOOL)fp20;
00038 - (int)tokenAtCursor;
00039 - (id)nextArraySeperatedByToken:(int)fp8 stoppingAt:(int)fp12 inEncoding:(unsigned int)fp16;
00040 - (id)nextUnicodeBase64Line:(char *)fp8;
00041 - (id)nextSingleByteBase64Line:(char *)fp8;
00042 - (id)nextBase64Line:(char *)fp8;
00043 - (id)nextBase64Data;
00044 - (void)advanceToPeakPoint;
00045 - (int)advanceToUnicodeString;
00046 - (int)advanceToSingleByteString;
00047 - (int)advanceToString;
00048 - (BOOL)advanceToToken:(int)fp8 throughTypes:(int)fp12;
00049 - (BOOL)advanceToEOLUnicode;
00050 - (BOOL)advanceToEOLSingle;
00051 - (BOOL)advanceToEOL;
00052 - (BOOL)advancePastEOLUnicode;
00053 - (BOOL)advancePastEOLSingle;
00054 - (BOOL)advancePastEOL;
00055 - (BOOL)atEOF;
00056
00057 @end
00058