Home
last modified time | relevance | path

Searched refs:curSection (Results 1 – 2 of 2) sorted by relevance

/external/llvm/include/llvm/MC/
DMCStreamer.h212 const MCSection *curSection = SectionStack.back().first; in PopSection() local
214 if (oldSection != curSection) in PopSection()
215 ChangeSection(curSection); in PopSection()
225 const MCSection *curSection = SectionStack.back().first; in SwitchSection() local
226 SectionStack.back().second = curSection; in SwitchSection()
227 if (Section != curSection) { in SwitchSection()
238 const MCSection *curSection = SectionStack.back().first; in SwitchSectionNoChange() local
239 SectionStack.back().second = curSection; in SwitchSectionNoChange()
240 if (Section != curSection) in SwitchSectionNoChange()
/external/webkit/Source/WebCore/inspector/front-end/
DStylesSidebarPane.js711 var curSection = this;
713 curSection = curSection.nextSibling;
714 } while (curSection && !curSection.editable);
716 return curSection;
721 var curSection = this;
723 curSection = curSection.previousSibling;
724 } while (curSection && !curSection.editable);
726 return curSection;