Searched refs:nodeFormat (Results 1 – 3 of 3) sorted by relevance
4849 if (auto nodeFormat = GetFormatPlaceholderIdent(); nodeFormat.first == EXPRESSION_FORMAT_NODE) { in ParseFormatPlaceholder() local4850 return ParseExpressionFormatPlaceholder(std::make_optional(nodeFormat)); in ParseFormatPlaceholder()4851 … } else if (nodeFormat.first == IDENTIFIER_FORMAT_NODE) { // NOLINT(readability-else-after-return) in ParseFormatPlaceholder()4852 return ParseIdentifierFormatPlaceholder(std::make_optional(nodeFormat)); in ParseFormatPlaceholder()4853 } else if (nodeFormat.first == TYPE_FORMAT_NODE) { // NOLINT(readability-else-after-return) in ParseFormatPlaceholder()4854 return ParseTypeFormatPlaceholder(std::make_optional(nodeFormat)); in ParseFormatPlaceholder()4855 … } else if (nodeFormat.first == STATEMENT_FORMAT_NODE) { // NOLINT(readability-else-after-return) in ParseFormatPlaceholder()4856 return ParseStatementFormatPlaceholder(std::make_optional(nodeFormat)); in ParseFormatPlaceholder()4862 … *ETSParser::ParseExpressionFormatPlaceholder(std::optional<ParserImpl::NodeFormatType> nodeFormat) in ParseExpressionFormatPlaceholder() argument4864 if (!nodeFormat.has_value()) { in ParseExpressionFormatPlaceholder()[all …]
275 …ir::Statement *ParseStatementFormatPlaceholder(std::optional<NodeFormatType> nodeFormat = std::nul…276 …ir::Expression *ParseExpressionFormatPlaceholder(std::optional<NodeFormatType> nodeFormat = std::n…278 …ir::Identifier *ParseIdentifierFormatPlaceholder(std::optional<NodeFormatType> nodeFormat = std::n…279 … ir::TypeNode *ParseTypeFormatPlaceholder(std::optional<NodeFormatType> nodeFormat = std::nullopt);
520 [[maybe_unused]] std::optional<NodeFormatType> nodeFormat = std::nullopt)