Home
last modified time | relevance | path

Searched refs:sd (Results 1 – 13 of 13) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
DBranchIslandFactory.cpp46 SectionData& sd = *text->getSectionData(); in group() local
48 for (SectionData::iterator it = sd.begin(), ie = sd.end(); it != ie; ++it) { in group()
60 if (getIslands(sd.back()).first == NULL) in group()
61 produce(sd.back()); in group()
DELFObjectReader.cpp168 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
169 if (!m_pELFReader->readRegularSection(pInput, *sd)) in readSections()
177 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
178 if (!m_pELFReader->readRegularSection(pInput, *sd)) in readSections()
209 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
210 if (!m_pELFReader->readRegularSection(pInput, *sd)) in readSections()
219 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
220 if (!m_pELFReader->readRegularSection(pInput, *sd)) { in readSections()
248 SectionData* sd = IRBuilder::CreateSectionData(**section); in readSections() local
249 if (!m_Backend.readSection(pInput, *sd)) { in readSections()
DBranchIsland.cpp120 SectionData* sd = m_Entry.getParent(); in addStub() local
128 align_frag->setParent(sd); in addStub()
129 sd->getFragmentList().insert(end(), align_frag); in addStub()
134 pStub.setParent(sd); in addStub()
135 sd->getFragmentList().insert(end(), &pStub); in addStub()
DELFObjectWriter.cpp394 const SectionData* sd = NULL; in emitSectionData() local
401 sd = pSection.getEhFrame()->getSectionData(); in emitSectionData()
405 sd = pSection.getSectionData(); in emitSectionData()
408 emitSectionData(*sd, pRegion); in emitSectionData()
/frameworks/compile/mclinker/tools/mcld/lib/
DSearchPathOptions.cpp88 llvm::cl::list<std::string>::iterator sd; in parse() local
90 for (sd = m_SearchDirList.begin(); sd != sdEnd; ++sd) { in parse()
91 if (!pScript.directories().insert(*sd)) { in parse()
94 << *sd in parse()
/frameworks/base/core/java/android/app/
DLoadedApk.java664 LoadedApk.ServiceDispatcher sd = smap.valueAt(i); in removeContextRegistrations() local
667 + sd.getServiceConnection() + " that was originally bound here"); in removeContextRegistrations()
668 leak.setStackTrace(sd.getLocation().getStackTrace()); in removeContextRegistrations()
675 sd.getIServiceConnection()); in removeContextRegistrations()
679 sd.doForget(); in removeContextRegistrations()
960 LoadedApk.ServiceDispatcher sd = null; in getServiceDispatcher() local
963 sd = map.get(c); in getServiceDispatcher()
965 if (sd == null) { in getServiceDispatcher()
966 sd = new ServiceDispatcher(c, context, handler, flags); in getServiceDispatcher()
971 map.put(c, sd); in getServiceDispatcher()
[all …]
DContextImpl.java1763 IServiceConnection sd; in bindServiceCommon() local
1768 sd = mPackageInfo.getServiceDispatcher(conn, getOuterContext(), in bindServiceCommon()
1785 sd, flags, user.getIdentifier()); in bindServiceCommon()
1802 IServiceConnection sd = mPackageInfo.forgetServiceDispatcher( in unbindService() local
1805 ActivityManagerNative.getDefault().unbindService(sd); in unbindService()
/frameworks/compile/mclinker/lib/Object/
DSectionMap.cpp50 SectionData* sd = SectionData::Create(*m_pSection); in Input() local
51 m_pSection->setSectionData(sd); in Input()
52 new NullFragment(sd); in Input()
53 new NullFragment(sd); in Input()
63 SectionData* sd = SectionData::Create(*m_pSection); in Input() local
64 m_pSection->setSectionData(sd); in Input()
65 new NullFragment(sd); in Input()
66 new NullFragment(sd); in Input()
89 SectionData* sd = SectionData::Create(*m_pSection); in Output() local
90 m_pSection->setSectionData(sd); in Output()
[all …]
/frameworks/native/opengl/libagl/
Dprimitives.cpp902 GLfixed sd = dot4(equation.v, s->eye.v); in clip_triangle() local
907 if (sd >= 0) { in clip_triangle()
914 const GLfixed t = clipDivide(sd, sd-pd); in clip_triangle()
925 const GLfixed t = clipDivide(pd, pd-sd); in clip_triangle()
939 sd = pd; in clip_triangle()
967 GLfixed sd = frustumPlaneDist(plane, s->clip); in clip_triangle() local
972 if (sd >= 0) { in clip_triangle()
979 const GLfixed t = clipDivide(sd, sd-pd); in clip_triangle()
990 const GLfixed t = clipDivide(pd, pd-sd); in clip_triangle()
1004 sd = pd; in clip_triangle()
[all …]
/frameworks/base/docs/html/training/search/
Dbackward-compat.jd16 <li><a href="{@docRoot}training/search/backward-compat.html#provide-sd">Provide the Search
42 <h2 id="provide-sd">Provide the Search Dialog for Older Devices</h2>
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonLDBackend.cpp706 SectionData *sd = NULL; in mergeSection() local
708 sd = IRBuilder::CreateSectionData(*m_psdata); in mergeSection()
709 m_psdata->setSectionData(sd); in mergeSection()
711 sd = m_psdata->getSectionData(); in mergeSection()
712 MoveSectionDataAndSort(*pInputSection.getSectionData(), *sd); in mergeSection()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java7582 final StartingData sd = wtoken.startingData; in handleMessage() local
7584 if (sd == null) { in handleMessage()
7590 + wtoken + ": pkg=" + sd.pkg); in handleMessage()
7595 wtoken.token, sd.pkg, sd.theme, sd.compatInfo, in handleMessage()
7596 sd.nonLocalizedLabel, sd.labelRes, sd.icon, sd.logo, sd.windowFlags); in handleMessage()
/frameworks/av/media/libstagefright/
DMPEG4Extractor.cpp984 uint32_t sd; in parseChunk() local
986 if (!mDataSource->getUInt32(entriesoffset, &sd) || in parseChunk()
990 segment_duration = sd; in parseChunk()