Home
last modified time | relevance | path

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

/external/libxml2/
Dregressions.py251 curText = '' # accumulates text content of parameter variable in testDefaults
254 txt = string.strip(self.curText)
265 self.curText = '' # clear the working variable
271 self.curText += reader.Value()
284 self.curText = '' # and empty text
287 data = string.strip(self.curText)
298 self.curText = '' # clear the working variable
306 self.curText += reader.Value()
/external/pdfium/core/fpdftext/
Dcpdf_textpage.cpp1195 WideStringView curText = m_TempTextBuf.AsStringView(); in IsHyphen() local
1196 if (curText.IsEmpty()) in IsHyphen()
1197 curText = m_TextBuf.AsStringView(); in IsHyphen()
1199 if (curText.IsEmpty()) in IsHyphen()
1202 auto iter = curText.rbegin(); in IsHyphen()
1203 for (; (iter + 1) != curText.rend() && *iter == 0x20; iter++) { in IsHyphen()
1210 if ((iter + 1) != curText.rend()) { in IsHyphen()