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.cpp614 LambdaIntroducer Intro; local
615 if (!TryParseLambdaIntroducer(Intro)) {
H A DParseExprCXX.cpp719 LambdaIntroducer Intro; local
720 Optional<unsigned> DiagID = ParseLambdaIntroducer(Intro);
729 return ParseLambdaExpressionAfterIntroducer(Intro);
770 LambdaIntroducer Intro; local
771 if (TryParseLambdaIntroducer(Intro))
774 return ParseLambdaExpressionAfterIntroducer(Intro);
778 /// \param Intro A LambdaIntroducer filled in with information about the
783 /// populate \p Intro. This flag will be set to \c true if we do so.
786 Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro, argument
794 Intro
820 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro, local
837 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro, local
870 Actions.CodeCompleteLambdaIntroducer(getCurScope(), Intro, local
1032 TryParseLambdaIntroducer(LambdaIntroducer &Intro) argument
1110 ParseLambdaExpressionAfterIntroducer( LambdaIntroducer &Intro) argument
[all...]
/external/clang/lib/Sema/
H A DSemaLambda.cpp804 void Sema::ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro, argument
848 EndLoc = Intro.Range.getEnd();
878 CXXRecordDecl *Class = createLambdaClosureType(Intro.Range, MethodTyInfo,
879 KnownDependent, Intro.Default);
882 startLambdaDefinition(Class, Intro.Range, MethodTyInfo, EndLoc, Params,
894 buildLambdaScope(LSI, Method, Intro.Range, Intro.Default, Intro.DefaultLoc,
908 if (Intro.Default != LCD_None && !Class->getParent()->isFunctionOrMethod() &&
912 Diag(Intro
[all...]
H A DSemaCodeComplete.cpp4554 void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro, argument
4564 for (const auto &C : Intro.Captures) {
4589 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)

Completed in 145 milliseconds