/external/llvm-project/clang/test/PCH/ |
D | non-trivial-c-compound-literal.m | 11 static inline id getObj(id a) { function 20 // CHECK: define internal i8* @getObj( 26 return getObj(a);
|
/external/llvm-project/clang/test/Import/objc-arc/ |
D | test-cleanup-object.m | 3 // CHECK: FunctionDecl {{.*}} getObj ' 8 (void)getObj(c, a);
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Clear11.cpp | 164 *vs = &mVs9.getObj(); in getShadersAndLayout() 167 *ps = &mPsFloat9.getObj(); in getShadersAndLayout() 174 *vs = &mVs.getObj(); in getShadersAndLayout() 182 *vs = &mVsMultiview.getObj(); in getShadersAndLayout() 183 *gs = &mGsMultiview.getObj(); in getShadersAndLayout() 191 *ps = &mPsDepth.getObj(); in getShadersAndLayout() 199 *ps = &mPsFloat[numRTs - 1].getObj(); in getShadersAndLayout() 203 *ps = &mPsUInt[numRTs - 1].getObj(); in getShadersAndLayout() 207 *ps = &mPsSInt[numRTs - 1].getObj(); in getShadersAndLayout()
|
D | Blit11.cpp | 769 supportOut->inputLayout = &mQuad2DIL.getObj(); in getShaderSupport() 770 supportOut->vertexShader = &mQuad2DVS.getObj(); in getShaderSupport() 781 supportOut->inputLayout = &mQuad3DIL.getObj(); in getShaderSupport() 782 supportOut->vertexShader = &mQuad3DVS.getObj(); in getShaderSupport() 783 supportOut->geometryShader = &mQuad3DGS.getObj(); in getShaderSupport() 1000 stateManager->setSimpleBlendState(&mAlphaMaskBlendState.getObj()); in copyTexture() 1121 stateManager->setInputLayout(&mQuad2DIL.getObj()); in copyDepth() 1124 stateManager->setDrawShaders(&mQuad2DVS.getObj(), nullptr, &mDepthPS.getObj()); in copyDepth() 1728 stateManager->setDrawShaders(&mResolveDepthStencilVS.getObj(), nullptr, in resolveDepth() 1729 &mResolveDepthPS.getObj()); in resolveDepth() [all …]
|
D | renderer11_utils.h | 237 const Resource11<GetD3D11Type<ResourceT>> &getObj() const { return mResource; } in getObj() function
|
/external/llvm-project/clang/test/CodeGenObjCXX/ |
D | block-nested-in-lambda.mm | 32 id getObj(); 44 id a = getObj(); 57 id a = getObj(), b = getObj(), c = getObj();
|
D | arc-blocks.mm | 190 id getObj(); 193 __block id t0 = getObj(); 194 __weak id t1 = getObj(); 195 id t2 = getObj();
|
/external/jsilver/src/org/clearsilver/ |
D | DelegatedHdf.java | 132 public DelegatedHdf getObj(String hdfpath) { in getObj() method in DelegatedHdf 133 HDF hdf = getHdf().getObj(hdfpath); in getObj()
|
D | CSUtil.java | 57 HDF loadpathsHdf = hdf.getObj(HDF_LOADPATHS); in getLoadPaths()
|
D | HDF.java | 110 HDF getObj(String hdfpath); in getObj() method
|
/external/llvm-project/clang/test/Import/objc-arc/Inputs/ |
D | cleanup-objects.m | 5 id getObj(int c, id a) { function
|
/external/llvm-project/lld/ELF/ |
D | InputFiles.h | 162 template <typename ELFT> llvm::object::ELFFile<ELFT> getObj() const { in getObj() function 198 llvm::object::ELFFile<ELFT> getObj() const { in getObj() function 199 return this->ELFFileBase::getObj<ELFT>(); in getObj()
|
D | InputFiles.cpp | 362 const ELFFile<ELFT> &obj = getObj<ELFT>(); in init() 393 this->getObj().getSectionIndex(sym, getELFSyms<ELFT>(), shndxTable), in getSectionIndex() 499 ArrayRef<Elf_Shdr> sections = CHECK(this->getObj().sections(), this); in initializeJustSymbols() 564 const ELFFile<ELFT> &obj = this->getObj(); in initializeSections() 885 ArrayRef<uint8_t> contents = check(this->getObj().getSectionContents(sec)); in createInputSection() 909 ArrayRef<uint8_t> contents = check(this->getObj().getSectionContents(sec)); in createInputSection() 934 CHECK(this->getObj().template getSectionContentsAsArray<char>(sec), this); in createInputSection() 974 ArrayRef<Elf_Rela> rels = CHECK(getObj().relas(sec), this); in createInputSection() 979 ArrayRef<Elf_Rel> rels = CHECK(getObj().rels(sec), this); in createInputSection() 1080 return CHECK(getObj().getSectionName(sec, sectionStringTable), this); in getSectionName() [all …]
|
D | DWARF.cpp | 31 CHECK(obj->getObj().sections(), obj); in LLDDwarfObj()
|
D | InputSection.cpp | 56 return check(file.getObj().getSectionContents(hdr)); in getSectionContents() 457 CHECK(file->getObj().sections(), file)[secIdx]; in copyRelocations() 459 CHECK(file->getObj().getSectionName(sec), file) + in copyRelocations()
|
/external/llvm-project/lld/ELF/Arch/ |
D | AMDGPU.cpp | 44 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader().e_flags; in getEFlags()
|
D | MipsArchTree.cpp | 300 v.push_back({f, cast<ObjFile<ELFT>>(f)->getObj().getHeader().e_flags}); in calcMipsEFlags() 366 return ef->template getObj<ELFT>().getHeader().e_flags & EF_MIPS_ABI2; in isN32Abi()
|
D | RISCV.cpp | 107 return cast<ObjFile<ELF64LE>>(f)->getObj().getHeader().e_flags; in getEFlags() 108 return cast<ObjFile<ELF32LE>>(f)->getObj().getHeader().e_flags; in getEFlags()
|
D | Mips.cpp | 375 if (f->getObj().getHeader().e_flags & EF_MIPS_PIC) in needsThunk() 752 return file->getObj().getHeader().e_flags & EF_MIPS_PIC; in isMipsPIC()
|
D | Hexagon.cpp | 69 uint32_t eflags = cast<ObjFile<ELF32LE>>(f)->getObj().getHeader().e_flags; in calcEFlags()
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | DumpOutputStyle.h | 76 object::COFFObjectFile &getObj();
|
/external/clang/test/Analysis/inlining/ |
D | ObjCDynTypePopagation.m | 7 PublicSubClass2 *getObj(); function
|
/external/llvm-project/clang/test/Analysis/inlining/ |
D | ObjCDynTypePopagation.m | 7 PublicSubClass2 *getObj(); function
|
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/ |
D | JHdf.java | 160 public HDF getObj(String hdfpath) { in getObj() method in JHdf
|
/external/jsilver/src/org/clearsilver/jni/ |
D | JniHdf.java | 281 public JniHdf getObj(String hdfpath) {
|