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.cpp1161 WideStringView curText = m_TempTextBuf.AsStringView(); in IsHyphen() local
1162 if (curText.IsEmpty()) in IsHyphen()
1163 curText = m_TextBuf.AsStringView(); in IsHyphen()
1165 if (curText.IsEmpty()) in IsHyphen()
1168 auto iter = curText.rbegin(); in IsHyphen()
1169 for (; (iter + 1) != curText.rend() && *iter == 0x20; ++iter) { in IsHyphen()
1176 if ((iter + 1) != curText.rend()) { in IsHyphen()