HomeSort by relevance Sort by last modified time
    Searched refs:ObjCRuntime (Results 1 - 25 of 32) sorted by null

1 2

  /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 34 ObjCRuntime.cpp \
  /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)
270 friend bool operator==(const ObjCRuntime &left, const ObjCRuntime &right) {
275 friend bool operator!=(const ObjCRuntime &left, const ObjCRuntime &right) {
280 raw_ostream &operator<<(raw_ostream &out, const ObjCRuntime &value);
LangOptions.h 20 #include "clang/Basic/ObjCRuntime.h"
66 clang::ObjCRuntime ObjCRuntime;
  /external/clang/include/clang/Driver/
ToolChain.h 21 class ObjCRuntime;
213 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
  /external/clang/lib/Driver/
ToolChain.cpp 20 #include "clang/Basic/ObjCRuntime.h"
52 ObjCRuntime ToolChain::getDefaultObjCRuntime(bool isNonFragile) const {
53 return ObjCRuntime(isNonFragile ? ObjCRuntime::GNUstep : ObjCRuntime::GCC,
ToolChains.cpp 20 #include "clang/Basic/ObjCRuntime.h"
82 ObjCRuntime Darwin::getDefaultObjCRuntime(bool isNonFragile) const {
84 return ObjCRuntime(ObjCRuntime::iOS, TargetVersion);
86 return ObjCRuntime(ObjCRuntime::iOS, TargetSimulatorVersionFromDefines);
89 return ObjCRuntime(ObjCRuntime::MacOSX, TargetVersion);
91 return ObjCRuntime(ObjCRuntime::FragileMacOSX, TargetVersion)
    [all...]
Tools.h 21 class ObjCRuntime;
51 ObjCRuntime AddObjCRuntimeArgs(const ArgList &args, ArgStringList &cmdArgs,
Tools.cpp 23 #include "clang/Basic/ObjCRuntime.h"
    [all...]
ToolChains.h 290 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
  /external/clang/lib/CodeGen/
CGException.cpp 129 CGF.getLangOpts().ObjCRuntime.hasTerminate())
183 switch (L.ObjCRuntime.getKind()) {
184 case ObjCRuntime::FragileMacOSX:
186 case ObjCRuntime::MacOSX:
187 case ObjCRuntime::iOS:
189 case ObjCRuntime::GNUstep:
190 case ObjCRuntime::GCC:
191 case ObjCRuntime::ObjFW:
207 switch (L.ObjCRuntime.getKind()) {
211 case ObjCRuntime::MacOSX
    [all...]
CodeGenModule.cpp 72 VTables(*this), ObjCRuntime(0), OpenCLRuntime(0), CUDARuntime(0),
126 delete ObjCRuntime;
140 switch (LangOpts.ObjCRuntime.getKind()) {
141 case ObjCRuntime::GNUstep:
142 case ObjCRuntime::GCC:
143 case ObjCRuntime::ObjFW:
144 ObjCRuntime = CreateGNUObjCRuntime(*this);
147 case ObjCRuntime::FragileMacOSX:
148 case ObjCRuntime::MacOSX:
149 case ObjCRuntime::iOS
    [all...]
CodeGenModule.h 233 CGObjCRuntime* ObjCRuntime;
371 if (!ObjCRuntime) createObjCRuntime();
372 return *ObjCRuntime;
377 bool hasObjCRuntime() { return !!ObjCRuntime; }
    [all...]
CGObjCGNU.cpp     [all...]
CGRTTI.cpp     [all...]
CGObjC.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/clang/lib/Rewrite/Frontend/
FrontendActions.cpp 158 if (CI.getLangOpts().ObjCRuntime.isNonFragile())
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 657 .Case("objc_nonfragile_abi", LangOpts.ObjCRuntime.isNonFragile())
658 .Case("objc_weak_class", LangOpts.ObjCRuntime.hasWeakClassImport())
663 .Case("objc_subscripting", LangOpts.ObjCRuntime.isNonFragile())
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp     [all...]
SemaDeclObjC.cpp     [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 368 if (LangOpts.ObjCRuntime.isNonFragile()) {
378 if (LangOpts.ObjCRuntime.isNeXTFamily())
CompilerInvocation.cpp 814 Res.push_back("-fobjc-runtime=" + Opts.ObjCRuntime.getAsString());
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 433 getASTContext().getLangOpts().ObjCRuntime.hasWeakClassImport()) {
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 94 if (PPLangOpts.ObjCRuntime != LangOpts.ObjCRuntime) {
    [all...]

Completed in 489 milliseconds

1 2