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

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
rdbuf.pass.cpp 24 std::strstreambuf* sb = out.rdbuf(); local
25 assert(sb->sputc('a') == 'a');
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
rdbuf.pass.cpp 24 std::strstreambuf* sb = out.rdbuf(); local
25 assert(sb->sputc('a') == 'a');
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/std.manip/
setprecision.pass.cpp 27 testbuf<char> sb; local
28 std::istream is(&sb);
33 testbuf<char> sb; local
34 std::ostream os(&sb);
39 testbuf<wchar_t> sb; local
40 std::wistream is(&sb);
45 testbuf<wchar_t> sb; local
46 std::wostream os(&sb);
setw.pass.cpp 27 testbuf<char> sb; local
28 std::istream is(&sb);
33 testbuf<char> sb; local
34 std::ostream os(&sb);
39 testbuf<wchar_t> sb; local
40 std::wistream is(&sb);
45 testbuf<wchar_t> sb; local
46 std::wostream os(&sb);
setfill.pass.cpp 27 testbuf<char> sb; local
28 std::ostream os(&sb);
33 testbuf<wchar_t> sb; local
34 std::wostream os(&sb);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
ldsgeb.d 1 # name: Accept lds<cc>sb mnemonics
  /external/e2fsprogs/lib/ext2fs/
swapfs.c 25 void ext2fs_swap_super(struct ext2_super_block * sb)
28 sb->s_inodes_count = ext2fs_swab32(sb->s_inodes_count);
29 sb->s_blocks_count = ext2fs_swab32(sb->s_blocks_count);
30 sb->s_r_blocks_count = ext2fs_swab32(sb->s_r_blocks_count);
31 sb->s_free_blocks_count = ext2fs_swab32(sb->s_free_blocks_count);
32 sb->s_free_inodes_count = ext2fs_swab32(sb->s_free_inodes_count)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
StringBuilderBenchmark.java 30 StringBuilder sb = new StringBuilder(); local
32 sb.append(true);
39 StringBuilder sb = new StringBuilder(); local
41 sb.append('c');
49 StringBuilder sb = new StringBuilder(); local
51 sb.append(chars);
59 StringBuilder sb = new StringBuilder(); local
61 sb.append(cs);
69 StringBuilder sb = new StringBuilder(); local
71 sb.append(cs)
79 StringBuilder sb = new StringBuilder(); local
89 StringBuilder sb = new StringBuilder(); local
99 StringBuilder sb = new StringBuilder(); local
109 StringBuilder sb = new StringBuilder(); local
124 StringBuilder sb = new StringBuilder(); local
134 StringBuilder sb = new StringBuilder(); local
    [all...]
  /packages/apps/SecureElement/src/com/android/se/security/
ChannelAccess.java 137 StringBuilder sb = new StringBuilder(); local
138 sb.append(this.getClass().getName());
139 sb.append("\n [mPackageName=");
140 sb.append(mPackageName);
141 sb.append(", mAccess=");
142 sb.append(mAccess);
143 sb.append(", mApduAccess=");
144 sb.append(mApduAccess);
145 sb.append(", mUseApduFilter=");
146 sb.append(mUseApduFilter)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
GLUtils.java 49 StringBuilder sb = new StringBuilder(bb.capacity() * 3); local
52 sb.append(String.format("%.4f", bb.get()));
53 sb.append(',');
54 sb.append('\n');
57 return sb.toString();
63 StringBuilder sb = new StringBuilder(bb.capacity() * 3); local
66 sb.append(bb.get());
67 sb.append(',');
68 sb.append('\n');
71 return sb.toString()
77 StringBuilder sb = new StringBuilder(bb.capacity() * 3); local
95 StringBuilder sb = new StringBuilder(bb.capacity() * 3); local
    [all...]
  /system/tools/hidl/docs/src/writer/elements/
CompoundElement.kt 30 val sb = StringBuilder()
31 sb.append("${declarationParser.type.value} ${declarationParser.name} {")
34 sb.append("${typedef}${arg.type} ${arg.name}")
35 if (i < declarationParser.members.size-1) sb.append("; ")
37 sb.append("}")
38 return sb.toString()
43 val sb = StringBuilder()
45 sb.append("""
54 sb.append("""
64 sb.append(""
    [all...]
  /external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/
flush.pass.cpp 45 testbuf<char> sb; local
46 std::ostream os(&sb);
52 testbuf<wchar_t> sb; local
53 std::wostream os(&sb);
  /external/libcxx/test/std/input.output/iostream.format/std.manip/
setfill.pass.cpp 27 testbuf<char> sb; local
28 std::ostream os(&sb);
33 testbuf<wchar_t> sb; local
34 std::wostream os(&sb);
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
copy.fail.cpp 24 std::streambuf sb = get(); // expected-error {{calling a protected constructor}} local
  /external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
pbump2gig.pass.cpp 27 struct SB : std::stringbuf
29 SB() : std::stringbuf(std::ios::ate|std::ios::out) { }
40 SB sb; local
41 sb.str(str);
42 assert(sb.pubpbase() <= sb.pubpptr());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/iostream.format/output.streams/ostream.manip/
flush.pass.cpp 45 testbuf<char> sb; local
46 std::ostream os(&sb);
52 testbuf<wchar_t> sb; local
53 std::wostream os(&sb);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
copy.fail.cpp 24 std::streambuf sb = get(); // expected-error {{calling a protected constructor}} local
  /system/core/libutils/
SharedBuffer.cpp 37 SharedBuffer* sb = static_cast<SharedBuffer *>(malloc(sizeof(SharedBuffer) + size)); local
38 if (sb) {
39 // Should be std::atomic_init(&sb->mRefs, 1);
42 sb->mRefs.store(1, std::memory_order_relaxed);
43 sb->mSize = size;
45 return sb;
59 SharedBuffer* sb = alloc(mSize); local
60 if (sb) {
61 memcpy(sb->data(), data(), size());
64 return sb;
83 SharedBuffer* sb = alloc(newSize); local
103 SharedBuffer* sb = alloc(new_size); local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mep/
dj2.be.d 11 0: 07 88 sb \$7,\(\$8\)
12 2: 05 98 sb \$5,\(\$9\)
dj2.le.d 11 0: 88 07 sb \$7,\(\$8\)
12 2: 98 05 sb \$5,\(\$9\)
  /external/annotation-tools/asmx/src/org/objectweb/asm/xml/
SAXClassAdapter.java 122 StringBuffer sb = new StringBuffer(); local
124 sb.append("public ");
126 sb.append("private ");
128 sb.append("protected ");
130 sb.append("final ");
132 sb.append("super ");
134 sb.append("interface ");
136 sb.append("abstract ");
138 sb.append("synthetic ");
140 sb.append("annotation ")
188 StringBuffer sb = new StringBuffer(); local
234 StringBuffer sb = new StringBuffer(); local
290 StringBuffer sb = new StringBuffer(); local
335 StringBuffer sb = new StringBuffer(); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StringBufferPool.java 50 * @param sb Must be a non-null reference to a string buffer.
52 public synchronized static void free(FastStringBuffer sb)
57 sb.setLength(0);
58 m_stringBufPool.freeInstance(sb);
  /external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
rdbuf.pass.cpp 27 std::streambuf* sb = (std::streambuf*)1; local
28 const std::ios ios(sb);
29 assert(ios.rdbuf() == sb);
  /external/skia/src/gpu/gl/
GrGLGpuCommandBuffer.cpp 19 GrStencilAttachment* sb = fRenderTarget->renderTargetPriv().getStencilAttachment(); local
20 if (sb && (sb->isDirty() || fRenderTarget->alwaysClearStencil())) {
  /external/skqp/src/gpu/gl/
GrGLGpuCommandBuffer.cpp 19 GrStencilAttachment* sb = fRenderTarget->renderTargetPriv().getStencilAttachment(); local
20 if (sb && (sb->isDirty() || fRenderTarget->alwaysClearStencil())) {

Completed in 1100 milliseconds

1 2 3 45 6 7 8 91011>>