Home | History | Annotate | Download | only in compiler

Lines Matching defs:Current

809  *              Column              - Column in current line
882 * case, get the current file node. The source output of the current
904 * Column - Column in current line
939 * Column - Column in current line
982 * Column - Column in current line
1129 ASL_EXPECTED_MSG_NODE *Current = AslGbl_ExpectedErrorCodeList;
1142 while (Current)
1144 LocationNode = Current->LocationList;
1153 LocationNode->Filename, Current->MessageIdStr);
1159 Current = Current->Next;
1232 ASL_EXPECTED_MSG_NODE *Current = AslGbl_ExpectedErrorCodeList;
1247 while (Current && Current->MessageId != MessageId )
1249 Current = Current->Next;
1251 if (!Current)
1255 Current = UtLocalCalloc (sizeof (ASL_EXPECTED_MSG_NODE));
1257 Current->Next = AslGbl_ExpectedErrorCodeList;
1258 Current->MessageIdStr = MessageIdString;
1259 Current->MessageId = MessageId;
1260 AslGbl_ExpectedErrorCodeList = Current;
1263 NewErrorLocationNode->Next = Current->LocationList;
1264 Current->LocationList = NewErrorLocationNode;
1380 ASL_EXPECTED_MSG_NODE *Current = AslGbl_ExpectedErrorCodeList;
1399 while (Current && Current->MessageId != EncodedMessageId)
1401 Current = Current->Next;
1403 if (!Current)
1408 CurrentErrorLocation = Current->LocationList;