HomeSort by relevance Sort by last modified time
    Searched refs:sb (Results 251 - 275 of 5874) sorted by null

<<11121314151617181920>>

  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
ToStringHelper.java 110 StringBuilder sb = new StringBuilder(ARRAY_PREFIX); local
116 sb.append(ELEMENT_SEPARATOR);
118 sb.append(render(oa[i]));
125 sb.append(ELEMENT_SEPARATOR);
127 sb.append(ba[i]);
133 sb.append(ELEMENT_SEPARATOR);
135 sb.append(ia[i]);
142 sb.append(ELEMENT_SEPARATOR);
144 sb.append(ia[i]);
150 sb.append(ELEMENT_SEPARATOR)
    [all...]
  /frameworks/base/location/java/android/location/
Address.java 423 StringBuilder sb = new StringBuilder(); local
424 sb.append("Address[addressLines=[");
427 sb.append(',');
429 sb.append(i);
430 sb.append(':');
433 sb.append("null");
435 sb.append('\"');
436 sb.append(line);
437 sb.append('\"');
440 sb.append(']')
    [all...]
  /bionic/libc/bionic/
lstat.cpp 34 int lstat(const char* path, struct stat* sb) {
35 return fstatat(AT_FDCWD, path, sb, AT_SYMLINK_NOFOLLOW);
stat.cpp 34 int stat(const char* path, struct stat* sb) {
35 return fstatat(AT_FDCWD, path, sb, 0);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
TextUtils.java 36 final StringBuilder sb = new StringBuilder(); local
44 sb.append(line);
45 sb.append('\n');
56 sb.append(line);
57 sb.append('\n');
61 sb.append(line);
62 sb.append('\n');
64 return sb.toString();
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
SourcePosition.java 73 StringBuffer sb = new StringBuffer(50); local
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();
  /dalvik/dx/src/com/android/dx/rop/code/
SourcePosition.java 73 StringBuilder sb = new StringBuilder(50); local
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/
TableResult.java 141 StringBuffer sb = new StringBuffer(); local
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/std/input.output/iostream.format/ext.manip/
get_money.pass.cpp 44 testbuf<char> sb(" -$1,234,567.89");
45 std::istream is(&sb);
52 testbuf<char> sb(" -USD 1,234,567.89");
53 std::istream is(&sb);
60 testbuf<wchar_t> sb(L" -$1,234,567.89");
61 std::wistream is(&sb);
68 testbuf<wchar_t> sb(L" -USD 1,234,567.89");
69 std::wistream is(&sb);
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/
ends.pass.cpp 56 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/std/input.output/iostream.format/output.streams/ostream.unformatted/
flush.pass.cpp 45 testbuf<char> sb; local
46 std::ostream os(&sb);
  /external/libcxx/test/std/input.output/iostream.format/std.manip/
resetiosflags.pass.cpp 27 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);
setiosflags.pass.cpp 27 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/std/input.output/iostreams.base/ios/iostate.flags/
exceptions.pass.cpp 29 testbuf sb; local
30 const std::ios ios(&sb);
good.pass.cpp 29 testbuf sb; local
30 std::ios ios(&sb);
  /external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/adjustfield.manip/
internal.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
left.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
right.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
  /external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/basefield.manip/
dec.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
hex.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
oct.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
  /external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/floatfield.manip/
fixed.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
scientific.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
  /external/libcxx/test/std/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
boolalpha.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);
noboolalpha.pass.cpp 24 testbuf sb; local
25 std::ios ios(&sb);

Completed in 233 milliseconds

<<11121314151617181920>>