Home
last modified time | relevance | path

Searched refs:parseCommaSeparatedList (Results 1 – 25 of 27) sorted by relevance

12

/llvm-project-15.0.7/mlir/include/mlir/Pass/
H A DPassOptions.h34 parseCommaSeparatedList(llvm::cl::Option &opt, StringRef argName,
38 LogicalResult parseCommaSeparatedList(llvm::cl::Option &opt, StringRef argName, in parseCommaSeparatedList() function
42 return parseCommaSeparatedList( in parseCommaSeparatedList()
233 return failed(detail::pass_options::parseCommaSeparatedList( in handleOccurrence()
367 return failed(mlir::detail::pass_options::parseCommaSeparatedList( in parse()
/llvm-project-15.0.7/mlir/lib/AsmParser/
H A DParser.h49 parseCommaSeparatedList(Delimiter delimiter,
56 parseCommaSeparatedList(function_ref<ParseResult()> parseElementFn) { in parseCommaSeparatedList() function
57 return parseCommaSeparatedList(Delimiter::None, parseElementFn); in parseCommaSeparatedList()
H A DAffineParser.cpp493 return parseCommaSeparatedList(Delimiter::Paren, parseElt, in parseDimIdList()
503 return parseCommaSeparatedList(Delimiter::Square, parseElt, in parseSymbolIdList()
554 if (parseCommaSeparatedList(delimiter, parseElt, " in affine map")) in parseAffineMapOfSSAIds()
590 if (parseCommaSeparatedList(Delimiter::Paren, parseElt, in parseAffineMapRange()
673 if (parseCommaSeparatedList(Delimiter::Paren, parseElt, in parseIntegerSetConstraints()
H A DLocationParser.cpp86 if (parseCommaSeparatedList(Delimiter::Square, parseElt, in parseFusedLocation()
H A DTypeParser.cpp88 return parseCommaSeparatedList(parseElt); in parseTypeListNoParens()
624 return parseCommaSeparatedList( in parseStrideList()
H A DAsmParserImpl.h283 ParseResult parseCommaSeparatedList(Delimiter delimiter, in parseCommaSeparatedList() function
286 return parser.parseCommaSeparatedList(delimiter, parseElt, contextMessage); in parseCommaSeparatedList()
H A DParser.cpp49 Parser::parseCommaSeparatedList(Delimiter delimiter, in parseCommaSeparatedList() function in Parser
149 if (parseCommaSeparatedList(parseElement) || in parseCommaSeparatedListUntil()
895 return parseCommaSeparatedList([&]() -> ParseResult { in parseOptionalSSAUseList()
1110 if (parseCommaSeparatedList(parseNextResult)) in parseOperation()
1538 if (parseCommaSeparatedList(delimiter, parseOneOperand, " in operand list")) in parseOperandList()
1653 return parseCommaSeparatedList(delimiter, parseOneArgument, in parseArgumentList()
2186 return parseCommaSeparatedList(Delimiter::Paren, [&]() -> ParseResult { in parseOptionalBlockArgList()
H A DAttributeParser.cpp321 return parseCommaSeparatedList(Delimiter::Braces, parseElt, in parseAttributeDict()
811 if (p.parseCommaSeparatedList(Parser::Delimiter::Square, parseOneElement)) in parseList()
/llvm-project-15.0.7/mlir/lib/IR/
H A DFunctionImplementation.cpp26 return parser.parseCommaSeparatedList( in parseFunctionArgumentList()
101 if (parser.parseCommaSeparatedList([&]() -> ParseResult { in parseFunctionResultList()
H A DBuiltinAttributes.cpp841 if (failed(parser.parseCommaSeparatedList([&]() { in parseWithoutBraces()
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DDialectImplementation.h124 if (parser.parseCommaSeparatedList(elementParser))
H A DOpImplementation.h666 parseCommaSeparatedList(Delimiter delimiter,
673 parseCommaSeparatedList(function_ref<ParseResult()> parseElementFn) { in parseCommaSeparatedList() function
674 return parseCommaSeparatedList(Delimiter::None, parseElementFn); in parseCommaSeparatedList()
1109 return parseCommaSeparatedList( in parseTypeList()
/llvm-project-15.0.7/mlir/lib/Dialect/OpenMP/IR/
H A DOpenMPDialect.cpp79 return parser.parseCommaSeparatedList([&]() { in parseAllocateAndAllocator()
145 return parser.parseCommaSeparatedList([&]() { in parseLinearClause()
307 if (failed(parser.parseCommaSeparatedList([&]() { in parseReductionVarList()
408 if (parser.parseCommaSeparatedList(parseKeyword)) in parseSynchronizationHint()
/llvm-project-15.0.7/mlir/test/lib/Dialect/Test/
H A DTestAttributes.cpp132 if (parser.parseLSquare() || parser.parseCommaSeparatedList([&]() { in parseIntArray()
/llvm-project-15.0.7/mlir/lib/Dialect/PDLInterp/IR/
H A DPDLInterp.cpp84 if (p.parseCommaSeparatedList(parseOperands) || p.parseRBrace()) in parseCreateOperationOpAttributes()
/llvm-project-15.0.7/mlir/lib/Dialect/Async/IR/
H A DAsync.cpp198 if (parser.parseCommaSeparatedList(OpAsmParser::Delimiter::OptionalParen, in parse()
/llvm-project-15.0.7/mlir/lib/Dialect/PDL/IR/
H A DPDL.cpp161 if (p.parseCommaSeparatedList(parseOperands) || p.parseRBrace()) in parseOperationOpAttributes()
/llvm-project-15.0.7/mlir/lib/Dialect/DLTI/
H A DDLTI.cpp289 if (parser.parseCommaSeparatedList( in parse()
/llvm-project-15.0.7/mlir/unittests/Interfaces/
H A DDataLayoutInterfacesTest.cpp215 ok = succeeded(parser.parseCommaSeparatedList([&]() { in parseAttribute()
/llvm-project-15.0.7/mlir/lib/Dialect/SPIRV/IR/
H A DSPIRVAttributes.cpp362 if (failed(parser.parseCommaSeparatedList([&]() { in parseKeywordList()
H A DSPIRVDialect.cpp620 if (failed(parser.parseCommaSeparatedList(parseDecorations)) || in parseStructMemberDecorations()
/llvm-project-15.0.7/mlir/lib/Dialect/OpenACC/IR/
H A DOpenACC.cpp69 if (failed(parser.parseCommaSeparatedList([&]() { in parseOperandList()
/llvm-project-15.0.7/mlir/lib/Pass/
H A DPassRegistry.cpp149 LogicalResult detail::pass_options::parseCommaSeparatedList( in parseCommaSeparatedList() function in detail::pass_options
/llvm-project-15.0.7/mlir/lib/Dialect/LLVMIR/IR/
H A DLLVMDialect.cpp638 if (parser.parseCommaSeparatedList(idxParser)) in parseGEPIndices()
2975 if (failed(parser.parseCommaSeparatedList(parseFlags)) || in parse()
3186 if (parser.parseCommaSeparatedList(parseLoopOptions) || parser.parseGreater()) in parse()
/llvm-project-15.0.7/mlir/lib/Dialect/Affine/IR/
H A DAffineOps.cpp3694 if (parser.parseCommaSeparatedList(parseOperands) || parser.parseRParen()) in parseAffineMapWithMinMax()
3802 if (parser.parseCommaSeparatedList(parseAttributes) || parser.parseRParen()) in parse()

12