Searched defs:DD (Results 1 - 25 of 47) sorted by relevance

12

/external/compiler-rt/test/Unit/ppc/
H A DDD.h12 } DD; typedef in typeref:union:__anon17671
/external/clang/test/Misc/
H A Ddiag-line-wrapping.cpp7 struct DD : D1, D2 { struct in inherits:D1,D2
12 // CHECK: struct DD -> struct D1 -> struct B
13 // CHECK: struct DD -> struct D2 -> struct B
/external/clang/lib/Sema/
H A DDelayedDiagnostic.cpp27 DelayedDiagnostic DD; local
28 DD.Kind = Deprecation;
29 DD.Triggered = false;
30 DD.Loc = Loc;
31 DD.DeprecationData.Decl = D;
32 DD.DeprecationData.UnknownObjCClass = UnknownObjCClass;
33 DD.DeprecationData.ObjCProperty = ObjCProperty;
40 DD.DeprecationData.Message = MessageData;
41 DD.DeprecationData.MessageLen = Msg.size();
42 return DD;
[all...]
H A DSemaOpenMP.cpp388 CXXDestructorDecl *DD = RD->getDestructor(); local
389 if (DD) {
390 if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
391 DD->isDeleted()) {
401 MarkFunctionReferenced(ELoc, DD);
402 DiagnoseUseOfDecl(DD, ELoc);
H A DSemaExceptionSpec.cpp947 const CXXDestructorDecl *DD = RD->getDestructor(); local
948 if (DD)
949 CT = mergeCanThrow(CT, canCalleeThrow(*this, E, DD));
/external/compiler-rt/lib/ppc/
H A DDD.h12 }DD; typedef in typeref:union:__anon17645
/external/clang/lib/AST/
H A DMangle.cpp77 void MangleContext::mangleDtorBlock(const CXXDestructorDecl *DD, argument
82 mangleCXXDtor(DD, DT, Out);
/external/clang/test/SemaCXX/
H A Dconversion-delete-expr.cpp100 struct DD : BB { struct in inherits:BB
105 void foo7 (DD d)
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp5-cxx0x.cpp28 struct DD { struct
29 ~DD() = delete; // expected-note 2{{here}}
36 decltype(DD()) *p = new decltype(DD()); // ok
43 decltype(DD(), // expected-error {{deleted function}}
44 DD()) dd1;
46 DD()) dd2; // expected-error {{deleted function}}
51 decltype(((13, ((DD())))))::n dd_parens; // ok
109 DD operator+(PD &a, PD &b);
114 DD operato
[all...]
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h111 /// DD - If the target supports dwarf debug info, this pointer is non-null.
112 DwarfDebug *DD; member in class:llvm::AsmPrinter
124 const DwarfDebug *getDwarfDebug() const { return DD; }
/external/qemu/android/
H A Duser-config.c24 # define DD(...) D(__VA_ARGS__)
26 # define DD(...) ((void)0) macro
83 DD("looking user-config in: %s", uc->iniPath);
99 DD("creating missing directory: %s", parentPath);
108 DD("reading user-config file");
118 DD(" found %s = %d", KEY_WINDOW_X, uc->windowX);
121 DD(" found %s = %d", KEY_WINDOW_Y, uc->windowY);
126 DD(" found %s = %lld", KEY_UUID, uc->uuid);
146 DD(" Generated UUID = %lld", uc->uuid);
198 DD("Generate
[all...]
H A Dadb-qemud.c29 #define DD(...) VERBOSE_PRINT(adb,__VA_ARGS__) macro
342 DD("ADB debugging client %p is disconnected from the guest.", adb_dbg_client);
359 DD("Connecting ADB debugging guest: '%s'",
365 DD("Unable to create QEMUD client for ADB debugging guest.");
402 DD("Registered '%s' qemud service", DEBUG_SERVICE_NAME);
H A Dhw-pipe-net.c42 # define DD(...) printf(__VA_ARGS__), printf("\n") macro
46 # define DD(...) ((void)0) macro
379 DD("%s: flags=%d", __FUNCTION__, flags);
H A Dopengles.c35 #define DD(...) VERBOSE_PRINT(gles,__VA_ARGS__) macro
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DArrays2Test.java35 public void test_binarySearch$DD() {
H A DArraysTest.java149 public void test_binarySearch$DD() {
609 public void test_fill$DD() {
/external/clang/include/clang/AST/
H A DDependentDiagnostic.h48 DependentDiagnostic *DD = Create(Context, Parent, PDiag); local
49 DD->AccessData.Loc = Loc.getRawEncoding();
50 DD->AccessData.IsMember = IsMemberAccess;
51 DD->AccessData.Access = AS;
52 DD->AccessData.TargetDecl = TargetDecl;
53 DD->AccessData.NamingClass = NamingClass;
54 DD->AccessData.BaseObjectType = BaseObjectType.getAsOpaquePtr();
55 return DD;
H A DVTableBuilder.h78 static VTableComponent MakeCompleteDtor(const CXXDestructorDecl *DD) { argument
80 reinterpret_cast<uintptr_t>(DD));
83 static VTableComponent MakeDeletingDtor(const CXXDestructorDecl *DD) { argument
85 reinterpret_cast<uintptr_t>(DD));
/external/clang/lib/CodeGen/
H A DCGCXX.cpp324 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD))
325 return BuildAppleKextVirtualDestructorCall(DD, Dtor_Complete, RD);
334 const CXXDestructorDecl *DD,
337 const CXXMethodDecl *MD = cast<CXXMethodDecl>(DD);
344 CGM.getTypes().arrangeCXXDestructor(DD, Dtor_Complete);
346 return ::BuildAppleKextVirtualCall(*this, GlobalDecl(DD, Type), Ty, RD);
333 BuildAppleKextVirtualDestructorCall( const CXXDestructorDecl *DD, CXXDtorType Type, const CXXRecordDecl *RD) argument
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h54 DwarfDebug *DD; member in class:llvm::CompileUnit
/external/clang/include/clang/Sema/
H A DDelayedDiagnostic.h132 DelayedDiagnostic DD; local
133 DD.Kind = Access;
134 DD.Triggered = false;
135 DD.Loc = Loc;
136 new (&DD.getAccessData()) AccessedEntity(Entity);
137 return DD;
144 DelayedDiagnostic DD; local
145 DD.Kind = ForbiddenType;
146 DD.Triggered = false;
147 DD
203 struct DD { struct in class:clang::sema::DelayedDiagnostic
[all...]
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c147 double AA, double BB, double CC, double DD,
151 return X + Y + Z + AA + BB + CC + DD + EE + FF + GG + HH
146 MathFunc(double X, double Y, double Z, double AA, double BB, double CC, double DD, double EE, double FF, double GG, double HH, double aAA, double aBB, double aCC, double aDD, double aEE, double aFF) argument
/external/clang/lib/Parse/
H A DParseTemplate.cpp1278 DeclContext *DD = FunD->getLexicalParent(); local
1279 while (DD && !DD->isTranslationUnit()) {
1280 DeclContextsToReenter.push_back(DD);
1281 DD = DD->getLexicalParent();
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_pk.h522 DD, /* day */ member in struct:__anon17720
/external/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp48 MAP(DD, 57) \
79 DC = 7, DD = 8, DE = 9, DF = 10, enumerator in enum:X86Local::__anon22875
1023 case X86Local::DD:

Completed in 1591 milliseconds

12