/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);
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
FieldPositionTest.java | 29 FieldPosition fpos = new FieldPosition(DateFormat.MONTH_FIELD); local 31 DateFormat.MONTH_FIELD, fpos.getField()); 32 assertNull("Constructor failed to set field attribute!", fpos 41 FieldPosition fpos = new FieldPosition(DateFormat.Field.MONTH); local 43 DateFormat.Field.MONTH, fpos.getFieldAttribute()); 45 fpos.getField()); 53 FieldPosition fpos = new FieldPosition(DateFormat.Field.MONTH, local 56 DateFormat.Field.MONTH, fpos.getFieldAttribute()); 58 DateFormat.MONTH_FIELD, fpos.getField()); 82 FieldPosition fpos = new FieldPosition(1) local 112 FieldPosition fpos = new FieldPosition(1); local 124 FieldPosition fpos = new FieldPosition(1); local 136 FieldPosition fpos = new FieldPosition(65); local 149 FieldPosition fpos = new FieldPosition(DateFormat.Field.TIME_ZONE); local 165 FieldPosition fpos = new FieldPosition(1); local 182 FieldPosition fpos = new FieldPosition(1); local 194 FieldPosition fpos = new FieldPosition(1); local 206 FieldPosition fpos = new FieldPosition(1); local [all...] |
/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...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/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...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/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...] |
/prebuilt/ndk/android-ndk-r5/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...] |
/prebuilt/ndk/android-ndk-r6/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/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 | 288 FieldPosition fpos; local 297 dateFmt->format(dateObj, str, fpos, status); 311 sdf.format(dateObj, str, fpos, status); 313 sdf.format((UDate)0, str, fpos); 327 fmt->format(numObj, str, fpos, status); 342 fmt.format(numObj, str, fpos, status); 346 fmt.format(1.41421, str, fpos); 347 fmt.format((int32_t)9876543, str, fpos); 362 fmt.format(numObj, str, fpos, status); 366 fmt.format(1.41421, str, fpos); [all...] |
tzfmttst.cpp | 132 FieldPosition fpos(0); 135 sdf->format(DATES[datidx], tzstr, fpos); 391 FieldPosition fpos(0); 392 sdf->format(testTimes[testidx], text, fpos);
|
/external/freetype/src/autofit/ |
afhints.c | 70 FT_Int fpos, 108 if ( edge[-1].fpos < fpos ) 113 if ( edge[-1].fpos == fpos && dir == axis->major_dir ) 123 edge->fpos = (FT_Short)fpos; 942 delta = edge->fpos - u; 951 delta = u - edge->fpos; 960 FT_Pos fpos; local [all...] |
afhints.h | 293 FT_Short fpos; /* original, unscaled position (font units) */ member in struct:AF_EdgeRec_ 409 FT_Int fpos,
|
afcjk.c | 952 dist = seg->pos - edge->fpos; 1009 edge->fpos = seg->pos; [all...] |
/external/icu4c/test/perf/normperf/ |
dtfmtrtperf.h | 167 FieldPosition fpos(0); 171 sdf->format(DATES[datidx], tzstr, 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 | 66 typedef std::fpos<state_type> pos_type;
|
/external/chromium/googleurl/base/ |
string16.h | 84 typedef std::fpos<state_type> pos_type;
|
/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);
|