/external/icu4c/test/iotest/ |
strtst.c | 511 char testBuf[256] = ""; 519 sprintf(testBuf, "%x", (int)num); 522 if (strcmp(myString, testBuf) != 0) { 523 log_err("%%x Got: \"%s\", Expected: \"%s\"\n", myString, testBuf); 526 sprintf(testBuf, "%X", (int)num); 529 if (strcmp(myString, testBuf) != 0) { 530 log_err("%%X Got: \"%s\", Expected: \"%s\"\n", myString, testBuf); 533 sprintf(testBuf, "%o", (int)num); 536 if (strcmp(myString, testBuf) != 0) { 537 log_err("%%o Got: \"%s\", Expected: \"%s\"\n", myString, testBuf); [all...] |
filetst.c | 35 char testBuf[256] = ""; 43 memset(testBuf, '*', sizeof(testBuf)/sizeof(*testBuf)); 832 UChar testBuf[sizeof(strABAccentA)/sizeof(strABAccentA[0])*2]; /* *2 to see if too much was */ 860 retVal = u_file_read(testBuf, u_strlen(strABAccentA), myFile); 861 if (u_strncmp(strABAccentA, testBuf, u_strlen(strABAccentA)) != 0) { 880 retVal = u_file_read(testBuf, u_strlen(strBadConversion), myFile); 881 if (u_strncmp(strBadConversion, testBuf, u_strlen(strBadConversion)) != 0) { [all...] |
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/ext.manip/ |
put_time.pass.cpp | 20 class testbuf class in inherits:std::basic_streambuf 26 testbuf() function in class:testbuf 54 testbuf<char> sb; 69 testbuf<wchar_t> sb;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/string.streams/stringbuf/stringbuf.virtuals/ |
underflow.pass.cpp | 21 struct testbuf struct in inherits:std::basic_stringbuf 25 explicit testbuf(const std::basic_string<CharT>& str) function in struct:testbuf 35 testbuf<char> sb("123"); 53 testbuf<wchar_t> sb(L"123");
|
pbackfail.pass.cpp | 21 struct testbuf struct in inherits:std::basic_stringbuf 25 explicit testbuf(const std::basic_string<CharT>& str, function in struct:testbuf 39 testbuf<char> sb("123", std::ios_base::in); 53 testbuf<char> sb("123"); 66 testbuf<wchar_t> sb(L"123", std::ios_base::in); 80 testbuf<wchar_t> sb(L"123");
|
overflow.pass.cpp | 23 struct testbuf struct in inherits:std::basic_stringbuf 27 explicit testbuf(const std::basic_string<CharT>& str, function in struct:testbuf 41 testbuf<char> sb("abc"); 66 testbuf<wchar_t> sb(L"abc"); 91 testbuf<char> sb("abc", std::ios_base::app | std::ios_base::out);
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios/iostate.flags/ |
bad.pass.cpp | 20 struct testbuf : public std::streambuf {}; struct in inherits:std::streambuf 31 testbuf sb;
|
eof.pass.cpp | 20 struct testbuf : public std::streambuf {}; struct in inherits:std::streambuf 31 testbuf sb;
|
fail.pass.cpp | 20 struct testbuf : public std::streambuf {}; struct in inherits:std::streambuf 31 testbuf sb;
|
clear.pass.cpp | 20 struct testbuf : public std::streambuf {}; struct in inherits:std::streambuf 55 testbuf sb;
|
exceptions_iostate.pass.cpp | 20 struct testbuf : public std::streambuf {}; struct in inherits:std::streambuf 40 testbuf sb;
|
setstate.pass.cpp | 20 struct testbuf : public std::streambuf {}; struct in inherits:std::streambuf 55 testbuf sb;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/ |
defaultfloat.pass.cpp | 20 struct testbuf : public std::streambuf {}; struct in inherits:std::streambuf 24 testbuf sb;
|
hexfloat.pass.cpp | 20 struct testbuf : public std::streambuf {}; struct in inherits:std::streambuf 24 testbuf sb;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios/basic.ios.members/ |
imbue.pass.cpp | 22 struct testbuf struct in inherits:std::streambuf 88 testbuf sb;
|
copyfmt.pass.cpp | 22 struct testbuf struct in inherits:std::streambuf 111 testbuf sb1; 131 testbuf sb2;
|
swap.pass.cpp | 22 struct testbuf struct in inherits:std::streambuf 73 testbuf sb1; 93 testbuf sb2;
|
move.pass.cpp | 22 struct testbuf struct in inherits:std::streambuf 82 testbuf sb2;
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldRandomAccessFileTest.java | 253 byte[] testBuf = testString.getBytes(); 257 raf.write(testBuf[i]); 268 testBuf[i], raf.read()); [all...] |
/external/grub/netboot/ |
ns8390.c | 756 char romdata[16], testbuf[32]; local 788 eth_pio_read(8192, testbuf, sizeof(test)); 789 if (!memcmp(test, testbuf, sizeof(test))) 800 eth_pio_read(16384, testbuf, sizeof(test)); 801 if (!memcmp(testbuf, test, sizeof(test)))
|