Lines Matching refs:comma
1370 bool comma = false; in ParseOperandSignatureTypesList() local
1381 if (comma) { in ParseOperandSignatureTypesList()
1385 if (!ParseFunctionArgComma(comma)) { in ParseOperandSignatureTypesList()
2162 bool Parser::ParseFunctionArgComma(bool &comma) in ParseFunctionArgComma() argument
2164 if (comma && *context_ != Token::Type::DEL_COMMA) { in ParseFunctionArgComma()
2169 if (comma) { in ParseFunctionArgComma()
2173 comma = true; in ParseFunctionArgComma()
2183 bool comma = false; in ParseFunctionArgs() local
2194 if (!ParseFunctionArgComma(comma)) { in ParseFunctionArgs()
2288 bool Parser::ParseMetaListComma(bool &comma, bool eq) in ParseMetaListComma() argument
2290 if (!eq && comma && *context_ != Token::Type::DEL_COMMA) { in ParseMetaListComma()
2295 if (!eq && comma) { in ParseMetaListComma()
2299 comma = true; in ParseMetaListComma()
2391 bool comma = false; in ParseMetaList() local
2408 if (!ParseMetaListComma(comma, eq)) { in ParseMetaList()