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.java103 StringBuffer textBuf = new StringBuffer(); in TestCaseSensitive() local
105 textBuf.setLength(0); in TestCaseSensitive()
107 textBuf.append('X'); in TestCaseSensitive()
109 textBuf.append(TESTCASES[i][0]); in TestCaseSensitive()
110 itr = map.get(textBuf.toString(), i); in TestCaseSensitive()
163 StringBuffer textBuf = new StringBuffer(); in TestCaseInsensitive() local
165 textBuf.setLength(0); in TestCaseInsensitive()
167 textBuf.append('X'); in TestCaseInsensitive()
169 textBuf.append(TESTCASES[i][0]); in TestCaseInsensitive()
170 itr = map.get(textBuf.toString(), i); in TestCaseInsensitive()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DTextTrieMapTest.java106 StringBuffer textBuf = new StringBuffer(); in TestCaseSensitive() local
108 textBuf.setLength(0); in TestCaseSensitive()
110 textBuf.append('X'); in TestCaseSensitive()
112 textBuf.append(TESTCASES[i][0]); in TestCaseSensitive()
113 itr = map.get(textBuf.toString(), i); in TestCaseSensitive()
166 StringBuffer textBuf = new StringBuffer(); in TestCaseInsensitive() local
168 textBuf.setLength(0); in TestCaseInsensitive()
170 textBuf.append('X'); in TestCaseInsensitive()
172 textBuf.append(TESTCASES[i][0]); in TestCaseInsensitive()
173 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()