Lines Matching refs:buf
293 rtl::OStringBuffer buf; in testNormalizedMakeRelative() local
294 buf.append('<'); in testNormalizedMakeRelative()
295 buf.append(tests[i].base); in testNormalizedMakeRelative()
296 buf.append(RTL_CONSTASCII_STRINGPARAM(">, <")); in testNormalizedMakeRelative()
297 buf.append(tests[i].absolute); in testNormalizedMakeRelative()
298 buf.append(RTL_CONSTASCII_STRINGPARAM(">: ")); in testNormalizedMakeRelative()
300 buf.append('<'); in testNormalizedMakeRelative()
301 buf.append( in testNormalizedMakeRelative()
304 buf.append('>'); in testNormalizedMakeRelative()
306 buf.append(RTL_CONSTASCII_STRINGPARAM("none")); in testNormalizedMakeRelative()
308 buf.append(RTL_CONSTASCII_STRINGPARAM(" instead of ")); in testNormalizedMakeRelative()
310 buf.append(RTL_CONSTASCII_STRINGPARAM("none")); in testNormalizedMakeRelative()
312 buf.append('<'); in testNormalizedMakeRelative()
313 buf.append(tests[i].relative); in testNormalizedMakeRelative()
314 buf.append('>'); in testNormalizedMakeRelative()
316 msg = buf.makeStringAndClear(); in testNormalizedMakeRelative()
426 rtl::OStringBuffer buf; in testFindFirstURLInText() local
427 buf.append('"'); in testFindFirstURLInText()
428 buf.append(tests[i].input); in testFindFirstURLInText()
429 buf.append(RTL_CONSTASCII_STRINGPARAM("\" -> ")); in testFindFirstURLInText()
430 buf.append(tests[i].result == 0 ? "none" : tests[i].result); in testFindFirstURLInText()
431 buf.append(RTL_CONSTASCII_STRINGPARAM(" (")); in testFindFirstURLInText()
432 buf.append(static_cast< sal_Int32 >(tests[i].begin)); in testFindFirstURLInText()
433 buf.append(RTL_CONSTASCII_STRINGPARAM(", ")); in testFindFirstURLInText()
434 buf.append(static_cast< sal_Int32 >(tests[i].end)); in testFindFirstURLInText()
435 buf.append(')'); in testFindFirstURLInText()
436 buf.append(RTL_CONSTASCII_STRINGPARAM(" != ")); in testFindFirstURLInText()
437 buf.append(rtl::OUStringToOString(result, RTL_TEXTENCODING_UTF8)); in testFindFirstURLInText()
438 buf.append(RTL_CONSTASCII_STRINGPARAM(" (")); in testFindFirstURLInText()
439 buf.append(static_cast< sal_Int32 >(begin)); in testFindFirstURLInText()
440 buf.append(RTL_CONSTASCII_STRINGPARAM(", ")); in testFindFirstURLInText()
441 buf.append(static_cast< sal_Int32 >(end)); in testFindFirstURLInText()
442 buf.append(')'); in testFindFirstURLInText()
443 msg = buf.makeStringAndClear(); in testFindFirstURLInText()