HomeSort by relevance Sort by last modified time
    Searched defs:fpos (Results 1 - 22 of 22) sorted by null

  /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...]
  /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...]
  /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...]
  /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/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/
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...]
dtfmttst.cpp 3014 FieldPosition fpos; local
    [all...]
  /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/svox/pico/lib/
picopal.c 360 fpos_t fpos; local
363 fgetpos((FILE *)stream,&fpos);
366 fsetpos((FILE *)stream,&fpos);
  /external/icu4c/i18n/
locdspnm.cpp 432 FieldPosition fpos; local
434 format->format(data, 2, result, fpos, status);
zstrfmt.cpp 803 FieldPosition fpos; local
809 fallbackFmt->format(params, 2, location, fpos, status);
815 regionFmt->format(params, 1, location, fpos, status);
842 FieldPosition fpos; local
846 regionFmt->format(params, 1, location, fpos, status);
975 FieldPosition fpos; local
981 fallbackFmt->format(params, 2, mzPartialLoc[mzPartialLocIdx][1], fpos, status);
    [all...]
  /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,
  /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);
  /external/srec/srec/Semproc/src/
SemanticGraphImpl.c 285 long fpos; local
328 fpos = pftell(scripts_file);
335 pfseek(scripts_file, fpos, SEEK_SET);
394 fpos = pftell(p_text_file);
412 pfseek(p_text_file, fpos, SEEK_SET);
    [all...]
  /external/qemu/
kqemu.c 380 uint32_t fpos; member in struct:fpstate
  /external/srec/srec/crec/
srec_context.c 378 long fpos; local
381 fpos = pftell(fp);
388 pfseek(fp, fpos, SEEK_SET);
921 long fpos; local
927 fpos = pftell(fp);
941 pfseek(fp, fpos, SEEK_SET);
1776 long fpos; local
    [all...]

Completed in 2605 milliseconds