Home
last modified time | relevance | path

Searched refs:GrfCommand (Results 1 – 25 of 162) sorted by relevance

1234567

/dports/devel/codeworker/CodeWorker4_5_3/
H A DGrfCommand.cpp37 GrfExecutionContext* GrfCommand::_pExecutionContext = NULL;
39GrfCommand::GrfCommand(GrfBlock* pParent) : _pParent(pParent), _sParsingFilePtr(NULL), _iFileLocat… in GrfCommand() function in CodeWorker::GrfCommand
41 GrfCommand::~GrfCommand() {} in ~GrfCommand()
47 const char* GrfCommand::getFunctionName() const { return NULL; } in getFunctionName()
49 bool GrfCommand::isABNFCommand() const { return false; } in isABNFCommand()
51 void GrfCommand::applyRecursively(APPLY_ON_COMMAND_FUNCTION apply) { in applyRecursively()
107 void GrfCommand::clearTimer() { in clearTimer()
111 void GrfCommand::startTimer() { in startTimer()
116 void GrfCommand::stopTimer() { in stopTimer()
120 long GrfCommand::getTimeInMillis() const { in getTimeInMillis()
[all …]
H A DGrfExecutionContext.h33 GrfCommand* _pLastCommand;
37 std::list<GrfCommand*> _stack;
42 inline GrfCommand* getLastCommand() const { return _pLastCommand; } in getLastCommand()
43 inline unsigned int getCounter(GrfCommand* pCommand) const { return pCommand->_iCounter; } in getCounter()
44 inline long getTimeInMillis(GrfCommand* pCommand) const { return pCommand->getTimeInMillis(); } in getTimeInMillis()
45 inline void incrementCounter(GrfCommand* pCommand) { pCommand->_iCounter++; } in incrementCounter()
46 …inline const char* getParsingFilePtr(GrfCommand* pCommand) const { return pCommand->_sParsingFileP… in getParsingFilePtr()
47 inline int getFileLocation(GrfCommand* pCommand) const { return pCommand->_iFileLocation; } in getFileLocation()
60 virtual void handleBeforeExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*visibility*/);
61 virtual void handleAfterExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*visibility*/) = 0;
[all …]
H A DGrfDebugExecution.h53 bool executeCondition(GrfCommand* pCommand, DtaScriptVariable& visibility);
54 void executeAction(GrfCommand* pCommand, DtaScriptVariable& visibility);
66 GrfCommand* _pNext;
81 virtual void handleBeforeExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& visibility);
82 virtual void handleAfterExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*visibility*/);
83 …virtual void handleAfterExceptionCBK(GrfCommand* pCommand, DtaScriptVariable& visibility, UtlExcep…
93 …static GrfDebugExecution* getCurrentDebugger() { return (GrfDebugExecution*) GrfCommand::getCurren… in getCurrentDebugger()
95 bool executeCommand(GrfCommand* pCommand, DtaScriptVariable& visibility, ScpStream& stream);
96 …std::string display(GrfCommand* pCommand, DtaScriptVariable& visibility, int iSize, bool bEchoOn =…
97 void traceStack(GrfCommand* pCommand, DtaScriptVariable& visibility);
[all …]
H A DGrfBlock.cpp56 GrfCommand* pFunction = *j; in clear()
71 _commands = std::vector<GrfCommand*>(); in clear()
78 GrfCommand::applyRecursively(apply); in applyRecursively()
85 void GrfBlock::add(GrfCommand* pCommand) { in add()
90 void GrfBlock::setCommand(int i, GrfCommand* pCommand) { in setCommand()
97 GrfCommand* pCommand = _commands.back(); in moveCommands()
104 bool GrfBlock::removeCommand(GrfCommand* pCommand) { in removeCommand()
119 if (_functions == NULL) _functions = new std::list<GrfCommand*>; in addFunction()
383 std::vector<GrfCommand*>::const_iterator i; in compileCpp()
423 std::vector<GrfCommand*>::const_iterator i; in compileCppBetween()
[all …]
H A DGrfQuantifyExecution.h67 virtual void handleBeforeExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*visibility*/);
68 virtual void handleAfterExecutionCBK(GrfCommand* /*pCommand*/, DtaScriptVariable& /*visibility*/);
69 …virtual void handleAfterExceptionCBK(GrfCommand* /*pCommand*/, DtaScriptVariable& /*visibility*/, …
74 …virtual void handleBeforeScriptExecutionCBK(GrfCommand* /*pCommand*/, DtaScriptVariable& /*visibil…
75 …virtual void handleAfterScriptExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*visibility*/…
81 …static GrfQuantifyExecution* getCurrentQuantify() { return (GrfQuantifyExecution*) GrfCommand::get… in getCurrentQuantify()
82 static void recoverData(GrfCommand* pCommand);
84 void registerCode(GrfCommand* pCommand);
86 void registerPredefinedFunction(GrfCommand* pCommand);
H A DGrfBlock.h38 class GrfBlock : public GrfCommand {
41 std::vector<GrfCommand*> _commands;
42 std::list<GrfCommand*>* _functions;
47 …GrfBlock(GrfBlock* pParent) : GrfCommand(pParent), _pScript(NULL), _functions(NULL), _classes(NULL… in GrfBlock()
57 void add(GrfCommand* pCommand);
58 bool removeCommand(GrfCommand* pCommand);
61 inline const std::vector<GrfCommand*>& getCommands() const { return _commands; } in getCommands()
62 inline GrfCommand* getCommand(int i) const { return _commands[i]; } in getCommand()
63 void setCommand(int i, GrfCommand* pCommand);
H A DGrfExecutionContext.cpp38 void GrfExecutionContext::clearRecursively(GrfCommand* pCommand) { in clearRecursively()
43 …void GrfExecutionContext::handleBeforeExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*visi… in handleBeforeExecutionCBK()
47 …void GrfExecutionContext::handleAfterExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*visib… in handleAfterExecutionCBK()
51 …void GrfExecutionContext::handleBeforeScriptExecutionCBK(GrfCommand* /*pCommand*/, DtaScriptVariab… in handleBeforeScriptExecutionCBK() argument
55 …void GrfExecutionContext::handleAfterScriptExecutionCBK(GrfCommand* /*pCommand*/, DtaScriptVariabl… in handleAfterScriptExecutionCBK() argument
85 _pLastExecutionContext = GrfCommand::getCurrentExecutionContext(); in executeInternal()
H A DGrfCommand.h31 class GrfCommand; variable
44 typedef void (*APPLY_ON_COMMAND_FUNCTION)(GrfCommand*);
46 class GrfCommand {
65 GrfCommand(GrfBlock* pParent = NULL);
66 virtual ~GrfCommand();
H A DBNFAndOrJunction.h36 GrfCommand* _pLeftMember;
46 inline GrfCommand* getLeftMember() const { return _pLeftMember; } in getLeftMember()
47 inline void setLeftMember(GrfCommand* pLeftMember) { _pLeftMember = pLeftMember; } in setLeftMember()
H A DBNFScanWindow.h36 GrfCommand* _pWindowSequence;
46 inline GrfCommand* getWindow() const { return _pWindowSequence; } in getWindow()
47 inline void setWindow(GrfCommand* pCommand) { _pWindowSequence = pCommand; } in setWindow()
H A DGrfQuantifyExecution.cpp68 …void GrfQuantifyExecution::handleBeforeExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*vis… in handleBeforeExecutionCBK()
72 …void GrfQuantifyExecution::handleAfterExecutionCBK(GrfCommand* /*pCommand*/, DtaScriptVariable& /*… in handleAfterExecutionCBK() argument
73 …void GrfQuantifyExecution::handleAfterExceptionCBK(GrfCommand* /*pCommand*/, DtaScriptVariable& /*… in handleAfterExceptionCBK() argument
129 …void GrfQuantifyExecution::handleBeforeScriptExecutionCBK(GrfCommand* /*pCommand*/, DtaScriptVaria… in handleBeforeScriptExecutionCBK() argument
131 …void GrfQuantifyExecution::handleAfterScriptExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& … in handleAfterScriptExecutionCBK()
135 void GrfQuantifyExecution::recoverData(GrfCommand* pCommand) { in recoverData()
143 void GrfQuantifyExecution::registerCode(GrfCommand* pCommand) { in registerCode()
178 void GrfQuantifyExecution::registerPredefinedFunction(GrfCommand* pCommand) { in registerPredefinedFunction()
H A DGrfDebugExecution.cpp62 bool DtaBreakpoint::executeCondition(GrfCommand* pCommand, DtaScriptVariable& visibility) { in executeCondition()
89 void DtaBreakpoint::executeAction(GrfCommand* pCommand, DtaScriptVariable& visibility) { in executeAction()
212 …bool GrfDebugExecution::executeCommand(GrfCommand* pCommand, DtaScriptVariable& visibility, ScpStr… in executeCommand()
313 GrfCommand* pCommand = getLastCommand(); in executeCommand()
556 …std::string GrfDebugExecution::display(GrfCommand* pCommand, DtaScriptVariable& visibility, int iS… in display()
619 void GrfDebugExecution::traceStack(GrfCommand* pCommand, DtaScriptVariable& visibility) { in traceStack()
622 for (std::list<GrfCommand*>::iterator i = _stack.begin(); i != _stack.end(); i++) { in traceStack()
696 …DtaBreakpoint* GrfDebugExecution::stopOnBreakpoint(GrfCommand* pCommand, DtaScriptVariable& visibi… in stopOnBreakpoint()
712 …void GrfDebugExecution::handleBeforeExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& visibili… in handleBeforeExecutionCBK()
757 …void GrfDebugExecution::handleAfterExecutionCBK(GrfCommand* pCommand, DtaScriptVariable& /*visibil… in handleAfterExecutionCBK()
[all …]
H A DBNFMoveAhead.cpp61 …for (std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); i != getCommands().end();… in toString()
71 std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); in compileCpp()
H A DBNFConjunction.cpp68 std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); in compileCpp()
93 …for (std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); i != getCommands().end();… in toString()
H A DBNFDisjunction.cpp75 std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); in compileCpp()
101 …for (std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); i != getCommands().end();… in toString()
H A DBNFInsert.cpp67 std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); in compileCpp()
100 …for (std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); i != getCommands().end();… in toString()
H A DBNFTransformationMode.cpp85 …for (std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); i != getCommands().end();… in toString()
95 std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); in compileCpp()
H A DBNFPushItem.cpp71 std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); in compileCpp()
103 …for (std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); i != getCommands().end();… in toString()
H A DBNFIgnore.cpp81 …for (std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); i != getCommands().end();… in toString()
96 std::vector<GrfCommand*>::const_iterator i = getCommands().begin(); in compileCpp()
H A DGrfContinue.h28 class GrfContinue : public GrfCommand {
H A DGrfBreak.h31 class GrfBreak : public GrfCommand {
H A DGrfGoBack.h29 class GrfGoBack : public GrfCommand {
H A DGrfTraceStack.h29 class GrfTraceStack : public GrfCommand {
H A DGrfTraceEngine.h29 class GrfTraceEngine : public GrfCommand {
H A DGrfExit.h30 class GrfExit : public GrfCommand {

1234567