Lines Matching defs:pList

32  * @param   pList    The free list to append everything to.
35 static void vdScriptAstNodeExpressionPutOnFreeList(PRTLISTANCHOR pList, PVDSCRIPTASTCORE pAstNode)
51 RTListAppend(pList, &pExpr->pIde->Core.ListNode);
60 RTListAppend(pList, &pNode->ListNode);
66 RTListAppend(pList, &pExpr->FnCall.pFnIde->Core.ListNode);
71 RTListAppend(pList, &pNode->ListNode);
78 RTListAppend(pList, &pExpr->Deref.pIde->Core.ListNode);
79 RTListAppend(pList, &pExpr->Deref.pExpr->Core.ListNode);
93 RTListAppend(pList, &pExpr->pExpr->Core.ListNode);
126 RTListAppend(pList, &pExpr->BinaryOp.pLeftExpr->Core.ListNode);
127 RTListAppend(pList, &pExpr->BinaryOp.pRightExpr->Core.ListNode);
141 * @param pList The free list to append everything to.
144 static void vdScriptAstNodeStatmentPutOnFreeList(PRTLISTANCHOR pList, PVDSCRIPTASTCORE pAstNode)
159 RTListAppend(pList, &pNode->ListNode);
167 RTListAppend(pList, &pNode->ListNode);
174 RTListAppend(pList, &pStmt->pExpr->Core.ListNode);
179 RTListAppend(pList, &pStmt->If.pCond->Core.ListNode);
180 RTListAppend(pList, &pStmt->If.pTrueStmt->Core.ListNode);
182 RTListAppend(pList, &pStmt->If.pElseStmt->Core.ListNode);
187 RTListAppend(pList, &pStmt->Switch.pCond->Core.ListNode);
188 RTListAppend(pList, &pStmt->Switch.pStmt->Core.ListNode);
193 RTListAppend(pList, &pStmt->While.pCond->Core.ListNode);
194 RTListAppend(pList, &pStmt->While.pStmt->Core.ListNode);
199 RTListAppend(pList, &pStmt->For.pExprStart->Core.ListNode);
200 RTListAppend(pList, &pStmt->For.pExprCond->Core.ListNode);
201 RTListAppend(pList, &pStmt->For.pExpr3->Core.ListNode);
202 RTListAppend(pList, &pStmt->For.pStmt->Core.ListNode);
208 RTListAppend(pList, &pStmt->pExpr->Core.ListNode);
213 RTListAppend(pList, &pStmt->Case.pExpr->Core.ListNode);
214 RTListAppend(pList, &pStmt->Case.pStmt->Core.ListNode);
219 RTListAppend(pList, &pStmt->Case.pStmt->Core.ListNode);