Home
last modified time | relevance | path

Searched refs:textBuf (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
Dxfa_utils.cpp52 CFX_WideTextBuf textBuf; in ExportEncodeAttribute() local
57 textBuf << L"&amp;"; in ExportEncodeAttribute()
60 textBuf << L"&lt;"; in ExportEncodeAttribute()
63 textBuf << L"&gt;"; in ExportEncodeAttribute()
66 textBuf << L"&apos;"; in ExportEncodeAttribute()
69 textBuf << L"&quot;"; in ExportEncodeAttribute()
72 textBuf.AppendChar(str[i]); in ExportEncodeAttribute()
75 return textBuf.MakeString(); in ExportEncodeAttribute()
84 CFX_WideTextBuf textBuf; in ExportEncodeContent() local
92 textBuf << L"&amp;"; in ExportEncodeContent()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DTextTrieMapTest.java159 StringBuffer textBuf = new StringBuffer(); in TestCaseSensitive() local
161 textBuf.setLength(0); in TestCaseSensitive()
163 textBuf.append('X'); in TestCaseSensitive()
165 textBuf.append(TESTCASES[i][0]); in TestCaseSensitive()
166 itr = map.get(textBuf.toString(), i); in TestCaseSensitive()
202 StringBuffer textBuf = new StringBuffer(); in TestCaseInsensitive() local
204 textBuf.setLength(0); in TestCaseInsensitive()
206 textBuf.append('X'); in TestCaseInsensitive()
208 textBuf.append(TESTCASES[i][0]); in TestCaseInsensitive()
209 itr = map.get(textBuf.toString(), i); in TestCaseInsensitive()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DTextTrieMapTest.java162 StringBuffer textBuf = new StringBuffer(); in TestCaseSensitive() local
164 textBuf.setLength(0); in TestCaseSensitive()
166 textBuf.append('X'); in TestCaseSensitive()
168 textBuf.append(TESTCASES[i][0]); in TestCaseSensitive()
169 itr = map.get(textBuf.toString(), i); in TestCaseSensitive()
205 StringBuffer textBuf = new StringBuffer(); in TestCaseInsensitive() local
207 textBuf.setLength(0); in TestCaseInsensitive()
209 textBuf.append('X'); in TestCaseInsensitive()
211 textBuf.append(TESTCASES[i][0]); in TestCaseInsensitive()
212 itr = map.get(textBuf.toString(), i); in TestCaseInsensitive()
/external/pdfium/fpdfsdk/
Dfpdf_transformpage.cpp116 std::ostringstream textBuf; in FPDFPage_TransFormWithClip() local
117 textBuf << "q "; in FPDFPage_TransFormWithClip()
123 textBuf << ByteString::Format("%f %f %f %f re W* n ", rect.left, in FPDFPage_TransFormWithClip()
127 textBuf << ByteString::Format("%f %f %f %f %f %f cm ", matrix->a, matrix->b, in FPDFPage_TransFormWithClip()
143 pStream->SetData(&textBuf); in FPDFPage_TransFormWithClip()
Dcpdfsdk_interform.cpp473 ByteString textBuf = ExportFieldsToFDFTextBuf(fields, bIncludeOrExclude); in SubmitFields() local
475 size_t nBufSize = textBuf.GetLength(); in SubmitFields()
480 memcpy(pLocalBuffer, textBuf.c_str(), nBufSize); in SubmitFields()
/external/icu/icu4c/source/i18n/
Dtzfmt.cpp2441 UChar textBuf[32]; in parseOffsetPattern() local
2442 UnicodeString text(textBuf, 0, UPRV_LENGTHOF(textBuf)); in parseOffsetPattern()