Searched defs:newPos (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/awt/java/awt/font/
H A DGlyphVector.java156 * @param newPos
159 public abstract void setGlyphPosition(int glyphIndex, Point2D newPos); argument
/frameworks/base/awt/org/apache/harmony/awt/gl/font/
H A DAndroidGlyphVector.java226 public void setGlyphPosition(int glyphIndex, Point2D newPos) { argument
H A DCommonGlyphVector.java318 public void setGlyphPosition(int glyphIndex, Point2D newPos) { argument
323 float x = (float)newPos.getX();
324 float y = (float)newPos.getY();
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dmistream.h86 inline void seek (uoff_t newPos);
87 inline void iseek (const_iterator newPos);
173 /// Sets the current read position to \p newPos
174 inline void istream::seek (uoff_t newPos) argument
177 if (newPos > size())
178 throw stream_bounds_exception ("seekg", "byte", pos(), newPos - pos(), size());
180 assert (newPos <= size());
182 m_Pos = newPos;
185 /// Sets the current read position to \p newPos
186 inline void istream::iseek (const_iterator newPos) argument
[all...]
H A Dmostream.h60 inline void seek (uoff_t newPos);
61 inline void iseek (const_iterator newPos);
94 inline void SetPos (uoff_t newPos) { m_Pos = newPos; } argument
148 /// Move the write pointer to \p newPos
149 inline void ostream::seek (uoff_t newPos) argument
152 if (newPos > size())
153 throw stream_bounds_exception ("seekp", "byte", pos(), newPos - pos(), size());
155 assert (newPos <= size());
157 SetPos (newPos);
161 iseek(const_iterator newPos) argument
[all...]
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_file.c632 off_t newPos; local
656 newPos = lseek( (int)handle, (off_t)value, SEEK_SET);
657 if ( newPos == (off_t)-1 )
664 if ( newPos > sbuf.st_size )
666 availableSize -= (int)(newPos - sbuf.st_size);

Completed in 82 milliseconds