Lines Matching refs:boost

55 using namespace boost::spirit;
151 …comment = lexeme_d[ (ch_p('%') >> *(~ch_p('\r') & ~ch_p('\n')) >> eol_p)[boost::bind(&PDFGramm… in definition()
153 … boolean = (str_p("true") | str_p("false"))[boost::bind(&PDFGrammar::pushBool, pSelf, _1, _2)]; in definition()
157 …r_p("stream") >> *(anychar_p - str_p("endstream")) >> str_p("endstream"))[boost::bind(&PDFGrammar:… in definition()
162 [boost::bind(&PDFGrammar::pushName, pSelf, _1, _2)] ]; in definition()
171 [boost::bind(&PDFGrammar::pushString,pSelf, _1, _2)]; in definition()
173 null_object = str_p( "null" )[boost::bind(&PDFGrammar::pushNull, pSelf, _1, _2)]; in definition()
180 )[boost::bind(&PDFGrammar::pushObjectRef, pSelf, _1, _2)]; in definition()
182 objectref = ( uint_p[boost::bind(&PDFGrammar::push_back_action_uint, pSelf, _1)] in definition()
183 >> uint_p[boost::bind(&PDFGrammar::push_back_action_uint, pSelf, _1)] in definition()
186 )[boost::bind(&PDFGrammar::pushObjectRef, pSelf, _1, _2)]; in definition()
192 [boost::bind(&PDFGrammar::pushDouble, pSelf, _1, _2)] in definition()
196 … ( real_p[boost::bind(&PDFGrammar::assign_action_double, pSelf, _1)] >> eps_p ) in definition()
197 [boost::bind(&PDFGrammar::pushDouble, pSelf, _1, _2)] in definition()
201 dict_begin = str_p( "<<" )[boost::bind(&PDFGrammar::beginDict, pSelf, _1, _2)]; in definition()
202 dict_end = str_p( ">>" )[boost::bind(&PDFGrammar::endDict, pSelf, _1, _2)]; in definition()
204 array_begin = str_p("[")[boost::bind(&PDFGrammar::beginArray,pSelf, _1, _2)]; in definition()
205 array_end = str_p("]")[boost::bind(&PDFGrammar::endArray,pSelf, _1, _2)]; in definition()
210 >> str_p("obj" )[boost::bind(&PDFGrammar::beginObject, pSelf, _1, _2)]; in definition()
212 object_begin= uint_p[boost::bind(&PDFGrammar::push_back_action_uint, pSelf, _1)] in definition()
213 >> uint_p[boost::bind(&PDFGrammar::push_back_action_uint, pSelf, _1)] in definition()
214 >> str_p("obj" )[boost::bind(&PDFGrammar::beginObject, pSelf, _1, _2)]; in definition()
216 object_end = str_p( "endobj" )[boost::bind(&PDFGrammar::endObject, pSelf, _1, _2)]; in definition()
236 trailer = str_p( "trailer" )[boost::bind(&PDFGrammar::beginTrailer,pSelf,_1,_2)] in definition()
240 >> str_p("%%EOF")[boost::bind(&PDFGrammar::endTrailer,pSelf,_1,_2)]; in definition()
250 ])[boost::bind(&PDFGrammar::haveFile,pSelf, _1, _2)] in definition()
255 … >> uint_p[boost::bind(&PDFGrammar::push_back_action_uint, pSelf, _1)] in definition()
257 … >> uint_p[boost::bind(&PDFGrammar::push_back_action_uint, pSelf, _1)] in definition()
260 ])[boost::bind(&PDFGrammar::haveFile,pSelf, _1, _2)] in definition()
561 boost::spirit::parse_info<const char*> aInfo = in read()
562 boost::spirit::parse( pBuffer, in read()
565 boost::spirit::space_p ); in read()
639 boost::spirit::parse_info< file_iterator<> > aInfo = in read()
640 boost::spirit::parse( file_start, in read()
643 boost::spirit::space_p ); in read()