HomeSort by relevance Sort by last modified time
    Searched refs:fpos (Results 1 - 25 of 43) sorted by null

1 2

  /external/astl/include/
ios_pos_types.h 36 // Type use by fpos.
42 // In the regular STL fpos is a template which gets specialized for
45 // version. The methods to get/set the mbstate in fpos are not
48 class fpos { class in namespace:std
50 fpos() : mOffs(0) { } function in class:std::fpos
51 fpos(streamoff offs) : mOffs(offs) { } function in class:std::fpos
60 fpos& operator+=(streamoff offs);
61 fpos& operator-=(streamoff offs) {
65 fpos operator+(streamoff offs) const;
66 fpos operator-(streamoff offs) const
    [all...]
  /external/astl/src/
ios_pos_types.cpp 32 // Implementation of the fpos class for streams.
34 fpos& fpos::operator+=(streamoff offs) {
48 fpos fpos::operator+(streamoff offs) const {
49 fpos pos(*this);
54 fpos fpos::operator-(streamoff offs) const {
55 fpos pos(*this);
  /libcore/luni/src/test/java/libcore/java/text/
OldFieldPositionTest.java 48 FieldPosition fpos = new FieldPosition(1); local
49 fpos.setBeginIndex(2);
50 fpos.setEndIndex(3);
51 assertEquals("beginIndex should have been set to 2", 2, fpos
54 fpos.setBeginIndex(Integer.MAX_VALUE);
56 Integer.MAX_VALUE, fpos.getBeginIndex());
58 fpos.setBeginIndex(-1);
60 -1, fpos.getBeginIndex());
65 FieldPosition fpos = new FieldPosition(1); local
66 fpos.setEndIndex(3)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
postypes.h 34 // ISO C++ 14882: 27.4.3 - Template class fpos
73 // template fpos<> are described in clauses 21.1.2, 21.1.3, 27.1.2,
80 * @brief Type used by fpos, char_traits<char>, and char_traits<wchar_t>.
105 * CopyConstructible and Assignable. The standard only requires that fpos
112 class fpos class
119 // The standard doesn't require that fpos objects can be default
123 fpos() function in class:fpos
126 // The standard requires that fpos objects can be constructed
133 fpos(streamoff __off) function in class:fpos
153 fpos
    [all...]
  /external/astl/tests/
test_ios_pos_types.cpp 39 using std::fpos;
44 fpos p;
49 fpos p(1000);
58 fpos p1(100);
59 fpos p2(100);
65 fpos p1(100);
66 fpos p2(200);
75 fpos p(100);
  /external/stlport/stlport/stl/
char_traits.h 84 // Class fpos, which represents a position within a file. (The C++
87 template <class _StateT> class fpos { class
89 fpos(streamoff __pos) : _M_pos(__pos), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} function in class:fpos
90 fpos() : _M_pos(0), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} function in class:fpos
94 bool operator==(const fpos& __y) const
96 bool operator!=(const fpos& __y) const
99 fpos& operator+=(streamoff __off) {
103 fpos& operator-=(streamoff __off) {
108 fpos operator+(streamoff __off) {
109 fpos __tmp(*this)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
char_traits.h 84 // Class fpos, which represents a position within a file. (The C++
87 template <class _StateT> class fpos { class
89 fpos(streamoff __pos) : _M_pos(__pos), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} function in class:fpos
90 fpos() : _M_pos(0), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} function in class:fpos
94 bool operator==(const fpos& __y) const
96 bool operator!=(const fpos& __y) const
99 fpos& operator+=(streamoff __off) {
103 fpos& operator-=(streamoff __off) {
108 fpos operator+(streamoff __off) {
109 fpos __tmp(*this)
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
tchcfmt.cpp 52 FieldPosition fpos(0);
59 fpos = 0;
61 res1 = form->format(i, str, fpos, status );
174 FieldPosition fpos(0);
201 res2 = pattform->format(testArgs, 3, str, fpos, status );
259 fpos = 0;
265 res2 = pattform->format(testArgs, 3, str, fpos, status );
356 fpos = 0;
359 res1 = form_pat.format( arg_double, str, fpos );
364 fpos = 0
    [all...]
dtfmapts.cpp 258 FieldPosition fpos; local
267 dateFmt->format(dateObj, str, fpos, status);
281 sdf.format(dateObj, str, fpos, status);
283 sdf.format((UDate)0, str, fpos);
296 fmt->format(numObj, str, fpos, status);
311 fmt.format(numObj, str, fpos, status);
315 fmt.format(1.41421, str, fpos);
316 fmt.format((int32_t)9876543, str, fpos);
331 fmt.format(numObj, str, fpos, status);
335 fmt.format(1.41421, str, fpos);
    [all...]
tzfmttst.cpp 131 FieldPosition fpos(0);
134 sdf->format(DATES[datidx], tzstr, fpos);
411 FieldPosition fpos(0);
412 sdf->format(testTimes[testidx], text, fpos);
  /external/icu4c/test/intltest/
tchcfmt.cpp 52 FieldPosition fpos(0);
59 fpos = 0;
61 res1 = form->format(i, str, fpos, status );
174 FieldPosition fpos(0);
201 res2 = pattform->format(testArgs, 3, str, fpos, status );
259 fpos = 0;
265 res2 = pattform->format(testArgs, 3, str, fpos, status );
356 fpos = 0;
359 res1 = form_pat.format( arg_double, str, fpos );
364 fpos = 0
    [all...]
dtfmapts.cpp 287 FieldPosition fpos; local
296 dateFmt->format(dateObj, str, fpos, status);
310 sdf.format(dateObj, str, fpos, status);
312 sdf.format((UDate)0, str, fpos);
325 fmt->format(numObj, str, fpos, status);
340 fmt.format(numObj, str, fpos, status);
344 fmt.format(1.41421, str, fpos);
345 fmt.format((int32_t)9876543, str, fpos);
360 fmt.format(numObj, str, fpos, status);
364 fmt.format(1.41421, str, fpos);
    [all...]
tzfmttst.cpp 132 FieldPosition fpos(0);
135 sdf->format(DATES[datidx], tzstr, fpos);
392 FieldPosition fpos(0);
393 sdf->format(testTimes[testidx], text, fpos);
  /external/freetype/src/autofit/
afhints.c 66 FT_Int fpos,
104 if ( edge[-1].fpos < fpos )
109 if ( edge[-1].fpos == fpos && dir == axis->major_dir )
119 edge->fpos = (FT_Short)fpos;
804 delta = edge->fpos - u;
813 delta = u - edge->fpos;
822 FT_Pos fpos; local
    [all...]
afcjk.c 387 dist = seg->pos - edge->fpos;
444 edge->fpos = seg->pos;
541 edge_delta = edge->fpos - edge2->fpos;
    [all...]
afhints.h 149 FT_Short fpos; /* original, unscaled position (font units) */ member in struct:AF_EdgeRec_
268 FT_Int fpos,
  /external/svox/pico/lib/
picopal.c 360 fpos_t fpos; local
363 fgetpos((FILE *)stream,&fpos);
366 fsetpos((FILE *)stream,&fpos);
  /external/chromium/base/
string16.h 65 typedef std::fpos<state_type> pos_type;
  /external/chromium/googleurl/base/
string16.h 84 typedef std::fpos<state_type> pos_type;
  /external/chromium/third_party/icu/source/i18n/
plurfmt.cpp 280 FieldPosition fpos(0);
283 return format(number, result, fpos, status);
291 FieldPosition fpos(0);
294 return format(number, result, fpos, status);
datefmt.cpp 164 FieldPosition fpos(0);
165 return format(date, appendTo, fpos);
  /external/icu4c/i18n/
plurfmt.cpp 280 FieldPosition fpos(0);
283 return format(number, result, fpos, status);
291 FieldPosition fpos(0);
294 return format(number, result, fpos, status);
  /external/srec/srec/clib/
srec_arb.c 290 long fpos; local
299 fpos = pftell(fp);
300 buffer = (char*)CALLOC_CLR(fpos, sizeof(char), "srec.arbdata");
303 buffer_size = fpos;
  /external/grub/stage2/
fsys_xfs.c 57 int fpos; member in struct:xfs_info
245 xfs.fpos = sizeof(xfs_btree_block_t);
273 xfs.fpos = sizeof(xfs_btree_block_t);
276 devread (xfs.daddr, xfs.fpos, sizeof(xfs_bmbt_rec_t), filebuf);
278 xfs.fpos += sizeof(xfs_bmbt_rec_32_t);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
pod_char_traits.h 93 typedef fpos<state_type> pos_type;

Completed in 405 milliseconds

1 2