Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaLambda.cpp839 void Sema::ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro, in ActOnStartOfLambdaDefinition() argument
888 EndLoc = Intro.Range.getEnd(); in ActOnStartOfLambdaDefinition()
918 CXXRecordDecl *Class = createLambdaClosureType(Intro.Range, MethodTyInfo, in ActOnStartOfLambdaDefinition()
919 KnownDependent, Intro.Default); in ActOnStartOfLambdaDefinition()
921 CXXMethodDecl *Method = startLambdaDefinition(Class, Intro.Range, in ActOnStartOfLambdaDefinition()
934 Intro.Range, in ActOnStartOfLambdaDefinition()
935 Intro.Default, Intro.DefaultLoc, in ActOnStartOfLambdaDefinition()
951 if (Intro.Default != LCD_None && !Class->getParent()->isFunctionOrMethod() && in ActOnStartOfLambdaDefinition()
955 Diag(Intro.DefaultLoc, diag::err_capture_default_non_local); in ActOnStartOfLambdaDefinition()
962 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc; in ActOnStartOfLambdaDefinition()
[all …]
DSemaCodeComplete.cpp4468 void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro, in CodeCompleteLambdaIntroducer() argument
4478 for (const auto &C : Intro.Captures) { in CodeCompleteLambdaIntroducer()
4503 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy) in CodeCompleteLambdaIntroducer()
/external/clang/lib/Parse/
DParseExprCXX.cpp719 LambdaIntroducer Intro; in ParseLambdaExpression() local
720 Optional<unsigned> DiagID = ParseLambdaIntroducer(Intro); in ParseLambdaExpression()
729 return ParseLambdaExpressionAfterIntroducer(Intro); in ParseLambdaExpression()
767 LambdaIntroducer Intro; in TryParseLambdaExpression() local
768 if (TryParseLambdaIntroducer(Intro)) in TryParseLambdaExpression()
771 return ParseLambdaExpressionAfterIntroducer(Intro); in TryParseLambdaExpression()
783 Optional<unsigned> Parser::ParseLambdaIntroducer(LambdaIntroducer &Intro, in ParseLambdaIntroducer() argument
791 Intro.Range.setBegin(T.getOpenLocation()); in ParseLambdaIntroducer()
798 Intro.Default = LCD_ByRef; in ParseLambdaIntroducer()
799 Intro.DefaultLoc = ConsumeToken(); in ParseLambdaIntroducer()
[all …]
DParseInit.cpp72 LambdaIntroducer Intro; in MayBeDesignationStart() local
74 Optional<unsigned> DiagID(ParseLambdaIntroducer(Intro, &SkippedInits)); in MayBeDesignationStart()
DParseTentative.cpp541 LambdaIntroducer Intro; in isCXX11AttributeSpecifier() local
542 if (!TryParseLambdaIntroducer(Intro)) { in isCXX11AttributeSpecifier()
/external/skia/platform_tools/android/examples/hello_skia_app/
DREADME4 Intro
/external/llvm/docs/
Dindex.rst32 .. __: http://llvm.org/pubs/2008-10-04-ACAT-LLVM-Intro.html
34 `Intro to LLVM`__
DCompilerWriterInfo.rst56 * `Intro to PowerPC Architecture <http://www.ibm.com/developerworks/linux/library/l-powarch/>`_
/external/clang/include/clang/Parse/
DParser.h1429 Optional<unsigned> ParseLambdaIntroducer(LambdaIntroducer &Intro,
1431 bool TryParseLambdaIntroducer(LambdaIntroducer &Intro);
1433 LambdaIntroducer &Intro);
/external/iproute2/doc/
Dss.sgml5 <title>SS Utility: Quick Intro
/external/clang/include/clang/Sema/
DSema.h4786 void ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro,
8354 void CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
/external/clang/include/clang/Basic/
DAttrDocs.td11 code Intro =[{..
/external/clang/docs/
DUsersManual.rst73 Intro to how to use a C compiler for newbies.