Lines Matching refs:SbiParser

37     void( SbiParser::*Func )();     // Verarbeitungsroutine
46 { CALL, &SbiParser::Call, N, Y, }, // CALL
47 { CLOSE, &SbiParser::Close, N, Y, }, // CLOSE
48 { _CONST_, &SbiParser::Dim, Y, Y, }, // CONST
49 { DECLARE, &SbiParser::Declare, Y, N, }, // DECLARE
50 { DEFBOOL, &SbiParser::DefXXX, Y, N, }, // DEFBOOL
51 { DEFCUR, &SbiParser::DefXXX, Y, N, }, // DEFCUR
52 { DEFDATE, &SbiParser::DefXXX, Y, N, }, // DEFDATE
53 { DEFDBL, &SbiParser::DefXXX, Y, N, }, // DEFDBL
54 { DEFERR, &SbiParser::DefXXX, Y, N, }, // DEFERR
55 { DEFINT, &SbiParser::DefXXX, Y, N, }, // DEFINT
56 { DEFLNG, &SbiParser::DefXXX, Y, N, }, // DEFLNG
57 { DEFOBJ, &SbiParser::DefXXX, Y, N, }, // DEFOBJ
58 { DEFSNG, &SbiParser::DefXXX, Y, N, }, // DEFSNG
59 { DEFSTR, &SbiParser::DefXXX, Y, N, }, // DEFSTR
60 { DEFVAR, &SbiParser::DefXXX, Y, N, }, // DEFVAR
61 { DIM, &SbiParser::Dim, Y, Y, }, // DIM
62 { DO, &SbiParser::DoLoop, N, Y, }, // DO
63 { ELSE, &SbiParser::NoIf, N, Y, }, // ELSE
64 { ELSEIF, &SbiParser::NoIf, N, Y, }, // ELSEIF
65 { ENDIF, &SbiParser::NoIf, N, Y, }, // ENDIF
66 { END, &SbiParser::Stop, N, Y, }, // END
67 { ENUM, &SbiParser::Enum, Y, N, }, // TYPE
68 { ERASE, &SbiParser::Erase, N, Y, }, // ERASE
69 { _ERROR_, &SbiParser::ErrorStmnt, N, Y, }, // ERROR
70 { EXIT, &SbiParser::Exit, N, Y, }, // EXIT
71 { FOR, &SbiParser::For, N, Y, }, // FOR
72 { FUNCTION, &SbiParser::SubFunc, Y, N, }, // FUNCTION
73 { GOSUB, &SbiParser::Goto, N, Y, }, // GOSUB
74 { GLOBAL, &SbiParser::Dim, Y, N, }, // GLOBAL
75 { GOTO, &SbiParser::Goto, N, Y, }, // GOTO
76 { IF, &SbiParser::If, N, Y, }, // IF
77 { IMPLEMENTS, &SbiParser::Implements, Y, N, }, // IMPLEMENTS
78 { INPUT, &SbiParser::Input, N, Y, }, // INPUT
79 { LET, &SbiParser::Assign, N, Y, }, // LET
80 { LINE, &SbiParser::Line, N, Y, }, // LINE, -> LINE INPUT (#i92642)
81 { LINEINPUT,&SbiParser::LineInput, N, Y, }, // LINE INPUT
82 { LOOP, &SbiParser::BadBlock, N, Y, }, // LOOP
83 { LSET, &SbiParser::LSet, N, Y, }, // LSET
84 { NAME, &SbiParser::Name, N, Y, }, // NAME
85 { NEXT, &SbiParser::BadBlock, N, Y, }, // NEXT
86 { ON, &SbiParser::On, N, Y, }, // ON
87 { OPEN, &SbiParser::Open, N, Y, }, // OPEN
88 { OPTION, &SbiParser::Option, Y, N, }, // OPTION
89 { PRINT, &SbiParser::Print, N, Y, }, // PRINT
90 { PRIVATE, &SbiParser::Dim, Y, N, }, // PRIVATE
91 { PROPERTY, &SbiParser::SubFunc, Y, N, }, // FUNCTION
92 { PUBLIC, &SbiParser::Dim, Y, N, }, // PUBLIC
93 { REDIM, &SbiParser::ReDim, N, Y, }, // DIM
94 { RESUME, &SbiParser::Resume, N, Y, }, // RESUME
95 { RETURN, &SbiParser::Return, N, Y, }, // RETURN
96 { RSET, &SbiParser::RSet, N, Y, }, // RSET
97 { SELECT, &SbiParser::Select, N, Y, }, // SELECT
98 { SET, &SbiParser::Set, N, Y, }, // SET
99 { STATIC, &SbiParser::Static, Y, Y, }, // STATIC
100 { STOP, &SbiParser::Stop, N, Y, }, // STOP
101 { SUB, &SbiParser::SubFunc, Y, N, }, // SUB
102 { TYPE, &SbiParser::Type, Y, N, }, // TYPE
103 { UNTIL, &SbiParser::BadBlock, N, Y, }, // UNTIL
104 { WHILE, &SbiParser::While, N, Y, }, // WHILE
105 { WEND, &SbiParser::BadBlock, N, Y, }, // WEND
106 { WITH, &SbiParser::With, N, Y, }, // WITH
107 { WRITE, &SbiParser::Write, N, Y, }, // WRITE
118 SbiParser::SbiParser( StarBASIC* pb, SbModule* pm ) in SbiParser() function in SbiParser
161 SbiSymDef* SbiParser::CheckRTLForSym( const String& rSym, SbxDataType eType ) in CheckRTLForSym()
192 sal_Bool SbiParser::HasGlobalCode() in HasGlobalCode()
204 void SbiParser::OpenBlock( SbiToken eTok, SbiExprNode* pVar ) in OpenBlock()
219 void SbiParser::CloseBlock() in CloseBlock()
238 void SbiParser::Exit() in Exit()
257 sal_Bool SbiParser::TestSymbol( sal_Bool bKwdOk ) in TestSymbol()
270 sal_Bool SbiParser::TestToken( SbiToken t ) in TestToken()
285 sal_Bool SbiParser::TestComma() in TestComma()
304 void SbiParser::TestEoln() in TestEoln()
316 void SbiParser::StmntBlock( SbiToken eEnd ) in StmntBlock()
332 sal_Bool SbiParser::Parse() in Parse()
468 SbiExprNode* SbiParser::GetWithVar() in GetWithVar()
488 void SbiParser::Symbol( const KeywordSymbolInfo* pKeywordSymbolInfo ) in Symbol()
562 void SbiParser::Assign() in Assign()
583 void SbiParser::Set() in Set()
636 void SbiParser::LSet() in LSet()
652 void SbiParser::RSet() in RSet()
669 void SbiParser::DefXXX() in DefXXX()
699 void SbiParser::Stop() in Stop()
707 void SbiParser::Implements() in Implements()
748 void SbiParser::EnableCompatibility() in EnableCompatibility()
757 void SbiParser::Option() in Option()
835 void SbiParser::AddConstants( void ) in AddConstants()
859 void SbiParser::ErrorStmnt() in ErrorStmnt()