Searched defs:pStmt (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Storage/testcase/
H A DVDScriptAst.cpp149 PVDSCRIPTASTSTMT pStmt = (PVDSCRIPTASTSTMT)pAstNode; local
150 switch (pStmt->enmStmtType)
155 while (!RTListIsEmpty(&pStmt->Compound.ListDecls))
157 PVDSCRIPTASTCORE pNode = RTListGetFirst(&pStmt->Compound.ListDecls, VDSCRIPTASTCORE, ListNode);
163 while (!RTListIsEmpty(&pStmt->Compound.ListStmts))
165 PVDSCRIPTASTCORE pNode = RTListGetFirst(&pStmt->Compound.ListStmts, VDSCRIPTASTCORE, ListNode);
173 if (pStmt->pExpr)
174 RTListAppend(pList, &pStmt->pExpr->Core.ListNode);
179 RTListAppend(pList, &pStmt->If.pCond->Core.ListNode);
180 RTListAppend(pList, &pStmt
[all...]
H A DVDScriptInterp.cpp259 DECLINLINE(int) vdScriptInterpreterPushCompoundCtrlEntry(PVDSCRIPTINTERPCTX pThis, PVDSCRIPTASTSTMT pStmt) argument
268 pCtrl->Ctrl.Compound.pStmtCompound = pStmt;
269 pCtrl->Ctrl.Compound.pStmtCurr = RTListGetFirst(&pStmt->Compound.ListStmts, VDSCRIPTASTSTMT, Core.ListNode);
282 * @param pStmt The while statement.
284 DECLINLINE(int) vdScriptInterpreterPushWhileCtrlEntry(PVDSCRIPTINTERPCTX pThis, PVDSCRIPTASTSTMT pStmt) argument
294 pCtrl->Ctrl.pAstNode = &pStmt->Core;
297 rc = vdScriptInterpreterPushAstEntry(pThis, &pStmt->While.pCond->Core);
299 && pStmt->While.fDoWhile)
302 rc = vdScriptInterpreterPushAstEntry(pThis, &pStmt->While.pStmt
326 vdScriptInterpreterPushIfCtrlEntry(PVDSCRIPTINTERPCTX pThis, PVDSCRIPTASTSTMT pStmt) argument
354 vdScriptInterpreterPushForCtrlEntry(PVDSCRIPTINTERPCTX pThis, PVDSCRIPTASTSTMT pStmt) argument
581 vdScriptInterpreterEvaluateStatement(PVDSCRIPTINTERPCTX pThis, PVDSCRIPTASTSTMT pStmt) argument
[all...]
H A DVDScript.cpp2282 PVDSCRIPTASTSTMT pStmt = NULL; local
2284 rc = vdScriptParseStatement(pThis, &pStmt);
2292 pAstNodeIf->pTrueStmt = pStmt;
2295 else if (pStmt)
2296 vdScriptAstNodeFree(&pStmt->Core);
2332 PVDSCRIPTASTSTMT pStmt = NULL; local
2333 rc = vdScriptParseStatement(pThis, &pStmt);
2337 pAstNodeSwitch->pStmt = pStmt;
2371 PVDSCRIPTASTSTMT pStmt local
2418 PVDSCRIPTASTSTMT pStmt = NULL; local
2472 PVDSCRIPTASTSTMT pStmt = NULL; local
[all...]
H A DVDScriptAst.h403 PVDSCRIPTASTSTMT pStmt; member in struct:VDSCRIPTASTSWITCH
418 PVDSCRIPTASTSTMT pStmt; member in struct:VDSCRIPTASTWHILE
435 PVDSCRIPTASTSTMT pStmt; member in struct:VDSCRIPTASTFOR
501 PVDSCRIPTASTSTMT pStmt; member in struct:VDSCRIPTASTSTMT::__anon16814::__anon16816
512 PVDSCRIPTASTSTMT pStmt; member in union:VDSCRIPTASTSTMT::__anon16814

Completed in 2709 milliseconds