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

  /external/clang/include/clang/AST/
GlobalDecl.h 79 GlobalDecl GD;
80 GD.Value.setFromOpaqueValue(P);
81 return GD;
106 static unsigned getHashValue(clang::GlobalDecl GD) {
107 return DenseMapInfo<void*>::getHashValue(GD.getAsOpaquePtr());
VTableBuilder.h 356 uint64_t getMethodVTableIndex(GlobalDecl GD);
477 const MethodVFTableLocation &getMethodVFTableLocation(GlobalDecl GD);
  /external/clang/lib/CodeGen/
CGCXX.cpp 203 GlobalDecl GD(ctor, ctorType);
205 StringRef name = getMangledName(GD);
213 return cast<llvm::Function>(GetOrCreateLLVMFunction(name, fnType, GD,
261 GlobalDecl GD(dtor, dtorType);
263 StringRef name = getMangledName(GD);
271 return cast<llvm::Function>(GetOrCreateLLVMFunction(name, fnType, GD,
276 CodeGenFunction::BuildVirtualCall(GlobalDecl GD, llvm::Value *This,
278 GD = GD.getCanonicalDecl();
279 uint64_t VTableIndex = CGM.getVTableContext().getMethodVTableIndex(GD);
    [all...]
CGVTables.cpp 41 llvm::Constant *CodeGenModule::GetAddrOfThunk(GlobalDecl GD,
43 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
49 getCXXABI().getMangleContext().mangleCXXDtorThunk(DD, GD.getDtorType(),
55 llvm::Type *Ty = getTypes().GetFunctionTypeForVTable(GD);
56 return GetOrCreateLLVMFunction(Name, Ty, GD, /*ForVTable=*/true);
225 GlobalDecl GD, const ThunkInfo &Thunk) {
226 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
233 llvm::Value *Callee = CGM.GetAddrOfFunction(GD, Ty, /*ForVTable=*/true);
294 GlobalDecl GD, const ThunkInfo &Thunk) {
295 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl())
    [all...]
CGVTables.h 57 void EmitThunk(GlobalDecl GD, const ThunkInfo &Thunk,
64 void MaybeEmitThunkAvailableExternally(GlobalDecl GD, const ThunkInfo &Thunk);
120 void EmitThunks(GlobalDecl GD);
CodeGenModule.h 389 bool shouldEmitFunction(GlobalDecl GD);
581 llvm::Constant *GetAddrOfGlobal(GlobalDecl GD) {
582 if (isa<CXXConstructorDecl>(GD.getDecl()))
583 return GetAddrOfCXXConstructor(cast<CXXConstructorDecl>(GD.getDecl()),
584 GD.getCtorType());
585 else if (isa<CXXDestructorDecl>(GD.getDecl()))
586 return GetAddrOfCXXDestructor(cast<CXXDestructorDecl>(GD.getDecl()),
587 GD.getDtorType());
588 else if (isa<FunctionDecl>(GD.getDecl()))
589 return GetAddrOfFunction(GD);
    [all...]
CodeGenTypes.h 136 llvm::FunctionType *GetFunctionType(GlobalDecl GD);
147 llvm::Type *GetFunctionTypeForVTable(GlobalDecl GD);
179 const CGFunctionInfo &arrangeGlobalDeclaration(GlobalDecl GD);
CodeGenModule.cpp 416 StringRef CodeGenModule::getMangledName(GlobalDecl GD) {
417 const NamedDecl *ND = cast<NamedDecl>(GD.getDecl());
419 StringRef &Str = MangledDeclNames[GD.getCanonicalDecl()];
434 getCXXABI().getMangleContext().mangleCXXCtor(D, GD.getCtorType(), Out);
436 getCXXABI().getMangleContext().mangleCXXDtor(D, GD.getDtorType(), Out);
451 void CodeGenModule::getBlockMangledName(GlobalDecl GD, MangleBuffer &Buffer,
454 const Decl *D = GD.getDecl();
460 MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out);
462 MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out);
514 CodeGenModule::getFunctionLinkage(GlobalDecl GD) {
    [all...]
CGCXXABI.h 106 virtual bool HasThisReturn(GlobalDecl GD) const { return false; }
352 virtual bool NeedsVTTParameter(GlobalDecl GD);
CodeGenFunction.cpp 486 void CodeGenFunction::StartFunction(GlobalDecl GD,
492 const Decl *D = GD.getDecl();
551 DI->EmitFunctionStart(GD, FnType, CurFn, Builder);
658 void CodeGenFunction::GenerateCode(GlobalDecl GD, llvm::Function *Fn,
660 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
669 CurGD = GD;
672 if (CGM.getCXXABI().HasThisReturn(GD))
685 StartFunction(GD, ResTy, Fn, FnInfo, Args, BodyRange.getBegin());
    [all...]
ItaniumCXXABI.cpp 179 bool NeedsVTTParameter(GlobalDecl GD);
188 bool HasThisReturn(GlobalDecl GD) const {
189 return (isa<CXXConstructorDecl>(GD.getDecl()) || (
190 isa<CXXDestructorDecl>(GD.getDecl()) &&
191 GD.getDtorType() != Dtor_Deleting));
    [all...]
MicrosoftCXXABI.cpp 34 bool HasThisReturn(GlobalDecl GD) const;
340 bool MicrosoftCXXABI::HasThisReturn(GlobalDecl GD) const {
341 return isa<CXXConstructorDecl>(GD.getDecl());
426 static bool IsDeletingDtor(GlobalDecl GD) {
427 const CXXMethodDecl* MD = cast<CXXMethodDecl>(GD.getDecl());
429 return GD.getDtorType() == Dtor_Deleting;
    [all...]
CGCall.cpp 204 GlobalDecl GD(D, ctorKind);
206 TheCXXABI.HasThisReturn(GD) ? argTypes.front() : Context.VoidTy;
232 GlobalDecl GD(D, dtorKind);
234 TheCXXABI.HasThisReturn(GD) ? argTypes.front() : Context.VoidTy;
314 CodeGenTypes::arrangeGlobalDeclaration(GlobalDecl GD) {
316 const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl());
319 return arrangeCXXConstructorDeclaration(CD, GD.getCtorType());
322 return arrangeCXXDestructor(DD, GD.getDtorType());
    [all...]
CGCXXABI.cpp 297 bool CGCXXABI::NeedsVTTParameter(GlobalDecl GD) {
CodeGenFunction.h     [all...]
CGDebugInfo.h 226 void EmitFunctionStart(GlobalDecl GD, QualType FnType,
CGBlocks.cpp     [all...]
CGClass.cpp 286 llvm::Value *CodeGenFunction::GetVTTParameter(GlobalDecl GD,
289 if (!CGM.getCXXABI().NeedsVTTParameter(GD)) {
295 const CXXRecordDecl *Base = cast<CXXMethodDecl>(GD.getDecl())->getParent();
    [all...]
CGDebugInfo.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 104 IN, SN, SB, TE, I, XE, CS, BA, LA, CE, PR, ND, PM, SM, EU, GD, TB, DY, HO, ER, TM, YB, LU,
  /external/chromium_org/third_party/lcov/bin/
genpng 25 # Note that the PERL module GD.pm is required for this script to work.
56 # Check whether required module GD.pm is installed
57 if (check_and_load_module("GD"))
62 ERROR: required module GD.pm not found on this system (see www.cpan.org).
262 $overview = new GD::Image($overview_width, $height)
  /external/chromium_org/third_party/lcov-1.9/bin/
genpng 25 # Note that the PERL module GD.pm is required for this script to work.
59 # Check whether required module GD.pm is installed
60 if (check_and_load_module("GD"))
65 ERROR: required module GD.pm not found on this system (see www.cpan.org).
265 $overview = new GD::Image($overview_width, $height)
  /external/clang/lib/AST/
VTableBuilder.cpp     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/testdata/
h264-svc-99-640x360.rtpdump 472 :o??????0??W??6?5??5b^?{??)_?gcC??a?Ae\???dE?? ???:$6??????("?$?d???SC|???x?itt?gI?8???b??U?\???<?-P1O?m,v?*????Js61p?n ??sp??_??v?<}?????? ???V?k?H?_?0vo??_?D??Q?????O?N??????y?<????i?i?j@????{??r???$?h?~n6Y?1%?;?w?xR????9?Y??|QF?B<??zg?Y??'t??h????9=f?n~?)??J??@{??'?R?w??5 /??4??7?$?+s?jk(y??Xt3???K:?]{M}?A?2?-??6?P[X???oNb???~?????????sZ?<gH Z!???_|s???????????|_d8?I??{W?)??v6?A??D?O?g???J??!Jz?Q?SlzC?"?\ ?3f`??8?????C?:z+??/???k9????k56T?B???]s?K??t?L?s?#????"?c%l??'??f??f??3r!8>????4?UM?kPt?5?????$z??0#?g-?@a?xGd?q?Gq-?????#??k6??`=?,X?#?X?4<? ????O?T?g?
540 @?2?_?F)??????vM???GD??h?O?u??????1wV6?D?X|??U?`?`?#*}?m ?U!???/?H???P???$?r?~??+????C G??????QKL?
    [all...]

Completed in 390 milliseconds