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

12

/ndk/tests/device/test-gnustl-full/unit/
H A Drope_test.cpp141 result.append(1, /* c */ str[j++] );
148 result.append(create_rope(len/2));
H A Dlocale_test.cpp94 very_large_locale_name.append(1024, '?');
107 very_large_locale_name.append(1024, '?');
H A Dstring_test.cpp1026 //special append method
1032 result.append(one + space + two);
1035 result.append(space + result + space + three);
1039 result.append(space + three, 1, 2);
1042 result.append(space + result);
1210 //special append method
1216 result.append(one + space + two);
1219 result.append(space + result + space + three);
1223 result.append(space + three, 1, 2);
1226 result.append(spac
[all...]
H A Dtime_facets_test.cpp267 veryLongFacetName.append(512, '?');
300 veryLongFacetName.append(512, '?');
H A Dnum_facets_test.cpp203 veryLongFacetName.append(512, '?');
H A Dmoney_facets_test.cpp491 veryLongFacetName.append(512, '?');
526 veryLongFacetName.append(512, '?');
/ndk/tests/device/test-stlport/unit/
H A Drope_test.cpp141 result.append(1, /* c */ str[j++] );
148 result.append(create_rope(len/2));
H A Dlocale_test.cpp94 very_large_locale_name.append(1024, '?');
107 very_large_locale_name.append(1024, '?');
H A Dstring_test.cpp1026 //special append method
1032 result.append(one + space + two);
1035 result.append(space + result + space + three);
1039 result.append(space + three, 1, 2);
1042 result.append(space + result);
1210 //special append method
1216 result.append(one + space + two);
1219 result.append(space + result + space + three);
1223 result.append(space + three, 1, 2);
1226 result.append(spac
[all...]
H A Dtime_facets_test.cpp267 veryLongFacetName.append(512, '?');
300 veryLongFacetName.append(512, '?');
H A Dnum_facets_test.cpp203 veryLongFacetName.append(512, '?');
/ndk/sources/cxx-stl/stlport/src/
H A Dtime_facets.cpp161 buf.append(1, *cp++);
166 { buf.append(name.data(), name.data() + name.size()); }
169 { buf.append(name.data(), name.data() + name.size()); }
172 { buf.append(first, last); }
177 buf.append(_wbuf, _wbuf + (last - first));
323 buf.append(1, ct.widen('%'));
362 buf.append(1, ct.widen('\n'));
378 buf.append(1, ct.widen('\t'));
437 buf.append(1, ct.widen('-'));
440 buf.append(
[all...]
H A Dnum_put_float.cpp516 buf.append(precision, '0');
580 buf.append(precision, '0');
855 out.append( cvtbuf );
857 out.append( cvtbuf, p );
868 out.append(bp, bp + decpt);
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A 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) { function in class:basic_string
247 _M_non_dbg_impl.append(_STLP_PRIV _Non_Dbg_iter(__first), _STLP_PRIV _Non_Dbg_iter(__last));
255 _Self& append(const _CharT* __f, const _CharT* __l) { function in class:basic_string
259 _M_non_dbg_impl.append(__f, __l);
264 _Self& append(const_iterator __f, const_iterator __l) { function in class:basic_string
267 _M_non_dbg_impl.append(__f._M_iterator, __l._M_iterator);
273 _Self& append(cons function in class:basic_string
280 _Self& append(const _Self& __s, size_type __pos, size_type __n) { function in class:basic_string
287 _Self& append(const _CharT* __s, size_type __n) { function in class:basic_string
296 _Self& append(const _CharT* __s) { function in class:basic_string
305 _Self& append(size_type __n, _CharT __c) { function in class:basic_string
[all...]
H A D_string_sum_methods.h46 { return __str.append(__s, __s_size); }
66 { return __str.append(__s + __pos, __s + __pos + (min)(__n, __s_size - __pos)); }
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_string_workaround.h162 _Self& append(const _Self& __s) { function in class:basic_string
163 _Base::append(__s);
167 _Self& append(const _Self& __s, function in class:basic_string
169 _Base::append(__s, __pos, __n);
173 _Self& append(const _CharT* __s, size_type __n) { function in class:basic_string
175 _Base::append(__s, __n);
178 _Self& append(const _CharT* __s) { function in class:basic_string
180 _Base::append(__s);
183 _Self& append(size_type __n, _CharT __c) { function in class:basic_string
184 _Base::append(__
191 _Self& append(_InputIter __first, _InputIter __last) { function in class:basic_string
198 _Self& append(const _CharT* __f, const _CharT* __l) { function in class:basic_string
[all...]
H A D_string_sum.h124 _BStrOnLeft operator += (const _BString& __s) { return append(__s); }
127 _CStrOnLeft operator += (const _CharT* __s) { return append(__s); }
132 //append
133 _BStrOnLeft append (const _BString& __s) function in class:__bstr_sum
135 _BString& append(const _BString& __s, size_type __pos, size_type __n) function in class:__bstr_sum
136 { return _M_get_storage().append(__s, __pos, __n); }
137 _CStrOnLeft append(const _CharT* __s) { function in class:__bstr_sum
141 _CStrOnLeft append(const _CharT* __s, size_type __n) function in class:__bstr_sum
143 _BString& append(size_type __n, _CharT __c) function in class:__bstr_sum
144 {return _M_get_storage().append(__
146 _BString& append(_InputIter __first, _InputIter __last) function in class:__bstr_sum
[all...]
H A D_rope.h171 // Sequence must provide an append operation that appends an
218 _M_prefix->append(_M_buffer, _M_buffer + _M_buf_count);
256 void append(const value_type *__s, size_t __len) { function in class:sequence_buffer
265 _M_prefix->append(__s, __s + __len);
268 append(__s, __len);
272 append(__s, __len);
1661 _Self& append(const _CharT* __iter, size_t __n) { function in class:rope
1666 _Self& append(const _CharT* __c_string) { function in class:rope
1668 append(__c_string, __len);
1672 _Self& append(cons function in class:rope
1677 _Self& append(const_iterator __s, const_iterator __e) { function in class:rope
1685 _Self& append(_CharT __c) { function in class:rope
1690 _Self& append() { return append(_CharT()); } // XXX why? function in class:rope
1692 _Self& append(const _Self& __y) { function in class:rope
1698 _Self& append(size_t __n, _CharT __c) { function in class:rope
[all...]
H A D_sstream.c176 // then overwrite instead of append.
195 _M_str.append(__s, __s + __STATIC_CAST(ptrdiff_t, __n));
199 _M_str.append(__s, __s + __STATIC_CAST(ptrdiff_t, __n));
219 // then overwrite instead of append.
240 _M_str.append(__app_size, __c);
244 _M_str.append(__app_size, __c);
H A D_string.h408 append(__n - size(), __c);
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); }
503 _Self& append(_InputIter __first, _InputIter __last) { function in class:basic_string
509 _Self& append(const _CharT* __first, const _CharT* __last) { function in class:basic_string
516 _Self& append(const _Self& __s) function in class:basic_string
519 _Self& append(const _Self& __s, function in class:basic_string
527 _Self& append(const _CharT* __s, size_type __n) function in class:basic_string
529 _Self& append(cons function in class:basic_string
[all...]
H A 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);
/ndk/sources/host-tools/make-3.81/
H A Dexpand.c141 if (v->append)
175 if (v == 0 || (*v->value == '\0' && !v->append))
498 /* If this variable type is append, first get any upper values.
500 if (v->append)
H A Dvariable.c226 v->append = 0;
1010 int append = 0;
1046 append only with other variables in the context of this target. */
1049 append = 1;
1053 /* Don't append from the global set if a previous non-appending
1055 if (v && !v->append)
1056 append = 0;
1218 v->append = append;
1422 printf ("%s %s= ", v->name, v->recursive ? v->append
999 int append = 0; local
[all...]
H A Dvariable.h58 unsigned int append:1; /* Nonzero if an appending target-specific member in struct:variable
/ndk/sources/host-tools/sed-4.2.1/build-aux/
H A 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...]

Completed in 245 milliseconds

12