Searched defs:Intro (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Parse/
H A DParseInit.cpp72 LambdaIntroducer Intro; local
74 Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro, &SkippedInits));
H A DParseTentative.cpp539 LambdaIntroducer Intro; local
540 if (!TryParseLambdaIntroducer(Intro)) {
H A DParseExprCXX.cpp670 LambdaIntroducer Intro; local
671 Optional<unsigned> DiagID = ParseLambdaIntroducer(Intro);
680 return ParseLambdaExpressionAfterIntroducer(Intro);
718 LambdaIntroducer Intro; local
719 if (TryParseLambdaIntroducer(Intro))
722 return ParseLambdaExpressionAfterIntroducer(Intro);
726 /// \param Intro A LambdaIntroducer filled in with information about the
731 /// populate \p Intro. This flag will be set to \c true if we do so.
734 Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro, argument
742 Intro
768 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro, local
785 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro, local
809 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro, local
965 TryParseLambdaIntroducer(LambdaIntroducer &Intro) argument
991 ParseLambdaExpressionAfterIntroducer( LambdaIntroducer &Intro) argument
[all...]
/external/clang/lib/Sema/
H A DSemaLambda.cpp834 void Sema::ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro, argument
883 EndLoc = Intro.Range.getEnd();
913 CXXRecordDecl *Class = createLambdaClosureType(Intro.Range, MethodTyInfo,
914 KnownDependent, Intro.Default);
916 CXXMethodDecl *Method = startLambdaDefinition(Class, Intro.Range,
929 Intro.Range,
930 Intro.Default, Intro.DefaultLoc,
946 if (Intro.Default != LCD_None && !Class->getParent()->isFunctionOrMethod() &&
950 Diag(Intro
[all...]
H A DSemaCodeComplete.cpp4323 void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro, argument
4333 for (const auto &C : Intro.Captures) {
4358 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)

Completed in 1103 milliseconds