Home
last modified time | relevance | path

Searched refs:DERIVED (Results 1 – 21 of 21) sorted by relevance

/external/clang/include/clang/Sema/
DTemplate.h405 #define DECL(DERIVED, BASE) \ argument
406 Decl *Visit ## DERIVED ## Decl(DERIVED ## Decl *D);
410 #define OBJCCONTAINER(DERIVED, BASE) argument
411 #define FILESCOPEASM(DERIVED, BASE) argument
412 #define IMPORT(DERIVED, BASE) argument
413 #define LINKAGESPEC(DERIVED, BASE) argument
414 #define OBJCCOMPATIBLEALIAS(DERIVED, BASE) argument
415 #define OBJCMETHOD(DERIVED, BASE) argument
416 #define OBJCTYPEPARAM(DERIVED, BASE) argument
417 #define OBJCIVAR(DERIVED, BASE) argument
[all …]
/external/clang/include/clang/AST/
DASTFwd.h21 #define DECL(DERIVED, BASE) class DERIVED##Decl; argument
24 #define STMT(DERIVED, BASE) class DERIVED; argument
27 #define TYPE(DERIVED, BASE) class DERIVED##Type; argument
DDeclVisitor.h40 #define DECL(DERIVED, BASE) \ in Visit() argument
41 case Decl::DERIVED: DISPATCH(DERIVED##Decl, DERIVED##Decl); in Visit()
50 #define DECL(DERIVED, BASE) \ argument
51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); }
DStmtIterator.h76 template <typename DERIVED, typename REFERENCE>
89 DERIVED& operator++() {
97 return static_cast<DERIVED&>(*this);
100 DERIVED operator++(int) {
101 DERIVED tmp = static_cast<DERIVED&>(*this);
106 bool operator==(const DERIVED& RHS) const {
110 bool operator!=(const DERIVED& RHS) const {
DASTTypeTraits.h131 #define DECL(DERIVED, BASE) NKI_##DERIVED##Decl, argument
134 #define STMT(DERIVED, BASE) NKI_##DERIVED, argument
137 #define TYPE(DERIVED, BASE) NKI_##DERIVED##Type, argument
185 #define DECL(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Decl)
187 #define STMT(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED)
189 #define TYPE(DERIVED, BASE) KIND_TO_KIND_ID(DERIVED##Type)
DDeclBase.h82 #define DECL(DERIVED, BASE) DERIVED, argument
/external/clang/lib/AST/
DASTTypeTraits.cpp32 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" }, argument
35 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED }, argument
38 #define TYPE(DERIVED, BASE) { NKI_##BASE, #DERIVED "Type" }, argument
79 #define DECL(DERIVED, BASE) \ in getFromNode() argument
80 case Decl::DERIVED: return ASTNodeKind(NKI_##DERIVED##Decl); in getFromNode()
DDeclBase.cpp40 #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; argument
48 #define DECL(DERIVED, BASE) \ argument
50 llvm::AlignOf<DERIVED##Decl>::Alignment, \
51 "Alignment sufficient after objects prepended to " #DERIVED);
106 #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED; in getDeclKindName() argument
126 #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED; in getDeclKindName() argument
141 #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s; in PrintStats() argument
147 #define DECL(DERIVED, BASE) \ in PrintStats() argument
148 if (n##DERIVED##s > 0) { \ in PrintStats()
149 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \ in PrintStats()
[all …]
DASTDumper.cpp878 #define DECL(DERIVED, BASE) \ in dumpPreviousDecl() argument
879 case Decl::DERIVED: \ in dumpPreviousDecl()
880 return dumpPreviousDeclImpl(OS, cast<DERIVED##Decl>(D)); in dumpPreviousDecl()
/external/skia/include/gpu/
DGrGpuResource.h49 template <typename DERIVED> class GrIORef : public SkNoncopyable {
65 static_cast<const DERIVED*>(this)->notifyAllCntsWillBeZero(); in unref()
70 if (!static_cast<const DERIVED*>(this)->notifyRefCountIsZero()) { in unref()
116 static_cast<const DERIVED*>(this)->notifyAllCntsWillBeZero(); in completedRead()
130 static_cast<const DERIVED*>(this)->notifyAllCntsWillBeZero(); in completedWrite()
138 static_cast<const DERIVED*>(this)->notifyAllCntsAreZero(cntTypeRemoved); in didRemoveRefOrPendingIO()
/external/v8/tools/clang/blink_gc_plugin/tests/
Dtrace_after_dispatch_impl_error.h18 BASE, DERIVED enumerator
39 TraceAfterDispatchInlinedDerived() : TraceAfterDispatchInlinedBase(DERIVED) {} in TraceAfterDispatchInlinedDerived()
65 TraceAfterDispatchExternDerived() : TraceAfterDispatchExternBase(DERIVED) {} in TraceAfterDispatchExternDerived()
Dtrace_after_dispatch_impl.h18 BASE, DERIVED enumerator
37 TraceAfterDispatchInlinedDerived() : TraceAfterDispatchInlinedBase(DERIVED) {} in TraceAfterDispatchInlinedDerived()
64 TraceAfterDispatchExternDerived() : TraceAfterDispatchExternBase(DERIVED) {} in TraceAfterDispatchExternDerived()
Dtrace_after_dispatch_impl_error.cpp15 if (tag_ == DERIVED) { in Trace()
25 if (tag_ == DERIVED) { in Trace()
Dtrace_after_dispatch_impl.cpp15 if (tag_ == DERIVED) { in Trace()
24 if (tag_ == DERIVED) { in Trace()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DCrashRecoveryContext.h120 template<typename DERIVED, typename T>
127 static DERIVED *create(T *x) { in create()
130 return new DERIVED(context, x); in create()
/external/llvm/include/llvm/Support/
DCrashRecoveryContext.h118 template<typename DERIVED, typename T>
126 static DERIVED *create(T *x) { in create()
129 return new DERIVED(context, x); in create()
/external/skqp/include/gpu/
DGrGpuResource.h47 template <typename DERIVED> class GrIORef : public SkNoncopyable {
62 if (!static_cast<const DERIVED*>(this)->notifyRefCountIsZero()) { in unref()
126 static_cast<const DERIVED*>(this)->notifyAllCntsAreZero(cntTypeRemoved); in didRemoveRefOrPendingIO()
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugReporterVisitor.h92 template <class DERIVED>
95 return llvm::make_unique<DERIVED>(*static_cast<const DERIVED *>(this)); in clone()
/external/nos/host/android/hals/keymaster/
Dproto_utils.cpp373 case KeyOrigin::DERIVED: in translate_key_origin()
374 return nosapp::KeyOrigin::DERIVED; in translate_key_origin()
391 case nosapp::KeyOrigin::DERIVED: in translate_key_origin()
392 *out = KeyOrigin::DERIVED; in translate_key_origin()
/external/clang/lib/StaticAnalyzer/Core/
DRegionStore.cpp638 template <typename DERIVED>
688 static_cast<DERIVED*>(this)->VisitAddedToCluster(Base, Cluster); in GenerateClusters()
692 if (static_cast<DERIVED*>(this)->includeEntireMemorySpace(Base)) in GenerateClusters()
705 return static_cast<DERIVED*>(this)->AddToWorkList(R); in AddToWorkList()
713 static_cast<DERIVED*>(this)->VisitCluster(BaseR, getCluster(BaseR)); in RunWorkList()
722 static_cast<DERIVED*>(this)->VisitCluster(BaseR, C); in VisitCluster()
/external/nos/host/generic/nugget/proto/nugget/app/keymaster/
Dkeymaster_defs.proto152 DERIVED = 1; enumerator