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

  /external/stlport/stlport/stl/
_streambuf.h 88 char_type* gptr() const { return _M_gnext; } // Current position function in class:basic_streambuf
103 char_type* _M_gptr() const { return gptr(); }
167 // Called when there is no read position, i.e. when gptr() is null
168 // or when gptr() >= egptr(). Subclasses are expected to override
176 // Called when there is no putback position, i.e. when gptr() is null
177 // or when gptr() == eback(). All subclasses are expected to override
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_streambuf.h 88 char_type* gptr() const { return _M_gnext; } // Current position function in class:basic_streambuf
103 char_type* _M_gptr() const { return gptr(); }
167 // Called when there is no read position, i.e. when gptr() is null
168 // or when gptr() >= egptr(). Subclasses are expected to override
176 // Called when there is no putback position, i.e. when gptr() is null
177 // or when gptr() == eback(). All subclasses are expected to override
  /external/skia/src/core/
SkGlyphCache.cpp 82 SkGlyph** gptr = fGlyphArray.begin(); local
84 while (gptr < stop) {
85 SkPath* path = (*gptr)->fPath;
89 gptr += 1;
260 SkGlyph** gptr = fGlyphArray.begin(); local
266 if (gptr[mid]->fID < id) {
272 glyph = gptr[hi];
SkPaint.cpp 362 uint16_t* gptr = glyphs; local
367 *gptr++ = cache->unicharToGlyph(SkUTF8_NextUnichar(&text));
374 *gptr++ = cache->unicharToGlyph(SkUTF16_NextUnichar(&text16));
381 return gptr - glyphs;
    [all...]

Completed in 90 milliseconds