Home
last modified time | relevance | path

Searched refs:Intro (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaLambda.cpp891 void Sema::ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro, in ActOnStartOfLambdaDefinition() argument
946 EndLoc = Intro.Range.getEnd(); in ActOnStartOfLambdaDefinition()
980 Intro.Range, MethodTyInfo, LambdaDependencyKind, Intro.Default); in ActOnStartOfLambdaDefinition()
1014 buildLambdaScope(LSI, Method, Intro.Range, Intro.Default, Intro.DefaultLoc, in ActOnStartOfLambdaDefinition()
1032 Diag(Intro.DefaultLoc, diag::err_capture_default_non_local); in ActOnStartOfLambdaDefinition()
1039 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc; in ActOnStartOfLambdaDefinition()
1040 for (auto C = Intro.Captures.begin(), E = Intro.Captures.end(); C != E; in ActOnStartOfLambdaDefinition()
1064 if (Intro.Default == LCD_ByCopy && C->Kind != LCK_StarThis) in ActOnStartOfLambdaDefinition()
1141 if (C->Kind == LCK_ByRef && Intro.Default == LCD_ByRef) { in ActOnStartOfLambdaDefinition()
1146 } else if (C->Kind == LCK_ByCopy && Intro.Default == LCD_ByCopy) { in ActOnStartOfLambdaDefinition()
[all …]
H A DSemaCodeComplete.cpp6902 void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro, in CodeCompleteLambdaIntroducer() argument
6912 for (const auto &C : Intro.Captures) { in CodeCompleteLambdaIntroducer()
6935 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy) in CodeCompleteLambdaIntroducer()
/llvm-project-15.0.7/llvm/docs/
H A Dindex.rst30 .. __: https://llvm.org/pubs/2008-10-04-ACAT-LLVM-Intro.html
32 `Intro to LLVM`__
H A DContributing.rst192 `Intro to LLVM`__
H A DCompilerWriterInfo.rst90 * `Intro to PowerPC Architecture <http://www.ibm.com/developerworks/linux/library/l-powarch/>`_
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseExprCXX.cpp735 LambdaIntroducer Intro; in ParseLambdaExpression() local
736 if (ParseLambdaIntroducer(Intro)) { in ParseLambdaExpression()
781 LambdaIntroducer Intro; in TryParseLambdaExpression() local
799 Intro = LambdaIntroducer(); in TryParseLambdaExpression()
800 if (ParseLambdaIntroducer(Intro)) in TryParseLambdaExpression()
860 Intro.Default = LCD_ByRef; in ParseLambdaIntroducer()
861 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
869 Intro.Default = LCD_ByCopy; in ParseLambdaIntroducer()
870 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
935 Intro.Default == LCD_None) { in ParseLambdaIntroducer()
[all …]
H A DParseInit.cpp75 LambdaIntroducer Intro; in MayBeDesignationStart() local
77 if (ParseLambdaIntroducer(Intro, &ParseResult)) { in MayBeDesignationStart()
H A DParseTentative.cpp707 LambdaIntroducer Intro; in isCXX11AttributeSpecifier() local
709 if (ParseLambdaIntroducer(Intro, &Tentative)) { in isCXX11AttributeSpecifier()
/llvm-project-15.0.7/flang/include/flang/
H A DFlangOptionsDocs.td10 code Intro =[{..
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DClangOptionDocs.td10 code Intro =[{..
/llvm-project-15.0.7/clang/test/TableGen/
H A DDiagnosticDocs.inc3 code Intro =[{..
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DDiagnosticDocs.td10 code Intro =[{..
H A DAttrDocs.td28 code Intro =[{..
/llvm-project-15.0.7/llvm/unittests/Support/
H A DFormatVariadicTest.cpp519 const char *Intro = in TEST() local
531 Stream << formatv(Intro, std::tuple_size<Tuple>::value, in TEST()
/llvm-project-15.0.7/clang/include/clang/Parse/
H A DParser.h1913 ParseLambdaIntroducer(LambdaIntroducer &Intro,
1915 ExprResult ParseLambdaExpressionAfterIntroducer(LambdaIntroducer &Intro);
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h7019 void ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro,
12946 void CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
/llvm-project-15.0.7/clang/docs/
H A DUsersManual.rst81 Intro to how to use a C compiler for newbies.