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

References

tools/clang/lib/Sema/SemaExprObjC.cpp
  918     if (!Method && getLangOpts().DebuggerObjCLiteral) {
  919       Method = ObjCMethodDecl::Create(Context,
  930       ParmVarDecl *objects = ParmVarDecl::Create(Context, Method,
  938       ParmVarDecl *keys = ParmVarDecl::Create(Context, Method,
  946       ParmVarDecl *cnt = ParmVarDecl::Create(Context, Method,
  954       Method->setMethodParams(Context, Params, None);
  958                               Method))
  962     QualType ValueT = Method->parameters()[0]->getType();
  968       Diag(Method->parameters()[0]->getLocation(),
  976     QualType KeyT = Method->parameters()[1]->getType();
 1005         Diag(Method->parameters()[1]->getLocation(),
 1014     QualType CountType = Method->parameters()[2]->getType();
 1018       Diag(Method->parameters()[2]->getLocation(),
 1026     DictionaryWithObjectsMethod = Method;