/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/utility/impl/ |
D | chset_operators.ipp | 25 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 …]
|
D | chset.ipp | 28 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 …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.formattable/ |
H A D | concept.formattable.compile.pass.cpp | 15 // template<class T, class charT> 54 template <class T, class CharT> 57 static_assert(!std::formattable< T , CharT>); in assert_is_not_formattable() 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<const 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() 66 template <class T, class CharT> 68 // Only formatters for CharT == char || CharT == wchar_t are enabled for the in assert_is_formattable() [all …]
|
/aosp_15_r20/external/igt-gpu-tools/overlay/ |
H A D | chart.c | 32 #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 …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/utility/ |
D | chset_operators.hpp | 34 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 …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/tree/impl/ |
D | tree_to_xml.ipp | 40 #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 …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/date_time/include/boost/date_time/ |
D | time_facet.hpp | 36 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 …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/include/boost/regex/v5/ |
D | cpp_regex_traits.hpp | 50 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 …]
|
D | basic_regex.hpp | 44 template <class charT, class traits> 81 template <class charT> 82 name(const charT* i, const charT* j, int idx) in name() 113 template <class charT> 114 void set_name(const charT* i, const charT* j, int index) in set_name() 119 template <class charT> 120 int get_id(const charT* i, const charT* j)const in get_id() 130 template <class charT> 131 range_type equal_range(const charT* i, const charT* j)const in equal_range() 159 template <class charT, class traits> [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/utility/include/boost/utility/ |
D | string_ref.hpp | 41 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 …]
|
D | string_view.hpp | 45 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 …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/include/boost/regex/v4/ |
D | cpp_regex_traits.hpp | 69 template <class charT> 78 template <class charT, 79 class traits = ::std::char_traits<charT> > 80 class parser_buf : public ::std::basic_streambuf<charT, traits> 82 typedef ::std::basic_streambuf<charT, traits> base_type; 90 const charT* getnext() { return this->gptr(); } in getnext() 92 std::basic_streambuf<charT, traits>* setbuf(char_type* s, streamsize n) BOOST_OVERRIDE; 93 …typename parser_buf<charT, traits>::pos_type seekpos(pos_type sp, ::std::ios_base::openmode which)… 94 …typename parser_buf<charT, traits>::pos_type seekoff(off_type off, ::std::ios_base::seekdir way, :… 100 template<class charT, class traits> [all …]
|
D | basic_regex.hpp | 56 template <class charT, class traits> 88 template <class charT> 89 name(const charT* i, const charT* j, int idx) in name() 120 template <class charT> 121 void set_name(const charT* i, const charT* j, int index) in set_name() 126 template <class charT> 127 int get_id(const charT* i, const charT* j)const in get_id() 137 template <class charT> 138 range_type equal_range(const charT* i, const charT* j)const in equal_range() 166 template <class charT, class traits> [all …]
|
/aosp_15_r20/prebuilts/devtools/tools/lib/ |
HD | jfreechart-1.0.9.jar | ... jfree/chart/axis/
org/jfree/chart/block/
org/jfree/chart/demo ... |
HD | jfreechart-swt-1.0.9.jar | ... .Plot plot
org.jfree.chart.JFreeChart chart
public org.jfree.chart.ChartRenderingInfo getChartRenderingInfo ( ... |
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/time/time.duration/time.duration.nonmember/ |
H A D | ostream.pass.cpp | 23 // 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 …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/time/time.cal/time.cal.month/time.cal.month.nonmembers/ |
H A D | ostream.pass.cpp | 23 // 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 …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/input.output/syncstream/syncbuf/syncstream.syncbuf.assign/ |
H A D | assign.pass.cpp | 15 // 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 …]
|
H A D | swap.pass.cpp | 15 // 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 …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/utility/impl/chset/ |
D | basic_chset.ipp | 27 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 …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/time/time.cal/time.cal.mdlast/ |
H A D | ostream.pass.cpp | 23 // template<class charT, class traits> 24 // basic_ostream<charT, traits>& 25 // operator<<(basic_ostream<charT, traits>& os, const month_day_last& mdl); 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_day_last mdl) { 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_day_last mdl) { in stream_fr_FR_locale() 53 std::basic_stringstream<CharT> sstr; in stream_fr_FR_locale() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/date_time/include/boost/date_time/gregorian/ |
D | gregorian_io.hpp | 46 template <class CharT, class TraitsT> 47 inline std::basic_ostream<CharT, TraitsT>& 48 operator<<(std::basic_ostream<CharT, TraitsT>& os, const boost::gregorian::date& d) { in operator <<() argument 50 typedef boost::date_time::date_facet<date, CharT> custom_date_facet; in operator <<() 51 std::ostreambuf_iterator<CharT> output_itr(os); in operator <<() 71 template <class CharT, class Traits> 73 std::basic_istream<CharT, Traits>& 74 operator>>(std::basic_istream<CharT, Traits>& is, date& d) in operator >>() argument 77 typename std::basic_istream<CharT, Traits>::sentry strm_sentry(is, false); in operator >>() 80 typedef typename date_time::date_input_facet<date, CharT> date_input_facet_local; in operator >>() [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/test/regress/ |
D | test_regex_search.hpp | 43 typedef typename boost::sub_match<BidirectionalIterator>::value_type charT; in test_sub_match() typedef 47 && (test_info<charT>::match_options() & boost::match_partial)) ) in test_sub_match() 53 << " was not matched when it should have been.", charT); in test_sub_match() 63 << ", expected " << answer_table[2*i] << ".", charT); in test_sub_match() 70 << ", expected " << answer_table[1 + 2*i] << ".", charT); in test_sub_match() 98 template<class charT, class traits> 99 void test_simple_search(boost::basic_regex<charT, traits>& r) in test_simple_search() argument 101 typedef typename std::basic_string<charT>::const_iterator const_iterator; in test_simple_search() 102 const std::basic_string<charT>& search_text = test_info<charT>::search_text(); in test_simple_search() 103 boost::regex_constants::match_flag_type opts = test_info<charT>::match_options(); in test_simple_search() [all …]
|
D | test_partial_match.hpp | 35 typedef typename boost::sub_match<BidirectionalIterator>::value_type charT; in test_sub_match() typedef 39 && (test_info<charT>::match_options() & boost::match_partial)) ) in test_sub_match() 45 << " was not matched when it should have been.", charT); in test_sub_match() 55 << ", expected " << answer_table[2*i] << ".", charT); in test_sub_match() 62 << ", expected " << answer_table[1 + 2*i] << ".", charT); in test_sub_match() 79 template<class charT, class traits> 80 void test_simple_search(boost::basic_regex<charT, traits>& r) in test_simple_search() argument 82 typedef typename std::basic_string<charT>::const_iterator const_iterator; in test_simple_search() 83 const std::basic_string<charT>& search_text = test_info<charT>::search_text(); in test_simple_search() 84 boost::regex_constants::match_flag_type opts = test_info<charT>::match_options(); in test_simple_search() [all …]
|
/aosp_15_r20/external/MPAndroidChart/MPChartExample/src/main/java/com/xxmassdeveloper/mpchartexample/ |
H A D | PieChartActivity.java | 44 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 …]
|