Searched refs:parsebuf (Results 1 - 2 of 2) sorted by relevance

/haiku/headers/cpp/
H A Dparsestream.h35 // A parsebuf is a streambuf optimized for scanning text files.
43 class parsebuf : public streambuf { class in inherits:streambuf
52 parsebuf *chain;
76 parsebuf() { chain= NULL; function in class:parsebuf
81 // A string_parsebuf is a parsebuf whose source is a fixed string.
83 class string_parsebuf : public parsebuf {
114 class func_parsebuf : public parsebuf {
126 // A general_parsebuf is a parsebuf which gets its input from some
129 class general_parsebuf : public parsebuf {
/haiku/src/libs/stdc++/legacy/
H A Dparsestream.cc34 streambuf* parsebuf::setbuf(char*, int)
39 int parsebuf::tell_in_line()
44 int parsebuf::pbackfail(int c)
53 char* parsebuf::current_line() { return NULL; }
55 streampos parsebuf::seekoff(streamoff offset, _seek_dir dir, int)
82 : parsebuf()
135 : parsebuf()
212 func_parsebuf::func_parsebuf(CharReader func, void *argm) : parsebuf()
293 size_t parsebuf::line_length()
301 int parsebuf
[all...]

Completed in 33 milliseconds