OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:egptr
(Results
1 - 9
of
9
) sorted by null
/external/stlport/src/
strstream.cpp
177
if (gptr() ==
egptr
() && pptr() && pptr() >
egptr
())
180
if (gptr() !=
egptr
())
212
char* seekhigh = epptr() ? epptr() :
egptr
();
244
if (off <=
egptr
() - seeklow)
245
setg(seeklow, seeklow + __STATIC_CAST(ptrdiff_t, off),
egptr
());
fstream.cpp
48
if (__this->gptr() != __this->
egptr
()) {
/external/stlport/stlport/stl/
_sstream.c
93
// Precondition: gptr() >=
egptr
(). Returns a character, if one is available.
97
return this->gptr() != this->
egptr
()
102
// Precondition: gptr() >=
egptr
().
106
if (this->gptr() != this->
egptr
()) {
335
ptrdiff_t __n = this->
egptr
() - this->eback();
373
if (__n < 0 || __n > this->
egptr
() - this->eback())
375
this->setg(this->eback(), this->eback() + __STATIC_CAST(ptrdiff_t, __n), this->
egptr
());
_istream.c
730
if (__buf->
egptr
() != __buf->gptr())
762
this->_M_gcount = __buf->
egptr
() != __buf->gptr()
789
if (__buf->gptr() != __buf->
egptr
())
830
if (__buf->gptr() != __buf->
egptr
())
867
streamsize __n = __buf->gptr() != __buf->
egptr
()
[
all
...]
_streambuf.h
89
char_type*
egptr
() const { return _M_gend; } // End
function in class:basic_streambuf
104
char_type* _M_egptr() const { return
egptr
(); }
168
// or when gptr() >=
egptr
(). Subclasses are expected to override
_ostream.c
53
bool __any_inserted = __from->gptr() != __from->
egptr
()
77
while (__from->
egptr
() != __from->gptr()) {
78
const ptrdiff_t __avail = __from->
egptr
() - __from->gptr();
_fstream.c
137
return this->
egptr
() - this->gptr();
181
this->setg(this->
egptr
() - 1, this->
egptr
() - 1, __pback_end);
188
_M_saved_egptr = this->
egptr
();
_fstream.h
414
if (__this->gptr() != __this->
egptr
()) {
/external/zlib/contrib/iostream3/
zfstream.cc
175
if (this->gptr() && (this->gptr() < this->
egptr
()))
176
return std::streamsize(this->
egptr
() - this->gptr());
187
// to be called when gptr >=
egptr
, but it serves as error check)
188
if (this->gptr() && (this->gptr() < this->
egptr
()))
Completed in 105 milliseconds