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

References

tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
 1967           ConvertSourceLocationToLineDirective(Catch->getBeginLoc(), Result);
 1975           Result += "catch (_objc_exc_"; Result += IDecl->getNameAsString();
 1975           Result += "catch (_objc_exc_"; Result += IDecl->getNameAsString();
 1976           Result += " *_"; Result += catchDecl->getNameAsString();
 1976           Result += " *_"; Result += catchDecl->getNameAsString();
 1977           Result += ")";
 1978           ReplaceText(startLoc, rParenBuf-startBuf+1, Result);
 1980           Result.clear();
 1981           Result = "{ ";
 1982           Result += IDecl->getNameAsString();
 1983           Result += " *"; Result += catchDecl->getNameAsString();
 1983           Result += " *"; Result += catchDecl->getNameAsString();
 1984           Result += " = ("; Result += IDecl->getNameAsString(); Result += "*)";
 1984           Result += " = ("; Result += IDecl->getNameAsString(); Result += "*)";
 1984           Result += " = ("; Result += IDecl->getNameAsString(); Result += "*)";
 1985           Result += "_"; Result += catchDecl->getNameAsString();
 1985           Result += "_"; Result += catchDecl->getNameAsString();
 1987           Result += "; ";
 1989           ReplaceText(lBraceLoc, 1, Result);