Searched refs:append (Results 1 - 25 of 219) sorted by relevance

123456789

/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dappend.go7 // Semi-exhaustive test for the append predeclared function.
38 {"bool a", append([]bool{}), []bool{}},
39 {"bool b", append([]bool{}, true), []bool{true}},
40 {"bool c", append([]bool{}, true, false, true, true), []bool{true, false, true, true}},
42 {"bool d", append([]bool{true, false, true}), []bool{true, false, true}},
43 {"bool e", append([]bool{true, false, true}, false), []bool{true, false, true, false}},
44 {"bool f", append([]bool{true, false, true}, false, false, false), []bool{true, false, true, false, false, false}},
46 {"bool g", append([]bool{}, []bool{true}...), []bool{true}},
47 {"bool h", append([]bool{}, []bool{true, false, true, false}...), []bool{true, false, true, false}},
49 {"bool i", append([]boo
[all...]
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A Dsanitizer_stacktrace_printer.cc33 buffer->append("%c", *p);
39 buffer->append("%%");
43 buffer->append("%zu", frame_no);
46 buffer->append("0x%zx", info.address);
49 buffer->append("%s", StripPathPrefix(info.module, strip_path_prefix));
52 buffer->append("0x%zx", info.module_offset);
55 buffer->append("%s", StripFunctionName(info.function, strip_func_prefix));
58 buffer->append("0x%zx", info.function_offset != AddressInfo::kUnknown
63 buffer->append("%s", StripPathPrefix(info.file, strip_path_prefix));
66 buffer->append("
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/append/char/
H A D2.cc25 // append(const _CharT* __s, size_type __n)
26 // append(const _CharT* __s)
39 one.append(source);
42 two.append(source, 20);
45 three.append(source, 7);
49 three.append(source + 8, 2);
52 one.append(one.c_str(), 20);
55 two.append(two.c_str() + 16, 4);
58 two.append(two.c_str(), 3);
H A D1.cc20 // 21.3.5.2 basic_string::append
41 // string& append(const string&)
43 str05.append(str05);
45 str05.append(str01);
47 str05.append(str03);
50 str06.append(str05);
54 // string& append(const string&, size_type pos, size_type n)
59 str06.append(str03, csz01 + 1, 0);
71 str06.append(str01, csz01 + 1, 0);
82 str05.append(str0
[all...]
H A D3.cc43 one.append(one);
45 two.append(two.c_str(), two.size());
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/basic_string/modifiers/append/wchar_t/
H A D2.cc25 // append(const _CharT* __s, size_type __n)
26 // append(const _CharT* __s)
39 one.append(source);
42 two.append(source, 20);
45 three.append(source, 7);
49 three.append(source + 8, 2);
52 one.append(one.c_str(), 20);
55 two.append(two.c_str() + 16, 4);
58 two.append(two.c_str(), 3);
H A D1.cc20 // 21.3.5.2 basic_string::append
41 // wstring& append(const wstring&)
43 str05.append(str05);
45 str05.append(str01);
47 str05.append(str03);
50 str06.append(str05);
54 // wstring& append(const wstring&, size_type pos, size_type n)
59 str06.append(str03, csz01 + 1, 0);
71 str06.append(str01, csz01 + 1, 0);
82 str05.append(str0
[all...]
H A D3.cc49 one.append(one);
51 two.append(two.c_str(), two.size());
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/template/
H A Dmemtmpl3.C9 struct append struct in struct:tuple_impl
19 : public tuple_impl<T1, null_type>::template append<T1>::type
21 using tuple_impl<T1, null_type>::template append<T1>::type::data;
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.ns/
H A Dlookup2.C5 charT append (charT c) function in struct:basic_string
/haiku-buildtools/binutils/gas/testsuite/gas/mach-o/
H A Dsymbols-6-64.s1 # now look at what happens when we append some indirects to the normal
H A Dsymbols-6.s1 # now look at what happens when we append some indirects to the normal
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.eh/
H A Dtmpl2.C10 void append(const T&);
30 x.append(p);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostringstream/assign/
H A D1.cc34 append(std::ostringstream& ss, std::string& s, const std::string& t) function
46 append(s1, exp, strings[0]);
51 append(s2, exp, strings[1]);
57 append(s3, exp, strings[2]);
64 append(s1, exp, strings[3]);
74 append(s1, exp, strings[0]);
80 append(s2, exp, strings[1]);
87 append(s3, exp, strings[2]);
96 append(s1, exp, strings[3]);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostringstream/cons/
H A Dmove.cc34 append(std::ostringstream& ss, std::string& s, const std::string& t) function
45 append(s1, exp, strings[0]);
51 append(s2, exp, strings[1]);
58 append(s3, exp, strings[2]);
64 append(s1, exp, strings[3]);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_stringstream/cons/
H A Dmove.cc34 append(std::stringstream& ss, std::string& s, const std::string& t) function
45 append(s1, exp, strings[0]);
51 append(s2, exp, strings[1]);
58 append(s3, exp, strings[2]);
64 append(s1, exp, strings[3]);
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr63841.C11 data.append(&b, 1);
23 data.append(&b, 1);
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dbug428.go7 // Test that when the compiler expands append inline it does not
15 s = append(s[:len(s)-1], '5', s[len(s)-1])
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/vstring/requirements/
H A Ddo_the_right_thing.cc28 vs.append(7, 0);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/array_allocator/
H A D2.cc54 s.append(1, 'c');
55 s.append(2, 'b');
/haiku-buildtools/gcc/libstdc++-v3/testsuite/performance/21_strings/
H A Dappend-1.cc31 buf.append(static_cast<string::size_type>(1) , 'x');
40 buf.append(s);
H A Dappend-2.cc34 a.append(1, 'x');
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcvt1.C21 void append (Thing* const &entry) { groupCount ++ ; } function in class:Group
32 g.append (t) ;
/haiku-buildtools/binutils/ld/testsuite/ld-arm/
H A Dunwind-2.s15 @ last text section has unwind information. Linker should append a
/haiku-buildtools/binutils/ld/testsuite/ld-tic6x/
H A Dunwind-2.s19 # last text section has unwind information. Linker should append a

Completed in 229 milliseconds

123456789