Searched refs:sb (Results 101 - 125 of 865) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DSourcePosition.java73 StringBuffer sb = new StringBuffer(50);
76 sb.append(sourceFile.toHuman());
77 sb.append(":");
81 sb.append(line);
84 sb.append('@');
87 sb.append("????");
89 sb.append(Hex.u2(address));
92 return sb.toString();
/external/javasqlite/src/main/java/SQLite/
H A DTableResult.java141 StringBuffer sb = new StringBuffer();
144 sb.append(column[i] == null ? "NULL" : column[i]);
145 sb.append('|');
147 sb.append('\n');
152 sb.append(row[k] == null ? "NULL" : row[k]);
153 sb.append('|');
155 sb.append('\n');
157 return sb.toString();
/external/libcxx/test/input.output/iostream.format/ext.manip/
H A Dget_money.pass.cpp42 testbuf<char> sb(" -$1,234,567.89");
43 std::istream is(&sb);
50 testbuf<char> sb(" -USD 1,234,567.89");
51 std::istream is(&sb);
58 testbuf<wchar_t> sb(L" -$1,234,567.89");
59 std::wistream is(&sb);
66 testbuf<wchar_t> sb(L" -USD 1,234,567.89");
67 std::wistream is(&sb);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
H A Dmove.pass.cpp34 test_ostream(testbuf<CharT>* sb) : base(sb) {} argument
46 testbuf<char> sb; local
47 test_ostream<char> os1(&sb);
49 assert(os1.rdbuf() == &sb);
60 testbuf<wchar_t> sb; local
61 test_ostream<wchar_t> os1(&sb);
63 assert(os1.rdbuf() == &sb);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
H A Dpointer.pass.cpp62 testbuf<char> sb; local
63 std::ostream os(&sb);
72 assert(sb.str() == "0x0" || sb.str() == "(nil)" ||
73 sb.str() == std::string(sizeof(void*)*2,'0'));
76 testbuf<char> sb; local
77 std::ostream os(&sb);
78 const void* n = &sb;
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.manip/
H A Dends.pass.cpp56 testbuf<char> sb; local
57 std::ostream os(&sb);
59 assert(sb.str().size() == 1);
60 assert(sb.str().back() == 0);
64 testbuf<wchar_t> sb; local
65 std::wostream os(&sb);
67 assert(sb.str().size() == 1);
68 assert(sb.str().back() == 0);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.unformatted/
H A Dflush.pass.cpp45 testbuf<char> sb; local
46 std::ostream os(&sb);
/external/libcxx/test/input.output/iostream.format/std.manip/
H A Dresetiosflags.pass.cpp27 testbuf<char> sb; local
28 std::istream is(&sb);
34 testbuf<char> sb; local
35 std::ostream os(&sb);
41 testbuf<wchar_t> sb; local
42 std::wistream is(&sb);
48 testbuf<wchar_t> sb; local
49 std::wostream os(&sb);
H A Dsetiosflags.pass.cpp27 testbuf<char> sb; local
28 std::istream is(&sb);
34 testbuf<char> sb; local
35 std::ostream os(&sb);
41 testbuf<wchar_t> sb; local
42 std::wistream is(&sb);
48 testbuf<wchar_t> sb; local
49 std::wostream os(&sb);
/external/libcxx/test/input.output/iostreams.base/ios/iostate.flags/
H A Dexceptions.pass.cpp29 testbuf sb; local
30 const std::ios ios(&sb);
H A Dgood.pass.cpp29 testbuf sb; local
30 std::ios ios(&sb);
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/adjustfield.manip/
H A Dinternal.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dleft.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dright.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/
H A Ddec.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dhex.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Doct.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/
H A Dfixed.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dscientific.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
H A Dboolalpha.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dnoboolalpha.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dnoshowbase.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dnoshowpoint.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dnoshowpos.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Dnoskipws.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);

Completed in 434 milliseconds

1234567891011>>