Home
last modified time | relevance | path

Searched refs:append (Results 1 – 25 of 32) sorted by relevance

12

/ndk/sources/host-tools/sed-4.2.1/build-aux/
Dhelp2man99 my %append = ();
150 $hash = \%append;
180 for my $hash (\(%include, %append))
399 $matched .= $& if %append;
409 $matched .= $& if %append;
422 $matched .= $& if %append;
430 $matched .= $& if %append;
438 $matched .= $& if %append;
447 $matched .= $& if %append;
455 $matched .= $& if %append;
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_string_workaround.h162 _Self& append(const _Self& __s) { in append() function
163 _Base::append(__s); in append()
167 _Self& append(const _Self& __s, in append() function
169 _Base::append(__s, __pos, __n); in append()
173 _Self& append(const _CharT* __s, size_type __n) { in append() function
175 _Base::append(__s, __n); in append()
178 _Self& append(const _CharT* __s) { in append() function
180 _Base::append(__s); in append()
183 _Self& append(size_type __n, _CharT __c) { in append() function
184 _Base::append(__n, __c); in append()
[all …]
D_string_sum.h124 _BStrOnLeft operator += (const _BString& __s) { return append(__s); }
127 _CStrOnLeft operator += (const _CharT* __s) { return append(__s); }
133 _BStrOnLeft append (const _BString& __s) in append() function
135 _BString& append(const _BString& __s, size_type __pos, size_type __n) in append() function
136 { return _M_get_storage().append(__s, __pos, __n); } in append()
137 _CStrOnLeft append(const _CharT* __s) { in append() function
141 _CStrOnLeft append(const _CharT* __s, size_type __n) in append() function
143 _BString& append(size_type __n, _CharT __c) in append() function
144 {return _M_get_storage().append(__n, __c);} in append()
146 _BString& append(_InputIter __first, _InputIter __last) in append() function
[all …]
D_rope.h218 _M_prefix->append(_M_buffer, _M_buffer + _M_buf_count);
256 void append(const value_type *__s, size_t __len) {
265 _M_prefix->append(__s, __s + __len);
268 append(__s, __len);
272 append(__s, __len);
1659 _Self& append(const _CharT* __iter, size_t __n) {
1664 _Self& append(const _CharT* __c_string) {
1666 append(__c_string, __len);
1670 _Self& append(const _CharT* __s, const _CharT* __e) {
1675 _Self& append(const_iterator __s, const_iterator __e) {
[all …]
D_string.h408 append(__n - size(), __c); in resize()
451 _Self& operator+=(const _Self& __s) { return append(__s); }
452 _Self& operator+=(const _CharT* __s) { _STLP_FIX_LITERAL_BUG(__s) return append(__s); }
493 { return append((size_type) __n, (_CharT) __x); } in _M_append_dispatch()
503 _Self& append(_InputIter __first, _InputIter __last) { in append() function
509 _Self& append(const _CharT* __first, const _CharT* __last) { in append() function
516 _Self& append(const _Self& __s) in append() function
519 _Self& append(const _Self& __s, in append() function
527 _Self& append(const _CharT* __s, size_type __n) in append() function
529 _Self& append(const _CharT* __s) in append() function
[all …]
D_string_operators.h39 __result.append(__s);
40 __result.append(__y);
57 __result.append(__s, __s + __n);
58 __result.append(__y);
74 __result.append(__y);
91 __result.append(__x);
92 __result.append(__s, __s + __n);
107 __result.append(__x);
D_sstream.c195 _M_str.append(__s, __s + __STATIC_CAST(ptrdiff_t, __n)); in xsputn()
199 _M_str.append(__s, __s + __STATIC_CAST(ptrdiff_t, __n)); in xsputn()
240 _M_str.append(__app_size, __c); in _M_xsputnc()
244 _M_str.append(__app_size, __c); in _M_xsputnc()
/ndk/sources/cxx-stl/stlport/src/
Dtime_facets.cpp161 buf.append(1, *cp++); in __subformat()
166 { buf.append(name.data(), name.data() + name.size()); } in __append()
169 { buf.append(name.data(), name.data() + name.size()); } in __append()
172 { buf.append(first, last); } in __append()
177 buf.append(_wbuf, _wbuf + (last - first)); in __append()
323 buf.append(1, ct.widen('%')); in __write_formatted_timeT()
362 buf.append(1, ct.widen('\n')); in __write_formatted_timeT()
378 buf.append(1, ct.widen('\t')); in __write_formatted_timeT()
437 buf.append(1, ct.widen('-')); in __write_formatted_timeT()
440 buf.append(1, ct.widen('+')); in __write_formatted_timeT()
Dnum_put_float.cpp515 buf.append(precision, '0'); in __format_float_scientific()
579 buf.append(precision, '0'); in __format_float_fixed()
854 out.append( cvtbuf );
856 out.append( cvtbuf, p );
867 out.append(bp, bp + decpt);
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_string.h234 _Self& operator+=(const _Self& __s) { return append(__s); }
238 return append(__s);
240 _Self& operator+=(_CharT __c) { return append(1, __c); }
244 _Self& append(_InputIter __first, _InputIter __last) { in append() function
247 _M_non_dbg_impl.append(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last)); in append()
255 _Self& append(const _CharT* __f, const _CharT* __l) { in append() function
259 _M_non_dbg_impl.append(__f, __l); in append()
264 _Self& append(const_iterator __f, const_iterator __l) { in append() function
267 _M_non_dbg_impl.append(__f._M_iterator, __l._M_iterator); in append()
273 _Self& append(const _Self& __s) { in append() function
[all …]
D_string_sum_methods.h46 { return __str.append(__s, __s_size); } in _M_append_fast()
66 { return __str.append(__s + __pos, __s + __pos + (min)(__n, __s_size - __pos)); } in _M_append_fast_pos()
/ndk/tests/device/test-gnustl-full/unit/
Drope_test.cpp141 result.append(1, /* c */ str[j++] ); in create_rope()
148 result.append(create_rope(len/2)); in create_rope()
Dlocale_test.cpp94 very_large_locale_name.append(1024, '?'); in locale_by_name()
107 very_large_locale_name.append(1024, '?'); in locale_by_name()
Dstring_test.cpp1032 result.append(one + space + two); in template_expression()
1035 result.append(space + result + space + three); in template_expression()
1039 result.append(space + three, 1, 2); in template_expression()
1042 result.append(space + result); in template_expression()
1216 result.append(one + space + two); in template_wexpression()
1219 result.append(space + result + space + three); in template_wexpression()
1223 result.append(space + three, 1, 2); in template_wexpression()
1226 result.append(space + result); in template_wexpression()
Dtime_facets_test.cpp267 veryLongFacetName.append(512, '?'); in time_by_name()
300 veryLongFacetName.append(512, '?'); in time_by_name()
Dnum_facets_test.cpp203 veryLongFacetName.append(512, '?'); in numpunct_by_name()
Dmoney_facets_test.cpp491 veryLongFacetName.append(512, '?'); in moneypunct_by_name()
526 veryLongFacetName.append(512, '?'); in moneypunct_by_name()
Dcollate_facets_test.cpp175 veryLongFacetName.append(512, '?'); in collate_by_name()
/ndk/tests/device/test-stlport/unit/
Drope_test.cpp141 result.append(1, /* c */ str[j++] ); in create_rope()
148 result.append(create_rope(len/2)); in create_rope()
Dlocale_test.cpp94 very_large_locale_name.append(1024, '?'); in locale_by_name()
107 very_large_locale_name.append(1024, '?'); in locale_by_name()
Dstring_test.cpp1032 result.append(one + space + two); in template_expression()
1035 result.append(space + result + space + three); in template_expression()
1039 result.append(space + three, 1, 2); in template_expression()
1042 result.append(space + result); in template_expression()
1216 result.append(one + space + two); in template_wexpression()
1219 result.append(space + result + space + three); in template_wexpression()
1223 result.append(space + three, 1, 2); in template_wexpression()
1226 result.append(space + result); in template_wexpression()
Dtime_facets_test.cpp267 veryLongFacetName.append(512, '?'); in time_by_name()
300 veryLongFacetName.append(512, '?'); in time_by_name()
Dnum_facets_test.cpp203 veryLongFacetName.append(512, '?'); in numpunct_by_name()
Dmoney_facets_test.cpp491 veryLongFacetName.append(512, '?'); in moneypunct_by_name()
526 veryLongFacetName.append(512, '?'); in moneypunct_by_name()
Dcollate_facets_test.cpp175 veryLongFacetName.append(512, '?'); in collate_by_name()

12