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 33 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)
297 friend bool operator==(const ObjCRuntime &left, const ObjCRuntime &right) {
302 friend bool operator!=(const ObjCRuntime &left, const ObjCRuntime &right) {
307 raw_ostream &operator<<(raw_ostream &out, const ObjCRuntime &value);
LangOptions.h 20 #include "clang/Basic/ObjCRuntime.h"
70 clang::ObjCRuntime ObjCRuntime;
  /external/clang/include/clang/Driver/
ToolChain.h 22 class ObjCRuntime;
227 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
  /external/clang/lib/Driver/
ToolChain.cpp 12 #include "clang/Basic/ObjCRuntime.h"
102 ObjCRuntime ToolChain::getDefaultObjCRuntime(bool isNonFragile) const {
103 return ObjCRuntime(isNonFragile ? ObjCRuntime::GNUstep : ObjCRuntime::GCC,
Tools.h 20 class ObjCRuntime;
60 ObjCRuntime AddObjCRuntimeArgs(const ArgList &args, ArgStringList &cmdArgs,
ToolChains.cpp 12 #include "clang/Basic/ObjCRuntime.h"
83 ObjCRuntime Darwin::getDefaultObjCRuntime(bool isNonFragile) const {
85 return ObjCRuntime(ObjCRuntime::iOS, TargetVersion);
87 return ObjCRuntime(ObjCRuntime::MacOSX, TargetVersion);
88 return ObjCRuntime(ObjCRuntime::FragileMacOSX, TargetVersion);
    [all...]
Tools.cpp 14 #include "clang/Basic/ObjCRuntime.h"
    [all...]
ToolChains.h 261 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
  /external/clang/lib/CodeGen/
CGException.cpp 130 CGM.getLangOpts().ObjCRuntime.hasTerminate())
187 switch (L.ObjCRuntime.getKind()) {
188 case ObjCRuntime::FragileMacOSX:
190 case ObjCRuntime::MacOSX:
191 case ObjCRuntime::iOS:
193 case ObjCRuntime::GNUstep:
194 if (L.ObjCRuntime.getVersion() >= VersionTuple(1, 7))
197 case ObjCRuntime::GCC:
198 case ObjCRuntime::ObjFW:
214 switch (L.ObjCRuntime.getKind())
    [all...]
CodeGenModule.cpp 81 VTables(*this), ObjCRuntime(0), OpenCLRuntime(0), CUDARuntime(0),
140 delete ObjCRuntime;
154 switch (LangOpts.ObjCRuntime.getKind()) {
155 case ObjCRuntime::GNUstep:
156 case ObjCRuntime::GCC:
157 case ObjCRuntime::ObjFW:
158 ObjCRuntime = CreateGNUObjCRuntime(*this);
161 case ObjCRuntime::FragileMacOSX:
162 case ObjCRuntime::MacOSX:
163 case ObjCRuntime::iOS
    [all...]
CGObjCGNU.cpp 228 const ObjCRuntime &R = CGM.getLangOpts().ObjCRuntime;
229 if ((R.getKind() == ObjCRuntime::GNUstep) &&
    [all...]
CodeGenModule.h 246 CGObjCRuntime* ObjCRuntime;
401 if (!ObjCRuntime) createObjCRuntime();
402 return *ObjCRuntime;
407 bool hasObjCRuntime() { return !!ObjCRuntime; }
    [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/Sema/
SemaObjCProperty.cpp     [all...]
SemaDeclObjC.cpp     [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 834 .Case("objc_nonfragile_abi", LangOpts.ObjCRuntime.isNonFragile())
836 .Case("objc_weak_class", LangOpts.ObjCRuntime.hasWeakClassImport())
841 .Case("objc_subscripting", LangOpts.ObjCRuntime.isNonFragile())
    [all...]
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 384 if (LangOpts.ObjCRuntime.isNonFragile()) {
394 if (LangOpts.ObjCRuntime.isNeXTFamily())
    [all...]
CompilerInvocation.cpp     [all...]
  /external/clang/lib/AST/
DeclBase.cpp 453 getASTContext().getLangOpts().ObjCRuntime.hasWeakClassImport()) {
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 105 if (ExistingLangOpts.ObjCRuntime != LangOpts.ObjCRuntime) {
    [all...]

Completed in 836 milliseconds

1 2