Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaLambda.cpp801 void Sema::ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro, in ActOnStartOfLambdaDefinition() argument
851 EndLoc = Intro.Range.getEnd(); in ActOnStartOfLambdaDefinition()
881 CXXRecordDecl *Class = createLambdaClosureType(Intro.Range, MethodTyInfo, in ActOnStartOfLambdaDefinition()
882 KnownDependent, Intro.Default); in ActOnStartOfLambdaDefinition()
884 CXXMethodDecl *Method = startLambdaDefinition(Class, Intro.Range, in ActOnStartOfLambdaDefinition()
896 buildLambdaScope(LSI, Method, Intro.Range, Intro.Default, Intro.DefaultLoc, in ActOnStartOfLambdaDefinition()
910 if (Intro.Default != LCD_None && !Class->getParent()->isFunctionOrMethod() && in ActOnStartOfLambdaDefinition()
914 Diag(Intro.DefaultLoc, diag::err_capture_default_non_local); in ActOnStartOfLambdaDefinition()
921 = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc; in ActOnStartOfLambdaDefinition()
922 for (auto C = Intro.Captures.begin(), E = Intro.Captures.end(); C != E; in ActOnStartOfLambdaDefinition()
[all …]
DSemaCodeComplete.cpp4534 void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro, in CodeCompleteLambdaIntroducer() argument
4544 for (const auto &C : Intro.Captures) { in CodeCompleteLambdaIntroducer()
4569 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.cpp540 LambdaIntroducer Intro; in isCXX11AttributeSpecifier() local
541 if (!TryParseLambdaIntroducer(Intro)) { in isCXX11AttributeSpecifier()
/external/autotest/client/site_tests/camera_V4L2/
Dcontrol26 http://www.linuxfordevices.com/c/a/Linux-For-Devices-Articles/Intro-to-V4L2/
/external/autotest/client/tests/qemu_iotests/
Dcontrol10 * Intro
/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.rst58 * `Intro to PowerPC Architecture <http://www.ibm.com/developerworks/linux/library/l-powarch/>`_
/external/clang/include/clang/Parse/
DParser.h1502 Optional<unsigned> ParseLambdaIntroducer(LambdaIntroducer &Intro,
1504 bool TryParseLambdaIntroducer(LambdaIntroducer &Intro);
1506 LambdaIntroducer &Intro);
/external/opencv3/doc/tutorials/introduction/documenting_opencv/
Ddocumentation_tutorial.markdown9 Intro {#tutorial_documentation_intro}
/external/iproute2/doc/
Dss.sgml5 <title>SS Utility: Quick Intro
/external/curl/docs/
DINTERNALS4 - [Intro](#intro)
/external/clang/include/clang/Sema/
DSema.h5045 void ActOnStartOfLambdaDefinition(LambdaIntroducer &Intro,
8873 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.