reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Parse/ParseExprCXX.cpp
  852     Intro.Default = LCD_ByRef;
  861     Intro.Default = LCD_ByCopy;
tools/clang/lib/Sema/SemaCodeComplete.cpp
 5752   if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)
tools/clang/lib/Sema/SemaLambda.cpp
  968                                                  KnownDependent, Intro.Default);
  998   buildLambdaScope(LSI, Method, Intro.Range, Intro.Default, Intro.DefaultLoc,
 1012   if (Intro.Default != LCD_None && !Class->getParent()->isFunctionOrMethod() &&
 1023     = Intro.Default == LCD_None? Intro.Range.getBegin() : Intro.DefaultLoc;
 1048       if (Intro.Default == LCD_ByCopy && C->Kind != LCK_StarThis)
 1125       if (C->Kind == LCK_ByRef && Intro.Default == LCD_ByRef) {
 1130       } else if (C->Kind == LCK_ByCopy && Intro.Default == LCD_ByCopy) {