Home
last modified time | relevance | path

Searched refs:get_line (Results 1 – 25 of 92) sorted by relevance

1234

/third_party/gstreamer/gstplugins_good/gst/deinterlace/
Dgstdeinterlacemethod.c322 get_line (LinesGetter * lg, gint field_offset, guint plane, gint line, in get_line() function
430 scanlines.tp = get_line (&lg, -1, 0, i, -1); in gst_deinterlace_simple_method_deinterlace_frame_packed()
431 scanlines.bp = get_line (&lg, -1, 0, i, 1); in gst_deinterlace_simple_method_deinterlace_frame_packed()
433 scanlines.tt0 = get_line (&lg, 0, 0, i, -2); in gst_deinterlace_simple_method_deinterlace_frame_packed()
434 scanlines.m0 = get_line (&lg, 0, 0, i, 0); in gst_deinterlace_simple_method_deinterlace_frame_packed()
435 scanlines.bb0 = get_line (&lg, 0, 0, i, 2); in gst_deinterlace_simple_method_deinterlace_frame_packed()
437 scanlines.t1 = get_line (&lg, 1, 0, i, -1); in gst_deinterlace_simple_method_deinterlace_frame_packed()
438 scanlines.b1 = get_line (&lg, 1, 0, i, 1); in gst_deinterlace_simple_method_deinterlace_frame_packed()
440 scanlines.tt2 = get_line (&lg, 2, 0, i, -2); in gst_deinterlace_simple_method_deinterlace_frame_packed()
441 scanlines.m2 = get_line (&lg, 2, 0, i, 0); in gst_deinterlace_simple_method_deinterlace_frame_packed()
[all …]
/third_party/boost/libs/metaparse/doc/
Dget_line.qbk1 [#get_line]
2 [section get_line]
7 struct get_line;
22 #include <boost/metaparse/get_line.hpp>
29 get_line<source_position<l, c, ch>>::type
35 #include <boost/metaparse/get_line.hpp>
53 get_line<
64 get_line<returns_source_position>::type::value == 11,
Dnext_char.qbk34 get_line<next_char<s, c>>
36 get_line<s>
47 #include <boost/metaparse/get_line.hpp>
84 get_line<
Dnext_line.qbk34 get_line<next_line<s, c>>
36 boost::mpl::plus<get_line<s>::type, boost::mpl::int_<1>>
47 #include <boost/metaparse/get_line.hpp>
84 get_line<
Dsource_position.qbk42 get_line<source_position<l, c, p>>::type
61 * [link get_line `get_line`]
/third_party/boost/libs/metaparse/test/
Done_char_test.hpp45 using boost::metaparse::get_line; in BOOST_METAPARSE_TEST_CASE()
73 get_line< in BOOST_METAPARSE_TEST_CASE()
85 get_line< in BOOST_METAPARSE_TEST_CASE()
95 get_line< in BOOST_METAPARSE_TEST_CASE()
Dsource_position.cpp39 using boost::metaparse::get_line; in BOOST_METAPARSE_TEST_CASE()
54 BOOST_MPL_ASSERT((equal_to<int11, get_line<sp>::type>)); in BOOST_METAPARSE_TEST_CASE()
63 BOOST_MPL_ASSERT((equal_to<int1, get_line<start>::type>)); in BOOST_METAPARSE_TEST_CASE()
72 BOOST_MPL_ASSERT((equal_to<int1, get_line<next0>::type>)); in BOOST_METAPARSE_TEST_CASE()
81 equal_to<int2, get_line<next_line<start, char_0> >::type> in BOOST_METAPARSE_TEST_CASE()
/third_party/toybox/toys/posix/
Dcomm.c52 line[i] = get_line(file[i]); in comm_main()
62 line[i] = get_line(file[i]); in comm_main()
68 line[i] = get_line(file[i]); in comm_main()
76 line[i] = get_line(file[i]); in comm_main()
/third_party/boost/boost/wave/util/
Dfile_position.hpp62 std::size_t get_line() const { return line; } in get_line() function
95 lhs.get_line() == rhs.get_line() && lhs.get_file() == rhs.get_file(); in operator ==()
102 o << pos.get_file() << ":" << pos.get_line() << ":" << pos.get_column(); in operator <<()
161 pos.set_line(pos.get_line() + 1); in next_line()
/third_party/boost/boost/wave/
Dcpp_throw.hpp37 pos.get_line(), pos.get_column(), pos.get_file().c_str())); in throw_()
52 Exception(throwmsg.c_str(), code, pos.get_line(), pos.get_column(), in throw_()
68 pos.get_line(), pos.get_column(), pos.get_file().c_str(), name)); in throw_()
84 Exception(throwmsg.c_str(), code, pos.get_line(), pos.get_column(), in throw_()
99 pos.get_line(), pos.get_column(), pos.get_file().c_str()));
114 Exception(throwmsg.c_str(), code, pos.get_line(), pos.get_column(),
130 pos.get_line(), pos.get_column(), pos.get_file().c_str(), name));
146 Exception(throwmsg.c_str(), code, pos.get_line(), pos.get_column(),
/third_party/boost/libs/wave/samples/real_positions/
Dreal_positions.cpp81 << setw(3) << right << t.get_position().get_line() << "/" in operator <<()
85 << setw(3) << right << t.get_corrected_position().get_line() << "/" in operator <<()
169 << "(" << current_position.get_line() << "): " in main()
178 << "(" << current_position.get_line() << "): " in main()
Dcorrect_token_positions.hpp93 pos.set_line(current_pos.get_line()+1); in generated_token()
101 pos.set_line(current_pos.get_line() + lines); in generated_token()
/third_party/ffmpeg/libavformat/
Dffmetadec.c78 static void get_line(AVIOContext *s, uint8_t *buf, int size) in get_line() function
106 get_line(s->pb, line, sizeof(line)); in read_chapter()
109 get_line(s->pb, line, sizeof(line)); in read_chapter()
116 get_line(s->pb, line, sizeof(line)); in read_chapter()
Dmpjpegdec.c52 static int get_line(AVIOContext *pb, char *line, int line_size) in get_line() function
138 ret = get_line(s->pb, boundary, sizeof(boundary)); in mpjpeg_read_header()
183 ret = get_line(pb, line, sizeof(line)); in parse_multipart_header()
191 ret = get_line(pb, line, sizeof(line)); in parse_multipart_header()
210 ret = get_line(pb, line, sizeof(line)); in parse_multipart_header()
/third_party/boost/libs/wave/samples/lexed_tokens/
Dlexed_tokens.cpp60 << setw(3) << right << t.get_position().get_line() << "/" in operator <<()
136 << "(" << current_position.get_line() << "): " in main()
145 << "(" << current_position.get_line() << "): " in main()
/third_party/boost/boost/metaparse/v1/
Dsource_position_tag.hpp56 typename get_line<P>::type,
69 boost::mpl::int_<get_line<P>::type::value + 1>,
/third_party/boost/boost/spirit/home/support/iterators/
Dline_pos_iterator.hpp89 inline std::size_t get_line(Iterator);
115 inline std::size_t get_line(Iterator) in get_line() function
121 inline std::size_t get_line(line_pos_iterator<Iterator> i) in get_line() function
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/calc7/
Derror_handler.hpp39 std::cout << get_line(line_start) << std::endl; in operator ()()
77 std::string get_line(Iterator err_pos) const in get_line() function
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/calc8/
Derror_handler.hpp39 std::cout << get_line(line_start) << std::endl; in operator ()()
77 std::string get_line(Iterator err_pos) const in get_line() function
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure1/
Derror_handler.hpp39 std::cout << get_line(line_start) << std::endl; in operator ()()
77 std::string get_line(Iterator err_pos) const in get_line() function
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/mini_c/
Derror_handler.hpp39 std::cout << get_line(line_start) << std::endl; in operator ()()
77 std::string get_line(Iterator err_pos) const in get_line() function
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/
Derror_handler.hpp45 std::cout << get_line(line_start) << std::endl; in operator ()()
83 std::string get_line(BaseIterator err_pos) const in get_line() function
/third_party/boost/libs/wave/samples/quick_start/
Dquick_start.cpp105 << "(" << current_position.get_line() << "): " in main()
114 << "(" << current_position.get_line() << "): " in main()
/third_party/boost/libs/wave/samples/preprocess_pragma_output/
Dpreprocess_pragma_output.cpp101 << "(" << current_position.get_line() << "): " in main()
110 << "(" << current_position.get_line() << "): " in main()
/third_party/boost/libs/spirit/example/support/utree/
Derror_handler.hpp102 using boost::spirit::get_line; in operator ()()
104 std::size_t line = get_line(err_pos); in operator ()()

1234