/external/clang/lib/Basic/ |
ObjCRuntime.cpp | 1 //===- ObjCRuntime.cpp - Objective-C Runtime Handling -----------*- C++ -*-===// 10 // This file implements the ObjCRuntime class, which represents the 14 #include "clang/Basic/ObjCRuntime.h" 19 std::string ObjCRuntime::getAsString() const { 28 raw_ostream &clang::operator<<(raw_ostream &out, const ObjCRuntime &value) { 30 case ObjCRuntime::MacOSX: out << "macosx"; break; 31 case ObjCRuntime::FragileMacOSX: out << "macosx-fragile"; break; 32 case ObjCRuntime::iOS: out << "ios"; break; 33 case ObjCRuntime::GNUstep: out << "gnustep"; break; 34 case ObjCRuntime::GCC: out << "gcc"; break [all...] |
Android.mk | 35 ObjCRuntime.cpp \
|
CMakeLists.txt | 17 ObjCRuntime.cpp
|
/external/lldb/examples/summaries/cocoa/ |
Class.py | 14 runtime =lldb.runtime.objc.objc_runtime.ObjCRuntime.runtime_from_isa(valobj)
|
objc_runtime.py | 95 class_data = ObjCRuntime(valobj) 590 self.runtime_version = ObjCRuntime.runtime_version(process) 631 class ObjCRuntime: 669 runtime = ObjCRuntime(isa)
|
/external/clang/include/clang/Basic/ |
ObjCRuntime.h | 1 //===--- ObjCRuntime.h - Objective-C Runtime Configuration ------*- C++ -*-===// 25 class ObjCRuntime { 61 ObjCRuntime() : TheKind(MacOSX) {} 63 ObjCRuntime(Kind kind, const VersionTuple &version) 301 friend bool operator==(const ObjCRuntime &left, const ObjCRuntime &right) { 306 friend bool operator!=(const ObjCRuntime &left, const ObjCRuntime &right) { 311 raw_ostream &operator<<(raw_ostream &out, const ObjCRuntime &value);
|
LangOptions.h | 20 #include "clang/Basic/ObjCRuntime.h" 78 clang::ObjCRuntime ObjCRuntime; 108 return ObjCRuntime.isSubscriptPointerArithmetic() &&
|
/external/clang/lib/Driver/ |
ToolChain.cpp | 11 #include "clang/Basic/ObjCRuntime.h" 199 ObjCRuntime ToolChain::getDefaultObjCRuntime(bool isNonFragile) const { 200 return ObjCRuntime(isNonFragile ? ObjCRuntime::GNUstep : ObjCRuntime::GCC,
|
Tools.h | 21 class ObjCRuntime; 79 ObjCRuntime AddObjCRuntimeArgs(const llvm::opt::ArgList &args,
|
ToolChains.cpp | 11 #include "clang/Basic/ObjCRuntime.h" 93 ObjCRuntime Darwin::getDefaultObjCRuntime(bool isNonFragile) const { 95 return ObjCRuntime(ObjCRuntime::iOS, TargetVersion); 97 return ObjCRuntime(ObjCRuntime::MacOSX, TargetVersion); 98 return ObjCRuntime(ObjCRuntime::FragileMacOSX, TargetVersion); 267 ObjCRuntime runtime = getDefaultObjCRuntime(/*nonfragile*/ true); [all...] |
Tools.cpp | 14 #include "clang/Basic/ObjCRuntime.h" [all...] |
ToolChains.h | 434 ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const override;
|
/external/clang/lib/CodeGen/ |
CGException.cpp | 112 CGM.getLangOpts().ObjCRuntime.hasTerminate()) 172 switch (L.ObjCRuntime.getKind()) { 173 case ObjCRuntime::FragileMacOSX: 175 case ObjCRuntime::MacOSX: 176 case ObjCRuntime::iOS: 178 case ObjCRuntime::GNUstep: 179 if (L.ObjCRuntime.getVersion() >= VersionTuple(1, 7)) 182 case ObjCRuntime::GCC: 183 case ObjCRuntime::ObjFW: 199 switch (L.ObjCRuntime.getKind()) [all...] |
CodeGenModule.cpp | 82 ObjCRuntime(nullptr), OpenCLRuntime(nullptr), OpenMPRuntime(nullptr), 151 delete ObjCRuntime; 165 switch (LangOpts.ObjCRuntime.getKind()) { 166 case ObjCRuntime::GNUstep: 167 case ObjCRuntime::GCC: 168 case ObjCRuntime::ObjFW: 169 ObjCRuntime = CreateGNUObjCRuntime(*this); 172 case ObjCRuntime::FragileMacOSX: 173 case ObjCRuntime::MacOSX: 174 case ObjCRuntime::iOS [all...] |
CGObjCGNU.cpp | 229 const ObjCRuntime &R = CGM.getLangOpts().ObjCRuntime; 230 if ((R.getKind() == ObjCRuntime::GNUstep) && [all...] |
CodeGenModule.h | 294 CGObjCRuntime* ObjCRuntime; 493 if (!ObjCRuntime) createObjCRuntime(); 494 return *ObjCRuntime; 498 bool hasObjCRuntime() { return !!ObjCRuntime; } [all...] |
CGObjC.cpp | [all...] |
/external/clang/include/clang/Driver/ |
ToolChain.h | 32 class ObjCRuntime; 269 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
|
/external/lldb/source/Expression/ |
ClangExpressionParser.cpp | 305 m_compiler->getLangOpts().ObjCRuntime.set(ObjCRuntime::MacOSX, VersionTuple(10, 7)); 307 m_compiler->getLangOpts().ObjCRuntime.set(ObjCRuntime::FragileMacOSX, VersionTuple(10, 7));
|
/external/clang/lib/Frontend/ |
InitPreprocessor.cpp | 488 if (LangOpts.ObjCRuntime.isNonFragile()) { 498 if (LangOpts.ObjCRuntime.isNeXTFamily()) 501 if (LangOpts.ObjCRuntime.getKind() == ObjCRuntime::ObjFW) { 502 VersionTuple tuple = LangOpts.ObjCRuntime.getVersion(); [all...] |
CompilerInvocation.cpp | [all...] |
/external/clang/lib/Rewrite/Frontend/ |
FrontendActions.cpp | 156 if (CI.getLangOpts().ObjCRuntime.isNonFragile())
|
/external/clang/lib/Sema/ |
SemaDeclObjC.cpp | [all...] |
SemaObjCProperty.cpp | [all...] |
/external/clang/lib/Lex/ |
PPMacroExpansion.cpp | [all...] |