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

  /external/clang/include/clang/Driver/
ObjCRuntime.h 1 //===--- ObjCRuntime.h - Objective C runtime features -----------*- C++ -*-===//
16 class ObjCRuntime {
42 ObjCRuntime() : RuntimeKind(NeXT), HasARC(false), HasWeak(false),
ToolChain.h 28 class ObjCRuntime;
214 virtual void configureObjCRuntime(ObjCRuntime &runtime) const;
  /external/clang/lib/Driver/
ToolChain.cpp 17 #include "clang/Driver/ObjCRuntime.h"
52 void ToolChain::configureObjCRuntime(ObjCRuntime &runtime) const {
54 case ObjCRuntime::NeXT:
62 case ObjCRuntime::GNU:
ToolChains.h 307 virtual void configureObjCRuntime(ObjCRuntime &runtime) const;
ToolChains.cpp 17 #include "clang/Driver/ObjCRuntime.h"
101 void Darwin::configureObjCRuntime(ObjCRuntime &runtime) const {
102 if (runtime.getKind() != ObjCRuntime::NeXT)
    [all...]
Tools.cpp 19 #include "clang/Driver/ObjCRuntime.h"
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.h 232 CGObjCRuntime* ObjCRuntime;
368 if (!ObjCRuntime) createObjCRuntime();
369 return *ObjCRuntime;
374 bool hasObjCRuntime() { return !!ObjCRuntime; }
    [all...]
CodeGenModule.cpp 72 VTables(*this), ObjCRuntime(0), OpenCLRuntime(0), CUDARuntime(0),
124 delete ObjCRuntime;
137 ObjCRuntime = CreateGNUObjCRuntime(*this);
139 ObjCRuntime = CreateMacObjCRuntime(*this);
154 if (ObjCRuntime)
155 if (llvm::Function *ObjCInitFunction = ObjCRuntime->ModuleInitFunction())
    [all...]
CGRTTI.cpp     [all...]

Completed in 4759 milliseconds