Home
last modified time | relevance | path

Searched full:chart (Results 1 – 25 of 4169) sorted by relevance

12345678910>>...167

/external/igt-gpu-tools/overlay/
Dchart.c32 #include "chart.h"
34 int chart_init(struct chart *chart, const char *name, int num_samples) in chart_init() argument
36 memset(chart, 0, sizeof(*chart)); in chart_init()
37 chart->name = name; in chart_init()
38 chart->samples = malloc(sizeof(*chart->samples)*num_samples); in chart_init()
39 if (chart->samples == NULL) in chart_init()
42 chart->num_samples = num_samples; in chart_init()
43 chart->range_automatic = 1; in chart_init()
44 chart->stroke_width = 2; in chart_init()
45 chart->smooth = CHART_CURVE; in chart_init()
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/utilities/format/format.formattable/
Dconcept.formattable.compile.pass.cpp16 // template<class T, class charT>
55 template <class T, class CharT>
58 static_assert(!std::formattable< T , CharT>); in assert_is_not_formattable()
59 static_assert(!std::formattable< T& , CharT>); in assert_is_not_formattable()
60 static_assert(!std::formattable< T&& , CharT>); in assert_is_not_formattable()
61 static_assert(!std::formattable<const T , CharT>); in assert_is_not_formattable()
62 static_assert(!std::formattable<const T& , CharT>); in assert_is_not_formattable()
63 static_assert(!std::formattable<const T&& , CharT>); in assert_is_not_formattable()
67 template <class T, class CharT>
69 // Only formatters for CharT == char || CharT == wchar_t are enabled for the in assert_is_formattable()
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/utilities/format/format.formattable/
Dconcept.formattable.compile.pass.cpp16 // template<class T, class charT>
55 template <class T, class CharT>
58 static_assert(!std::formattable< T , CharT>); in assert_is_not_formattable()
59 static_assert(!std::formattable< T& , CharT>); in assert_is_not_formattable()
60 static_assert(!std::formattable< T&& , CharT>); in assert_is_not_formattable()
61 static_assert(!std::formattable<const T , CharT>); in assert_is_not_formattable()
62 static_assert(!std::formattable<const T& , CharT>); in assert_is_not_formattable()
63 static_assert(!std::formattable<const T&& , CharT>); in assert_is_not_formattable()
67 template <class T, class CharT>
69 // Only formatters for CharT == char || CharT == wchar_t are enabled for the in assert_is_formattable()
[all …]
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/utility/impl/
Dchset_operators.ipp25 template <typename CharT>
26 inline chset<CharT>
27 operator|(chset<CharT> const& a, chset<CharT> const& b)
29 return chset<CharT>(a) |= b;
33 template <typename CharT>
34 inline chset<CharT>
35 operator-(chset<CharT> const& a, chset<CharT> const& b)
37 return chset<CharT>(a) -= b;
41 template <typename CharT>
42 inline chset<CharT>
[all …]
Dchset.ipp28 template <typename CharT>
30 detach(boost::shared_ptr<basic_chset<CharT> >& ptr)
33 ptr = boost::shared_ptr<basic_chset<CharT> >
34 (new basic_chset<CharT>(*ptr));
37 template <typename CharT>
39 detach_clear(boost::shared_ptr<basic_chset<CharT> >& ptr)
44 ptr.reset(new basic_chset<CharT>());
47 template <typename CharT, typename CharT2>
48 void construct_chset(boost::shared_ptr<basic_chset<CharT> >& ptr,
76 template <typename CharT>
[all …]
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/utility/
Dchset_operators.hpp34 template <typename CharT>
35 chset<CharT>
36 operator~(chset<CharT> const& a);
39 template <typename CharT>
40 chset<CharT>
41 operator|(chset<CharT> const& a, chset<CharT> const& b);
44 template <typename CharT>
45 chset<CharT>
46 operator&(chset<CharT> const& a, chset<CharT> const& b);
49 template <typename CharT>
[all …]
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/tree/impl/
Dtree_to_xml.ipp40 #define BOOST_SPIRIT_OSSTREAM std::basic_ostringstream<CharT>
50 template <typename CharT>
89 template <typename CharT>
91 encode (std::basic_string<CharT> &str, char s, char const *r, int len)
93 typedef typename std::basic_string<CharT>::size_type size_type;
96 while ((pos = str.find_first_of (impl::string_lit<CharT>::get(s), pos)) !=
97 size_type(std::basic_string<CharT>::npos))
99 str.replace (pos, 1, impl::string_lit<CharT>::get(r));
104 template <typename CharT>
105 inline std::basic_string<CharT>
[all …]
/external/sdv/vsomeip/third_party/boost/utility/include/boost/utility/
Dstring_ref.hpp41 template <typename charT, typename traits>
44 string_ref_traits_eq ( charT ch ) : ch_(ch) {} in string_ref_traits_eq()
45 bool operator () ( charT val ) const { return traits::eq ( ch_, val ); } in operator ()()
46 charT ch_;
50 template<typename charT, typename traits>
54 typedef charT value_type;
55 typedef const charT* pointer;
56 typedef const charT& reference;
57 typedef const charT& const_reference;
90 basic_string_ref(const charT* str) BOOST_NOEXCEPT in basic_string_ref()
[all …]
Dstring_view.hpp45 template <typename charT, typename traits>
48 string_view_traits_eq ( charT ch ) : ch_(ch) {} in string_view_traits_eq()
49 bool operator()( charT val ) const { return traits::eq (ch_, val); } in operator ()()
50 charT ch_;
54 template<typename charT, typename traits> // traits defaulted in string_view_fwd.hpp
59 typedef charT value_type;
60 typedef charT* pointer;
61 typedef const charT* const_pointer;
62 typedef charT& reference;
63 typedef const charT& const_reference;
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/time/time.cal/time.cal.month/time.cal.month.nonmembers/
Dostream.pass.cpp23 // template<class charT, class traits>
24 // basic_ostream<charT, traits>&
25 // operator<<(basic_ostream<charT, traits>& os, const month& month);
37 #define SV(S) MAKE_STRING_VIEW(CharT, S)
44 template <class CharT>
45 static std::basic_string<CharT> stream_c_locale(std::chrono::month month) { in stream_c_locale()
46 std::basic_stringstream<CharT> sstr; in stream_c_locale()
51 template <class CharT>
52 static std::basic_string<CharT> stream_fr_FR_locale(std::chrono::month month) { in stream_fr_FR_locale()
53 std::basic_stringstream<CharT> sstr; in stream_fr_FR_locale()
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/time/time.cal/time.cal.month/time.cal.month.nonmembers/
Dostream.pass.cpp23 // template<class charT, class traits>
24 // basic_ostream<charT, traits>&
25 // operator<<(basic_ostream<charT, traits>& os, const month& month);
37 #define SV(S) MAKE_STRING_VIEW(CharT, S)
44 template <class CharT>
45 static std::basic_string<CharT> stream_c_locale(std::chrono::month month) { in stream_c_locale()
46 std::basic_stringstream<CharT> sstr; in stream_c_locale()
51 template <class CharT>
52 static std::basic_string<CharT> stream_fr_FR_locale(std::chrono::month month) { in stream_fr_FR_locale()
53 std::basic_stringstream<CharT> sstr; in stream_fr_FR_locale()
[all …]
/external/cronet/tot/third_party/libc++/src/test/libcxx/input.output/string.streams/stringbuf/
Dconst_sso_buffer.pass.cpp25 template <class CharT>
26 struct test_buf : public std::basic_stringbuf<CharT> {
27 typedef std::basic_streambuf<CharT> base;
40 explicit test_buf(std::ios_base::openmode which) : std::basic_stringbuf<CharT>(which) {} in test_buf()
42 explicit test_buf(const std::basic_string<CharT>& s) : std::basic_stringbuf<CharT>(s) {} in test_buf()
44 explicit test_buf(const std::allocator<CharT>& a) : std::basic_stringbuf<CharT>(a) {} in test_buf()
45 …_buf(std::ios_base::openmode which, const std::allocator<CharT>& a) : std::basic_stringbuf<CharT>(… in test_buf()
46 explicit test_buf(std::basic_string<CharT>&& s) in test_buf()
47 : std::basic_stringbuf<CharT>(std::forward<std::basic_string<CharT>>(s)) {} in test_buf()
49 test_buf(const std::basic_string<CharT, std::char_traits<CharT>, min_allocator<CharT>>& s, in test_buf()
[all …]
/external/cronet/stable/third_party/libc++/src/test/libcxx/input.output/string.streams/stringbuf/
Dconst_sso_buffer.pass.cpp25 template <class CharT>
26 struct test_buf : public std::basic_stringbuf<CharT> {
27 typedef std::basic_streambuf<CharT> base;
40 explicit test_buf(std::ios_base::openmode which) : std::basic_stringbuf<CharT>(which) {} in test_buf()
42 explicit test_buf(const std::basic_string<CharT>& s) : std::basic_stringbuf<CharT>(s) {} in test_buf()
44 explicit test_buf(const std::allocator<CharT>& a) : std::basic_stringbuf<CharT>(a) {} in test_buf()
45 …_buf(std::ios_base::openmode which, const std::allocator<CharT>& a) : std::basic_stringbuf<CharT>(… in test_buf()
46 explicit test_buf(std::basic_string<CharT>&& s) in test_buf()
47 : std::basic_stringbuf<CharT>(std::forward<std::basic_string<CharT>>(s)) {} in test_buf()
49 test_buf(const std::basic_string<CharT, std::char_traits<CharT>, min_allocator<CharT>>& s, in test_buf()
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/strings/basic.string/string.nonmembers/string_op+/
Dstring.string_view.pass.cpp15 // template<class charT, class traits, class Allocator>
16 // constexpr basic_string<charT, traits, Allocator>
17 // operator+(const basic_string<charT, traits, Allocator>& lhs,
18 // type_identity_t<basic_string_view<charT, traits>> rhs); …
19 // template<class charT, class traits, class Allocator>
20 // constexpr basic_string<charT, traits, Allocator>
21 // operator+(basic_string<charT, traits, Allocator>&& lhs,
22 // type_identity_t<basic_string_view<charT, traits>> rhs); …
23 // template<class charT, class traits, class Allocator>
24 // constexpr basic_string<charT, traits, Allocator>
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/strings/basic.string/string.nonmembers/string_op+/
Dstring.string_view.pass.cpp15 // template<class charT, class traits, class Allocator>
16 // constexpr basic_string<charT, traits, Allocator>
17 // operator+(const basic_string<charT, traits, Allocator>& lhs,
18 // type_identity_t<basic_string_view<charT, traits>> rhs); …
19 // template<class charT, class traits, class Allocator>
20 // constexpr basic_string<charT, traits, Allocator>
21 // operator+(basic_string<charT, traits, Allocator>&& lhs,
22 // type_identity_t<basic_string_view<charT, traits>> rhs); …
23 // template<class charT, class traits, class Allocator>
24 // constexpr basic_string<charT, traits, Allocator>
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/time/time.duration/time.duration.nonmember/
Dostream.pass.cpp23 // template<class charT, class traits, class Rep, class Period>
24 // basic_ostream<charT, traits>&
25 // operator<<(basic_ostream<charT, traits>& os,
39 #define SV(S) MAKE_STRING_VIEW(CharT, S)
41 template <class CharT, class Rep, class Period>
42 static std::basic_string<CharT> stream_c_locale(std::chrono::duration<Rep, Period> duration) { in stream_c_locale()
43 std::basic_stringstream<CharT> sstr; in stream_c_locale()
49 template <class CharT, class Rep, class Period>
50 static std::basic_string<CharT> stream_fr_FR_locale(std::chrono::duration<Rep, Period> duration) { in stream_fr_FR_locale()
51 std::basic_stringstream<CharT> sstr; in stream_fr_FR_locale()
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/time/time.duration/time.duration.nonmember/
Dostream.pass.cpp23 // template<class charT, class traits, class Rep, class Period>
24 // basic_ostream<charT, traits>&
25 // operator<<(basic_ostream<charT, traits>& os,
39 #define SV(S) MAKE_STRING_VIEW(CharT, S)
41 template <class CharT, class Rep, class Period>
42 static std::basic_string<CharT> stream_c_locale(std::chrono::duration<Rep, Period> duration) { in stream_c_locale()
43 std::basic_stringstream<CharT> sstr; in stream_c_locale()
49 template <class CharT, class Rep, class Period>
50 static std::basic_string<CharT> stream_fr_FR_locale(std::chrono::duration<Rep, Period> duration) { in stream_fr_FR_locale()
51 std::basic_stringstream<CharT> sstr; in stream_fr_FR_locale()
[all …]
/external/sdv/vsomeip/third_party/boost/regex/include/boost/regex/v5/
Dcpp_regex_traits.hpp50 template <class charT>
59 template <class charT,
60 class traits = ::std::char_traits<charT> >
61 class parser_buf : public ::std::basic_streambuf<charT, traits>
63 typedef ::std::basic_streambuf<charT, traits> base_type;
71 const charT* getnext() { return this->gptr(); } in getnext()
73 std::basic_streambuf<charT, traits>* setbuf(char_type* s, streamsize n) override;
74 …typename parser_buf<charT, traits>::pos_type seekpos(pos_type sp, ::std::ios_base::openmode which)…
75 …typename parser_buf<charT, traits>::pos_type seekoff(off_type off, ::std::ios_base::seekdir way, :…
81 template<class charT, class traits>
[all …]
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/utility/impl/chset/
Dbasic_chset.ipp27 template <typename CharT>
28 inline basic_chset<CharT>::basic_chset() {}
31 template <typename CharT>
32 inline basic_chset<CharT>::basic_chset(basic_chset const& arg_)
36 template <typename CharT>
38 basic_chset<CharT>::test(CharT v) const
42 template <typename CharT>
44 basic_chset<CharT>::set(CharT from, CharT to)
45 { rr.set(utility::impl::range<CharT>(from, to)); }
48 template <typename CharT>
[all …]
/external/sdv/vsomeip/third_party/boost/date_time/include/boost/date_time/
Dtime_facet.hpp36 template <class CharT>
39 typedef CharT char_type;
71 template <class CharT>
72 const typename time_formats<CharT>::char_type
73 time_formats<CharT>::fractional_seconds_format[3] = {'%','f'};
75 template <class CharT>
76 const typename time_formats<CharT>::char_type
77 time_formats<CharT>::fractional_seconds_or_none_format[3] = {'%','F'};
79 template <class CharT>
80 const typename time_formats<CharT>::char_type
[all …]
/external/cronet/tot/third_party/libc++/src/test/std/input.output/syncstream/syncbuf/syncstream.syncbuf.assign/
Dswap.pass.cpp15 // template <class charT, class traits, class Allocator>
28 template <class CharT>
30 std::basic_stringbuf<CharT> sstr1; in test_basic()
31 std::basic_stringbuf<CharT> sstr2; in test_basic()
32 std::basic_string<CharT> expected(42, CharT('*')); // a long string in test_basic()
35 std::basic_syncbuf<CharT> sync_buf1(&sstr1); in test_basic()
36 sync_buf1.sputc(CharT('A')); // a short string in test_basic()
38 std::basic_syncbuf<CharT> sync_buf2(&sstr2); in test_basic()
60 assert(sstr1.str()[0] == CharT('A')); in test_basic()
64 template <class CharT>
[all …]
Dassign.pass.cpp15 // template <class charT, class traits, class Allocator>
75 template <class CharT, class Traits, class Allocator>
76 class syncbuf_inspector : public std::basic_syncbuf<CharT, Traits, Allocator> {
79 explicit syncbuf_inspector(std::basic_syncbuf<CharT, Traits, Allocator>&& base) in syncbuf_inspector() argument
80 : std::basic_syncbuf<CharT, Traits, Allocator>(std::move(base)) {} in syncbuf_inspector()
82 void operator=(std::basic_syncbuf<CharT, Traits, Allocator>&& base) { *this = std::move(base); } in operator =() argument
84 using std::basic_syncbuf<CharT, Traits, Allocator>::pbase;
85 using std::basic_syncbuf<CharT, Traits, Allocator>::pptr;
86 using std::basic_syncbuf<CharT, Traits, Allocator>::epptr;
89 template <class CharT>
[all …]
/external/cronet/stable/third_party/libc++/src/test/std/input.output/syncstream/syncbuf/syncstream.syncbuf.assign/
Dswap.pass.cpp15 // template <class charT, class traits, class Allocator>
28 template <class CharT>
30 std::basic_stringbuf<CharT> sstr1; in test_basic()
31 std::basic_stringbuf<CharT> sstr2; in test_basic()
32 std::basic_string<CharT> expected(42, CharT('*')); // a long string in test_basic()
35 std::basic_syncbuf<CharT> sync_buf1(&sstr1); in test_basic()
36 sync_buf1.sputc(CharT('A')); // a short string in test_basic()
38 std::basic_syncbuf<CharT> sync_buf2(&sstr2); in test_basic()
60 assert(sstr1.str()[0] == CharT('A')); in test_basic()
64 template <class CharT>
[all …]
Dassign.pass.cpp15 // template <class charT, class traits, class Allocator>
75 template <class CharT, class Traits, class Allocator>
76 class syncbuf_inspector : public std::basic_syncbuf<CharT, Traits, Allocator> {
79 explicit syncbuf_inspector(std::basic_syncbuf<CharT, Traits, Allocator>&& base) in syncbuf_inspector() argument
80 : std::basic_syncbuf<CharT, Traits, Allocator>(std::move(base)) {} in syncbuf_inspector()
82 void operator=(std::basic_syncbuf<CharT, Traits, Allocator>&& base) { *this = std::move(base); } in operator =() argument
84 using std::basic_syncbuf<CharT, Traits, Allocator>::pbase;
85 using std::basic_syncbuf<CharT, Traits, Allocator>::pptr;
86 using std::basic_syncbuf<CharT, Traits, Allocator>::epptr;
89 template <class CharT>
[all …]
/external/MPAndroidChart/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/
DPieChartActivity.java44 private PieChart chart; field in PieChartActivity
66 chart = findViewById(R.id.chart1); in onCreate()
67 chart.setUsePercentValues(true); in onCreate()
68 chart.getDescription().setEnabled(false); in onCreate()
69 chart.setExtraOffsets(5, 10, 5, 5); in onCreate()
71 chart.setDragDecelerationFrictionCoef(0.95f); in onCreate()
73 chart.setCenterTextTypeface(tfLight); in onCreate()
74 chart.setCenterText(generateCenterSpannableText()); in onCreate()
76 chart.setDrawHoleEnabled(true); in onCreate()
77 chart.setHoleColor(Color.WHITE); in onCreate()
[all …]

12345678910>>...167