Lines Matching refs:ListNode

51             RTListAppend(pList, &pExpr->pIde->Core.ListNode);
58 PVDSCRIPTASTCORE pNode = RTListGetFirst(&pExpr->ListExpr, VDSCRIPTASTCORE, ListNode);
59 RTListNodeRemove(&pNode->ListNode);
60 RTListAppend(pList, &pNode->ListNode);
66 RTListAppend(pList, &pExpr->FnCall.pFnIde->Core.ListNode);
69 PVDSCRIPTASTCORE pNode = RTListGetFirst(&pExpr->FnCall.ListArgs, VDSCRIPTASTCORE, ListNode);
70 RTListNodeRemove(&pNode->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);
157 PVDSCRIPTASTCORE pNode = RTListGetFirst(&pStmt->Compound.ListDecls, VDSCRIPTASTCORE, ListNode);
158 RTListNodeRemove(&pNode->ListNode);
159 RTListAppend(pList, &pNode->ListNode);
165 PVDSCRIPTASTCORE pNode = RTListGetFirst(&pStmt->Compound.ListStmts, VDSCRIPTASTCORE, ListNode);
166 RTListNodeRemove(&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);
240 Assert(RTListIsEmpty(&pAstNode->ListNode));
242 RTListAppend(&ListFree, &pAstNode->ListNode);
246 pAstNode = RTListGetFirst(&ListFree, VDSCRIPTASTCORE, ListNode);
247 RTListNodeRemove(&pAstNode->ListNode);
256 RTListAppend(&ListFree, &pFn->pRetType->Core.ListNode);
258 RTListAppend(&ListFree, &pFn->pFnIde->Core.ListNode);
263 PVDSCRIPTASTCORE pArg = RTListGetFirst(&pFn->ListArgs, VDSCRIPTASTCORE, ListNode);
264 RTListNodeRemove(&pArg->ListNode);
265 RTListAppend(&ListFree, &pArg->ListNode);
269 RTListAppend(&ListFree, &pFn->pCompoundStmts->Core.ListNode);
276 RTListAppend(&ListFree, &pAstNodeArg->pType->Core.ListNode);
278 RTListAppend(&ListFree, &pAstNodeArg->pArgIde->Core.ListNode);
343 RTListInit(&pAstNode->ListNode);
355 RTListInit(&pAstNode->Core.ListNode);