Home
last modified time | relevance | path

Searched defs:parser (Results 1 – 25 of 253) sorted by relevance

1234567891011

/llvm-project/clang/utils/analyzer/
H A DSATest.py16 def add(parser, args): argument
35 def build(parser, args): argument
57 def compare(parser, args): argument
84 def update(parser, args): argument
93 def benchmark(parser, args): argument
101 def benchmark_compare(parser, args): argument
107 def get_projects(parser, args): argument
148 def docker(parser, args): argument
/llvm-project/mlir/lib/Dialect/SPIRV/IR/
H A DGroupOps.cpp24 parseGroupNonUniformArithmeticOp(OpAsmParser & parser,OperationState & state) parseGroupNonUniformArithmeticOp() argument
227 parse(OpAsmParser & parser,OperationState & result) parse() argument
245 parse(OpAsmParser & parser,OperationState & result) parse() argument
263 parse(OpAsmParser & parser,OperationState & result) parse() argument
281 parse(OpAsmParser & parser,OperationState & result) parse() argument
299 parse(OpAsmParser & parser,OperationState & result) parse() argument
317 parse(OpAsmParser & parser,OperationState & result) parse() argument
335 parse(OpAsmParser & parser,OperationState & result) parse() argument
353 parse(OpAsmParser & parser,OperationState & result) parse() argument
371 parse(OpAsmParser & parser,OperationState & result) parse() argument
389 parse(OpAsmParser & parser,OperationState & result) parse() argument
407 parse(OpAsmParser & parser,OperationState & result) parse() argument
425 parse(OpAsmParser & parser,OperationState & result) parse() argument
443 parse(OpAsmParser & parser,OperationState & result) parse() argument
461 parse(OpAsmParser & parser,OperationState & result) parse() argument
479 parse(OpAsmParser & parser,OperationState & result) parse() argument
497 parse(OpAsmParser & parser,OperationState & result) parse() argument
H A DSPIRVDialect.cpp162 DialectAsmParser &parser) { in parseAndVerifyType() argument
206 parseAndVerifyMatrixType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseAndVerifyMatrixType() argument
242 parseAndVerifySampledImageType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseAndVerifySampledImageType() argument
262 parseOptionalArrayStride(const SPIRVDialect & dialect,DialectAsmParser & parser,unsigned & stride) parseOptionalArrayStride() argument
292 parseArrayType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseArrayType() argument
331 parseCooperativeMatrixType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseCooperativeMatrixType() argument
369 parseJointMatrixType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseJointMatrixType() argument
410 parsePointerType(SPIRVDialect const & dialect,DialectAsmParser & parser) parsePointerType() argument
437 parseRuntimeArrayType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseRuntimeArrayType() argument
456 parseMatrixType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseMatrixType() argument
492 parseAndVerify(SPIRVDialect const & dialect,DialectAsmParser & parser) parseAndVerify() argument
507 parseAndVerify(SPIRVDialect const & dialect,DialectAsmParser & parser) parseAndVerify() argument
517 parseAndVerifyInteger(SPIRVDialect const & dialect,DialectAsmParser & parser) parseAndVerifyInteger() argument
526 parseAndVerify(SPIRVDialect const & dialect,DialectAsmParser & parser) parseAndVerify() argument
583 parseImageType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseImageType() argument
601 parseSampledImageType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseSampledImageType() argument
616 parseStructMemberDecorations(SPIRVDialect const & dialect,DialectAsmParser & parser,ArrayRef<Type> memberTypes,SmallVectorImpl<StructType::OffsetInfo> & offsetInfo,SmallVectorImpl<StructType::MemberDecorationInfo> & memberDecorationInfo) parseStructMemberDecorations() argument
683 parseStructType(SPIRVDialect const & dialect,DialectAsmParser & parser) parseStructType() argument
[all...]
H A DMemoryOps.cpp35 ParseResult parseMemoryAccessAttributes(OpAsmParser &parser, in parseMemoryAccessAttributes() argument
70 static ParseResult parseSourceMemoryAccessAttributes(OpAsmParser &parser, in parseSourceMemoryAccessAttributes() argument
323 parse(OpAsmParser & parser,OperationState & result) parse() argument
415 parse(OpAsmParser & parser,OperationState & result) parse() argument
462 parse(OpAsmParser & parser,OperationState & result) parse() argument
531 parse(OpAsmParser & parser,OperationState & result) parse() argument
597 parsePtrAccessChainOpImpl(StringRef opName,OpAsmParser & parser,OperationState & state) parsePtrAccessChainOpImpl() argument
658 parse(OpAsmParser & parser,OperationState & result) parse() argument
683 parse(OpAsmParser & parser,OperationState & result) parse() argument
701 parse(OpAsmParser & parser,OperationState & result) parse() argument
[all...]
/llvm-project/flang/lib/Parser/
H A Dbasic-parsers.h105 constexpr BacktrackingParser(const A &parser) : parser_{parser} {} in BacktrackingParser() argument
123 attempt(const A & parser) attempt() argument
197 inContext(MessageFixedText context,PA parser) inContext() argument
250 withMessage(MessageFixedText msg,PA parser) withMessage() argument
423 ManyParser(PA parser) ManyParser() argument
441 many(PA parser) many() argument
455 SomeParser(PA parser) SomeParser() argument
473 some(PA parser) some() argument
482 SkipManyParser(PA parser) SkipManyParser() argument
495 skipMany(PA parser) skipMany() argument
506 SkipManyFastParser(PA parser) SkipManyFastParser() argument
517 skipManyFast(PA parser) skipManyFast() argument
529 MaybeParser(PA parser) MaybeParser() argument
542 maybe(PA parser) maybe() argument
644 applyFunction(ApplicableFunctionPointer<RESULT,PARSER...> f,const PARSER &...parser) applyFunction() argument
651 applyLambda(ApplicableFunctionObject<RESULT,PARSER...> f,const PARSER &...parser) applyLambda() argument
702 applyMem(ApplicableMemberFunctionPointer<OBJPARSER,PARSER...> mfp,const OBJPARSER & objParser,PARSER...parser) applyMem() argument
853 NonstandardParser(PA parser,MessageFixedText msg) NonstandardParser() argument
855 NonstandardParser(PA parser) NonstandardParser() argument
877 extension(MessageFixedText feature,PA parser) extension() argument
882 extension(PA parser) extension() argument
893 DeprecatedParser(PA parser) DeprecatedParser() argument
914 deprecated(PA parser) deprecated() argument
923 SourcedParser(PA parser) SourcedParser() argument
942 sourced(PA parser) sourced() argument
[all...]
H A Duser-state.cpp15 namespace Fortran::parser { namespace
26 static constexpr auto parser{statement(indirect(Parser<LabelDoStmt>{}))}; in Parse() local
38 static constexpr auto parser{ in Parse() local
/llvm-project/mlir/test/lib/Dialect/Test/
H A DTestFormatUtils.cpp20 OpAsmParser &parser, OpAsmParser::UnresolvedOperand &operand, in parseCustomDirectiveOperands() argument
50 test::parseCustomDirectiveResults(OpAsmParser &parser, Type &operandType, in parseCustomDirectiveResults() argument
81 parseCustomDirectiveWithTypeRefs(OpAsmParser & parser,Type operandType,Type optOperandType,const SmallVectorImpl<Type> & varOperandTypes) parseCustomDirectiveWithTypeRefs() argument
113 parseCustomDirectiveOperandsAndTypes(OpAsmParser & parser,OpAsmParser::UnresolvedOperand & operand,std::optional<OpAsmParser::UnresolvedOperand> & optOperand,SmallVectorImpl<OpAsmParser::UnresolvedOperand> & varOperands,Type & operandType,Type & optOperandType,SmallVectorImpl<Type> & varOperandTypes) parseCustomDirectiveOperandsAndTypes() argument
139 parseCustomDirectiveRegions(OpAsmParser & parser,Region & region,SmallVectorImpl<std::unique_ptr<Region>> & varRegions) parseCustomDirectiveRegions() argument
168 parseCustomDirectiveSuccessors(OpAsmParser & parser,Block * & successor,SmallVectorImpl<Block * > & varSuccessors) parseCustomDirectiveSuccessors() argument
193 parseCustomDirectiveAttributes(OpAsmParser & parser,IntegerAttr & attr,IntegerAttr & optAttr) parseCustomDirectiveAttributes() argument
217 parseCustomDirectiveAttrDict(OpAsmParser & parser,NamedAttrList & attrs) parseCustomDirectiveAttrDict() argument
232 parseCustomDirectiveOptionalOperandRef(OpAsmParser & parser,std::optional<OpAsmParser::UnresolvedOperand> & optOperand) parseCustomDirectiveOptionalOperandRef() argument
252 parseCustomOptionalOperand(OpAsmParser & parser,std::optional<OpAsmParser::UnresolvedOperand> & optOperand) parseCustomOptionalOperand() argument
300 parseUsingPropertyInCustom(OpAsmParser & parser,int64_t value[3]) parseUsingPropertyInCustom() argument
316 parseIntProperty(OpAsmParser & parser,int64_t & value) parseIntProperty() argument
329 parseSumProperty(OpAsmParser & parser,int64_t & second,int64_t first) parseSumProperty() argument
369 parseAttrElideType(AsmParser & parser,TypeAttr type,Attribute & attr) parseAttrElideType() argument
[all...]
H A DTestOpsSyntax.cpp26 OpAsmParser &parser, in parseCustomOptionalOperand()
37 OpAsmParser &parser, OpAsmParser::UnresolvedOperand &operand, in parseCustomDirectiveOperands()
53 parseCustomDirectiveResults(OpAsmParser &parser, Type &operandType, in parseCustomDirectiveResults()
71 parseCustomDirectiveWithTypeRefs(OpAsmParser &parser, Type operandType, in parseCustomDirectiveWithTypeRefs()
90 OpAsmParser &parser, OpAsmParser::UnresolvedOperand &operand, in parseCustomDirectiveOperandsAndTypes()
102 OpAsmParser &parser, Region &region, in parseCustomDirectiveRegions()
115 parseCustomDirectiveSuccessors(OpAsmParser &parser, Block *&successor, in parseCustomDirectiveSuccessors()
127 static ParseResult parseCustomDirectiveAttributes(OpAsmParser &parser, in parseCustomDirectiveAttributes()
138 static ParseResult parseCustomDirectiveSpacing(OpAsmParser &parser, in parseCustomDirectiveSpacing()
142 static ParseResult parseCustomDirectiveAttrDict(OpAsmParser &parser, in parseCustomDirectiveAttrDict()
[all …]
H A DTestTypes.cpp32 parseSignedness(AsmParser &parser, in parseSignedness() argument
93 static ParseResult parseCustomTypeA(AsmParser &parser, int &aResult) { in parseCustomTypeA() argument
99 static ParseResult parseCustomTypeB(AsmParser &parser, int a, in parseCustomTypeB() argument
119 parseFooString(AsmParser & parser,std::string & foo) parseFooString() argument
131 parseBarString(AsmParser & parser,StringRef foo) parseBarString() argument
150 parse(AsmParser & parser) parse() argument
192 parse(AsmParser & parser) parse() argument
252 parse(AsmParser & parser) parse() argument
371 auto parser = [](AsmParser &parser, getCustomAssemblyFormatDynamicType() local
372 __anon036b90740502(AsmParser &parser, llvm::SmallVectorImpl<Attribute> &parsedParams) getCustomAssemblyFormatDynamicType() argument
491 parse(AsmParser & parser) parse() argument
[all...]
/llvm-project/libcxx/test/libcxx/utilities/format/format.string/format.string.std/
H A Dconcepts_precision.h12 requires(T parser) requires() argument
17 requires(T parser) requires() argument
/llvm-project/clang/tools/scan-build-py/lib/libscanbuild/
H A Darguments.py113 def validate_args_for_analyze(parser, args, from_build_command): argument
488 def parser_add_cdb(parser): argument
497 def parser_add_prefer_wrapper(parser): argument
506 def parser_add_compilers(parser): argument
/llvm-project/mlir/lib/Dialect/SparseTensor/IR/Detail/
H A DDimLvlMapParser.h38 explicit DimLvlMapParser(AsmParser &parser) : parser(parser) {} in DimLvlMapParser()
83 AsmParser &parser; variable
/llvm-project/mlir/lib/Dialect/Quant/IR/
H A DTypeParser.cpp24 static IntegerType parseStorageType(DialectAsmParser &parser, bool &isSigned) { in parseStorageType() argument
63 static ParseResult parseStorageRange(DialectAsmParser &parser, in parseStorageRange() argument
94 parseExpressedTypeAndRange(DialectAsmParser & parser,double & min,double & max) parseExpressedTypeAndRange() argument
120 parseAnyType(DialectAsmParser & parser) parseAnyType() argument
162 parseQuantParams(DialectAsmParser & parser,double & scale,int64_t & zeroPoint) parseQuantParams() argument
194 parseUniformType(DialectAsmParser & parser) parseUniformType() argument
297 parseCalibratedType(DialectAsmParser & parser) parseCalibratedType() argument
[all...]
/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
H A DROCDLDialect.cpp45 ParseResult RawBufferLoadOp::parse(OpAsmParser &parser, in parse()
67 ParseResult RawBufferStoreOp::parse(OpAsmParser &parser, in parse()
91 ParseResult RawBufferAtomicFAddOp::parse(OpAsmParser &parser, in parse()
115 ParseResult RawBufferAtomicFMaxOp::parse(OpAsmParser &parser, in parse()
139 ParseResult RawBufferAtomicSMaxOp::parse(OpAsmParser &parser, in parse()
163 ParseResult RawBufferAtomicUMinOp::parse(OpAsmParser &parser, in parse()
/llvm-project/mlir/lib/Dialect/Polynomial/IR/
H A DPolynomialAttributes.cpp41 parseMonomial(AsmParser &parser, Monomial &monomial, llvm::StringRef &variable, in parseMonomial() argument
105 parsePolynomialAttr(AsmParser &parser, llv argument
150 parse(AsmParser & parser,Type type) parse() argument
177 parse(AsmParser & parser,Type type) parse() argument
[all...]
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_flags_test.cpp31 FlagParser parser; in TestFlag() local
47 FlagParser parser; in TestFlag() local
145 FlagParser parser; in TestTwoFlags() local
179 FlagParser parser; in TEST() local
/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.cpp88 MSVCUndecoratedNameParser parser(name); in ExtractContextAndIdentifier() local
99 MSVCUndecoratedNameParser parser(name); in DropScope() local
/llvm-project/flang/lib/Optimizer/Dialect/
H A DFIRType.cpp36 TYPE parseIntSingleton(mlir::AsmParser &parser) { in parseIntSingleton() argument
44 TYPE parseKindSingleton(mlir::AsmParser &parser) { in parseKindSingleton() argument
49 TYPE parseRankSingleton(mlir::AsmParser &parser) { in parseRankSingleton() argument
54 TYPE parseTypeSingleton(mlir::AsmParser &parser) { in parseTypeSingleton() argument
79 verifyDerived(mlir::AsmParser & parser,RecordType derivedTy,llvm::ArrayRef<RecordType::TypePair> lenPList,llvm::ArrayRef<RecordType::TypePair> typeList) verifyDerived() argument
117 parseFirType(FIROpsDialect * dialect,mlir::DialectAsmParser & parser) parseFirType() argument
675 parse(mlir::AsmParser & parser) parse() argument
720 parse(mlir::AsmParser & parser) parse() argument
742 parse(mlir::AsmParser & parser) parse() argument
791 parse(mlir::AsmParser & parser) parse() argument
815 parse(mlir::AsmParser & parser) parse() argument
837 parse(mlir::AsmParser & parser) parse() argument
850 parse(mlir::AsmParser & parser) parse() argument
863 parse(mlir::AsmParser & parser) parse() argument
884 parse(mlir::AsmParser & parser) parse() argument
913 parse(mlir::AsmParser & parser) parse() argument
1042 parse(mlir::AsmParser & parser) parse() argument
1065 parse(mlir::AsmParser & parser) parse() argument
1141 parse(mlir::AsmParser & parser) parse() argument
1153 parse(mlir::AsmParser & parser) parse() argument
1165 parse(mlir::AsmParser & parser) parse() argument
1178 parse(mlir::AsmParser & parser) parse() argument
1191 parse(mlir::AsmParser & parser) parse() argument
1215 parse(mlir::AsmParser & parser) parse() argument
[all...]
/llvm-project/mlir/lib/Dialect/Linalg/TransformOps/
H A DSyntax.cpp14 ParseResult mlir::parseSemiFunctionType(OpAsmParser &parser, Type &argumentType, in parseSemiFunctionType() argument
28 parser.parseArrow().failed() || in parseSemiFunctionType() argument
[all...]
/llvm-project/mlir/lib/Dialect/PDL/IR/
H A DPDLTypes.cpp36 static Type parsePDLType(AsmParser &parser) { in parsePDLType()
72 Type RangeType::parse(AsmParser &parser) { in parse()
/llvm-project/flang/include/flang/Parser/
H A Dinstrumented-parser.h54 constexpr InstrumentedParser(const MessageFixedText &tag, const PA &parser) in InstrumentedParser()
80 const MessageFixedText &tag, const PA &parser) { in instrumented()
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsancov_flags.cpp33 static void RegisterSancovFlags(FlagParser *parser, SancovFlags *f) { in RegisterSancovFlags()
44 FlagParser parser; in InitializeSancovFlags() local
/llvm-project/mlir/examples/toy/Ch3/mlir/
H A DDialect.cpp56 static mlir::ParseResult parseBinaryOp(mlir::OpAsmParser &parser, in parseBinaryOp()
123 mlir::ParseResult ConstantOp::parse(mlir::OpAsmParser &parser, in parse()
182 mlir::ParseResult AddOp::parse(mlir::OpAsmParser &parser, in parse()
201 mlir::ParseResult FuncOp::parse(mlir::OpAsmParser &parser, in parse()
248 mlir::ParseResult MulOp::parse(mlir::OpAsmParser &parser, in parse()
/llvm-project/mlir/lib/Dialect/MLProgram/IR/
H A DMLProgramOps.cpp30 OpAsmParser &parser, in parseTokenOrdering()
84 static ParseResult parseTypedInitialValue(OpAsmParser &parser, in parseTypedInitialValue()
116 static ParseResult parseSymbolVisibility(OpAsmParser &parser, in parseSymbolVisibility()
148 ParseResult FuncOp::parse(OpAsmParser &parser, OperationState &result) { in parse()
325 ParseResult SubgraphOp::parse(OpAsmParser &parser, OperationState &result) { in parse()
/llvm-project/mlir/examples/toy/Ch2/mlir/
H A DDialect.cpp56 static mlir::ParseResult parseBinaryOp(mlir::OpAsmParser &parser, in parseBinaryOp()
123 mlir::ParseResult ConstantOp::parse(mlir::OpAsmParser &parser, in parse()
182 mlir::ParseResult AddOp::parse(mlir::OpAsmParser &parser, in parse()
214 mlir::ParseResult FuncOp::parse(mlir::OpAsmParser &parser, in parse()
248 mlir::ParseResult MulOp::parse(mlir::OpAsmParser &parser, in parse()

1234567891011