Searched refs:buf (Results 1 - 25 of 6972) sorted by relevance

1234567891011>>

/prebuilts/go/darwin-x86/src/debug/dwarf/testdata/
H A Dline1.h3 char buf[10]; local
6 buf[i] = 1;
/prebuilts/go/linux-x86/src/debug/dwarf/testdata/
H A Dline1.h3 char buf[10]; local
6 buf[i] = 1;
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/string.streams/stringbuf/stringbuf.members/
H A Dstr.pass.cpp23 std::stringbuf buf("testing");
24 assert(buf.str() == "testing");
25 buf.str("another test");
26 assert(buf.str() == "another test");
29 std::wstringbuf buf(L"testing");
30 assert(buf.str() == L"testing");
31 buf.str(L"another test");
32 assert(buf.str() == L"another test");
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.members/
H A Dstr.pass.cpp23 std::stringbuf buf("testing");
24 assert(buf.str() == "testing");
25 buf.str("another test");
26 assert(buf.str() == "another test");
29 std::wstringbuf buf(L"testing");
30 assert(buf.str() == L"testing");
31 buf.str(L"another test");
32 assert(buf.str() == L"another test");
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/string.streams/stringbuf/stringbuf.members/
H A Dstr.pass.cpp23 std::stringbuf buf("testing");
24 assert(buf.str() == "testing");
25 buf.str("another test");
26 assert(buf.str() == "another test");
29 std::wstringbuf buf(L"testing");
30 assert(buf.str() == L"testing");
31 buf.str(L"another test");
32 assert(buf.str() == L"another test");
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/input.output/string.streams/stringbuf/stringbuf.cons/
H A Ddefault.pass.cpp23 std::stringbuf buf; local
24 assert(buf.str() == "");
27 std::wstringbuf buf; local
28 assert(buf.str() == L"");
H A Dstring.pass.cpp24 std::stringbuf buf("testing");
25 assert(buf.str() == "testing");
28 std::stringbuf buf("testing", std::ios_base::in);
29 assert(buf.str() == "testing");
32 std::stringbuf buf("testing", std::ios_base::out);
33 assert(buf.str() == "testing");
36 std::wstringbuf buf(L"testing");
37 assert(buf.str() == L"testing");
40 std::wstringbuf buf(L"testing", std::ios_base::in);
41 assert(buf
[all...]
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.cons/
H A Ddefault.pass.cpp23 std::stringbuf buf; local
24 assert(buf.str() == "");
27 std::wstringbuf buf; local
28 assert(buf.str() == L"");
H A Dstring.pass.cpp24 std::stringbuf buf("testing");
25 assert(buf.str() == "testing");
28 std::stringbuf buf("testing", std::ios_base::in);
29 assert(buf.str() == "testing");
32 std::stringbuf buf("testing", std::ios_base::out);
33 assert(buf.str() == "testing");
36 std::wstringbuf buf(L"testing");
37 assert(buf.str() == L"testing");
40 std::wstringbuf buf(L"testing", std::ios_base::in);
41 assert(buf
[all...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/string.streams/stringbuf/stringbuf.cons/
H A Ddefault.pass.cpp23 std::stringbuf buf; local
24 assert(buf.str() == "");
27 std::wstringbuf buf; local
28 assert(buf.str() == L"");
H A Dstring.pass.cpp24 std::stringbuf buf("testing");
25 assert(buf.str() == "testing");
28 std::stringbuf buf("testing", std::ios_base::in);
29 assert(buf.str() == "testing");
32 std::stringbuf buf("testing", std::ios_base::out);
33 assert(buf.str() == "testing");
36 std::wstringbuf buf(L"testing");
37 assert(buf.str() == L"testing");
40 std::wstringbuf buf(L"testing", std::ios_base::in);
41 assert(buf
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
H A Drdbuf.pass.cpp22 char buf[] = "123 4.5 dog"; local
23 const std::ostrstream out(buf, 0);
26 assert(buf == std::string("a23 4.5 dog"));
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
H A Drdbuf.pass.cpp22 char buf[] = "123 4.5 dog"; local
23 const std::strstream out(buf, 0);
26 assert(buf == std::string("a23 4.5 dog"));
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.placement/
H A Dnew.pass.cpp25 char buf[sizeof(A)]; local
27 A* ap = new(buf) A;
28 assert((char*)ap == buf);
H A Dnew_array.pass.cpp25 char buf[3*sizeof(A)]; local
27 A* ap = new(buf) A[3];
28 assert((char*)ap == buf);
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
H A Drdbuf.pass.cpp22 char buf[] = "123 4.5 dog"; local
23 const std::ostrstream out(buf, 0);
26 assert(buf == std::string("a23 4.5 dog"));
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
H A Drdbuf.pass.cpp22 char buf[] = "123 4.5 dog"; local
23 const std::strstream out(buf, 0);
26 assert(buf == std::string("a23 4.5 dog"));
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.placement/
H A Dnew.pass.cpp25 char buf[sizeof(A)]; local
27 A* ap = new(buf) A;
28 assert((char*)ap == buf);
H A Dnew_array.pass.cpp25 char buf[3*sizeof(A)]; local
27 A* ap = new(buf) A[3];
28 assert((char*)ap == buf);
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
H A Drdbuf.pass.cpp22 char buf[] = "123 4.5 dog"; local
23 const std::ostrstream out(buf, 0);
26 assert(buf == std::string("a23 4.5 dog"));
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
H A Drdbuf.pass.cpp22 char buf[] = "123 4.5 dog"; local
23 const std::strstream out(buf, 0);
26 assert(buf == std::string("a23 4.5 dog"));
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.placement/
H A Dnew.pass.cpp25 char buf[sizeof(A)]; local
27 A* ap = new(buf) A;
28 assert((char*)ap == buf);
H A Dnew_array.pass.cpp25 char buf[3*sizeof(A)]; local
27 A* ap = new(buf) A[3];
28 assert((char*)ap == buf);
/prebuilts/ndk/current/sources/cxx-stl/gabi++/tests/
H A Dtest_gabixx_exceptions.cpp21 char *buf; local
24 buf = new char[512];
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
H A Dstr.pass.cpp22 const char buf[] = "123 4.5 dog"; local
23 std::istrstream in(buf);

Completed in 1482 milliseconds

1234567891011>>