Lines Matching refs:SbiParser
39 void( SbiParser::*Func )(); // Verarbeitungsroutine
48 { CALL, &SbiParser::Call, N, Y, }, // CALL
49 { CLOSE, &SbiParser::Close, N, Y, }, // CLOSE
50 { _CONST_, &SbiParser::Dim, Y, Y, }, // CONST
51 { DECLARE, &SbiParser::Declare, Y, N, }, // DECLARE
52 { DEFBOOL, &SbiParser::DefXXX, Y, N, }, // DEFBOOL
53 { DEFCUR, &SbiParser::DefXXX, Y, N, }, // DEFCUR
54 { DEFDATE, &SbiParser::DefXXX, Y, N, }, // DEFDATE
55 { DEFDBL, &SbiParser::DefXXX, Y, N, }, // DEFDBL
56 { DEFERR, &SbiParser::DefXXX, Y, N, }, // DEFERR
57 { DEFINT, &SbiParser::DefXXX, Y, N, }, // DEFINT
58 { DEFLNG, &SbiParser::DefXXX, Y, N, }, // DEFLNG
59 { DEFOBJ, &SbiParser::DefXXX, Y, N, }, // DEFOBJ
60 { DEFSNG, &SbiParser::DefXXX, Y, N, }, // DEFSNG
61 { DEFSTR, &SbiParser::DefXXX, Y, N, }, // DEFSTR
62 { DEFVAR, &SbiParser::DefXXX, Y, N, }, // DEFVAR
63 { DIM, &SbiParser::Dim, Y, Y, }, // DIM
64 { DO, &SbiParser::DoLoop, N, Y, }, // DO
65 { ELSE, &SbiParser::NoIf, N, Y, }, // ELSE
66 { ELSEIF, &SbiParser::NoIf, N, Y, }, // ELSEIF
67 { ENDIF, &SbiParser::NoIf, N, Y, }, // ENDIF
68 { END, &SbiParser::Stop, N, Y, }, // END
69 { ENUM, &SbiParser::Enum, Y, N, }, // TYPE
70 { ERASE, &SbiParser::Erase, N, Y, }, // ERASE
71 { _ERROR_, &SbiParser::ErrorStmnt, N, Y, }, // ERROR
72 { EXIT, &SbiParser::Exit, N, Y, }, // EXIT
73 { FOR, &SbiParser::For, N, Y, }, // FOR
74 { FUNCTION, &SbiParser::SubFunc, Y, N, }, // FUNCTION
75 { GOSUB, &SbiParser::Goto, N, Y, }, // GOSUB
76 { GLOBAL, &SbiParser::Dim, Y, N, }, // GLOBAL
77 { GOTO, &SbiParser::Goto, N, Y, }, // GOTO
78 { IF, &SbiParser::If, N, Y, }, // IF
79 { IMPLEMENTS, &SbiParser::Implements, Y, N, }, // IMPLEMENTS
80 { INPUT, &SbiParser::Input, N, Y, }, // INPUT
81 { LET, &SbiParser::Assign, N, Y, }, // LET
82 { LINE, &SbiParser::Line, N, Y, }, // LINE, -> LINE INPUT (#i92642)
83 { LINEINPUT,&SbiParser::LineInput, N, Y, }, // LINE INPUT
84 { LOOP, &SbiParser::BadBlock, N, Y, }, // LOOP
85 { LSET, &SbiParser::LSet, N, Y, }, // LSET
86 { NAME, &SbiParser::Name, N, Y, }, // NAME
87 { NEXT, &SbiParser::BadBlock, N, Y, }, // NEXT
88 { ON, &SbiParser::On, N, Y, }, // ON
89 { OPEN, &SbiParser::Open, N, Y, }, // OPEN
90 { OPTION, &SbiParser::Option, Y, N, }, // OPTION
91 { PRINT, &SbiParser::Print, N, Y, }, // PRINT
92 { PRIVATE, &SbiParser::Dim, Y, N, }, // PRIVATE
93 { PROPERTY, &SbiParser::SubFunc, Y, N, }, // FUNCTION
94 { PUBLIC, &SbiParser::Dim, Y, N, }, // PUBLIC
95 { REDIM, &SbiParser::ReDim, N, Y, }, // DIM
96 { RESUME, &SbiParser::Resume, N, Y, }, // RESUME
97 { RETURN, &SbiParser::Return, N, Y, }, // RETURN
98 { RSET, &SbiParser::RSet, N, Y, }, // RSET
99 { SELECT, &SbiParser::Select, N, Y, }, // SELECT
100 { SET, &SbiParser::Set, N, Y, }, // SET
101 { STATIC, &SbiParser::Static, Y, Y, }, // STATIC
102 { STOP, &SbiParser::Stop, N, Y, }, // STOP
103 { SUB, &SbiParser::SubFunc, Y, N, }, // SUB
104 { TYPE, &SbiParser::Type, Y, N, }, // TYPE
105 { UNTIL, &SbiParser::BadBlock, N, Y, }, // UNTIL
106 { WHILE, &SbiParser::While, N, Y, }, // WHILE
107 { WEND, &SbiParser::BadBlock, N, Y, }, // WEND
108 { WITH, &SbiParser::With, N, Y, }, // WITH
109 { WRITE, &SbiParser::Write, N, Y, }, // WRITE
120 SbiParser::SbiParser( StarBASIC* pb, SbModule* pm ) in SbiParser() function in SbiParser
163 SbiSymDef* SbiParser::CheckRTLForSym( const String& rSym, SbxDataType eType ) in CheckRTLForSym()
194 sal_Bool SbiParser::HasGlobalCode() in HasGlobalCode()
206 void SbiParser::OpenBlock( SbiToken eTok, SbiExprNode* pVar ) in OpenBlock()
221 void SbiParser::CloseBlock() in CloseBlock()
240 void SbiParser::Exit() in Exit()
259 sal_Bool SbiParser::TestSymbol( sal_Bool bKwdOk ) in TestSymbol()
272 sal_Bool SbiParser::TestToken( SbiToken t ) in TestToken()
287 sal_Bool SbiParser::TestComma() in TestComma()
306 void SbiParser::TestEoln() in TestEoln()
318 void SbiParser::StmntBlock( SbiToken eEnd ) in StmntBlock()
334 sal_Bool SbiParser::Parse() in Parse()
470 SbiExprNode* SbiParser::GetWithVar() in GetWithVar()
490 void SbiParser::Symbol( const KeywordSymbolInfo* pKeywordSymbolInfo ) in Symbol()
564 void SbiParser::Assign() in Assign()
585 void SbiParser::Set() in Set()
638 void SbiParser::LSet() in LSet()
654 void SbiParser::RSet() in RSet()
671 void SbiParser::DefXXX() in DefXXX()
701 void SbiParser::Stop() in Stop()
709 void SbiParser::Implements() in Implements()
750 void SbiParser::EnableCompatibility() in EnableCompatibility()
759 void SbiParser::Option() in Option()
837 void SbiParser::AddConstants( void ) in AddConstants()
861 void SbiParser::ErrorStmnt() in ErrorStmnt()