Home
last modified time | relevance | path

Searched full:public (Results 1 – 25 of 14649) sorted by relevance

12345678910>>...586

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/type_traits/
H A Dis_signed.hpp79 template <class T> struct is_signed : public integral_constant<bool, boost::detail::is_signed_impl<…
83 template <class T> struct is_signed : public false_type{};
88 template <class T> struct is_signed : public integral_constant<bool, __is_signed(T)>{};
91 template <> struct is_signed<signed char> : public true_type{};
92 template <> struct is_signed<const signed char> : public true_type{};
93 template <> struct is_signed<volatile signed char> : public true_type{};
94 template <> struct is_signed<const volatile signed char> : public true_type{};
95 template <> struct is_signed<short> : public true_type{};
96 template <> struct is_signed<const short> : public true_type{};
97 template <> struct is_signed<volatile short> : public true_type{};
[all …]
H A Dis_unsigned.hpp79 template <class T> struct is_unsigned : public integral_constant<bool, boost::detail::is_unsigned<T…
83 template <class T> struct is_unsigned : public false_type{};
88 template <class T> struct is_unsigned : public integral_constant<bool, __is_unsigned(T)> {};
91 template <> struct is_unsigned<unsigned char> : public true_type{};
92 template <> struct is_unsigned<const unsigned char> : public true_type{};
93 template <> struct is_unsigned<volatile unsigned char> : public true_type{};
94 template <> struct is_unsigned<const volatile unsigned char> : public true_type{};
95 template <> struct is_unsigned<unsigned short> : public true_type{};
96 template <> struct is_unsigned<const unsigned short> : public true_type{};
97 template <> struct is_unsigned<volatile unsigned short> : public true_type{};
[all …]
H A Dis_integral.hpp19 struct is_integral : public integral_constant<bool, __is_integral(T)> {};
22 template <class T> struct is_integral : public false_type {};
23 template <class T> struct is_integral<const T> : public is_integral<T> {};
24 template <class T> struct is_integral<volatile const T> : public is_integral<T>{};
25 template <class T> struct is_integral<volatile T> : public is_integral<T>{};
30 template<> struct is_integral<unsigned char> : public true_type {};
31 template<> struct is_integral<unsigned short> : public true_type{};
32 template<> struct is_integral<unsigned int> : public true_type{};
33 template<> struct is_integral<unsigned long> : public true_type{};
35 template<> struct is_integral<signed char> : public true_type{};
[all …]
H A Dis_nothrow_move_assignable.hpp27 struct is_nothrow_move_assignable : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_ASSIGN(T)>…
28 template <class T> struct is_nothrow_move_assignable<T const> : public false_type{};
29 template <class T> struct is_nothrow_move_assignable<T volatile> : public false_type{};
30 template <class T> struct is_nothrow_move_assignable<T const volatile> : public false_type{};
31 template <class T> struct is_nothrow_move_assignable<T&> : public false_type{};
33 template <class T> struct is_nothrow_move_assignable<T&&> : public false_type{};
41 struct false_or_cpp11_noexcept_move_assignable: public ::boost::false_type {};
47 …> : public ::boost::integral_constant<bool, BOOST_NOEXCEPT_EXPR(::boost::declval<T&>() = ::boost::…
53 struct is_nothrow_move_assignable : public integral_constant<bool, ::boost::detail::false_or_cpp11_…
55 template <class T> struct is_nothrow_move_assignable<T const> : public ::boost::false_type {};
[all …]
H A Dis_assignable.hpp42 …template <class T, class U> struct is_assignable : public integral_constant<bool, sizeof(detail::i…
43 …template <class T, std::size_t N, class U> struct is_assignable<T[N], U> : public is_assignable<T,…
44 …template <class T, std::size_t N, class U> struct is_assignable<T(&)[N], U> : public is_assignable…
45 template <class T, class U> struct is_assignable<T[], U> : public is_assignable<T, U>{};
46 template <class T, class U> struct is_assignable<T(&)[], U> : public is_assignable<T&, U>{};
47 template <class U> struct is_assignable<void, U> : public integral_constant<bool, false>{};
48 template <class U> struct is_assignable<void const, U> : public integral_constant<bool, false>{};
49 …template <class U> struct is_assignable<void volatile, U> : public integral_constant<bool, false>{…
50 …template <class U> struct is_assignable<void const volatile, U> : public integral_constant<bool, f…
60 template <class T, class U> struct is_assignable : public integral_constant<bool, false>{};
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/
H A Dinteger_traits.hpp44 class integer_traits : public std::numeric_limits<T>
46 public:
54 public:
76 : public std::numeric_limits<bool>,
77 public detail::integer_traits_base<bool, false, true>
82 : public std::numeric_limits<char>,
83 public detail::integer_traits_base<char, CHAR_MIN, CHAR_MAX>
88 : public std::numeric_limits<signed char>,
89 public detail::integer_traits_base<signed char, SCHAR_MIN, SCHAR_MAX>
94 : public std::numeric_limits<unsigned char>,
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/dnn/
H A Dall_layers.hpp74 class CV_EXPORTS BlankLayer : public Layer
76 public:
83 class CV_EXPORTS ConstLayer : public Layer
85 public:
90 class CV_EXPORTS LSTMLayer : public Layer
92 public:
181 class CV_EXPORTS RNNLayer : public Layer
183 public:
210 class CV_EXPORTS BaseConvolutionLayer : public Layer
212 public:
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr1/
H A Dtype_traits7 // terms of the GNU General Public License as published by the
14 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License and
65 : public integral_constant<bool, _Value> { };
93 : public false_type { };
101 : public integral_constant<bool, (__is_void_helper<typename
107 : public false_type { };
127 : public integral_constant<bool, (__is_integral_helper<typename
133 : public false_type { };
141 : public integral_constant<bool, (__is_floating_point_helper<typename
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr1/
H A Dtype_traits7 // terms of the GNU General Public License as published by the
14 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License and
65 : public integral_constant<bool, _Value> { };
93 : public false_type { };
101 : public integral_constant<bool, (__is_void_helper<typename
107 : public false_type { };
127 : public integral_constant<bool, (__is_integral_helper<typename
133 : public false_type { };
141 : public integral_constant<bool, (__is_floating_point_helper<typename
[all …]
/OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/
H A DCC-BY-NC-ND-4.03 …provide legal services or legal advice. Distribution of Creative Commons public licenses does not …
5 Using Creative Commons Public Licenses
7public licenses provide a standard set of terms and conditions that creators and other rights hold…
9public licenses are intended for use by those authorized to give the public permission to use mate…
11public: By using one of our public licenses, a licensor grants the public permission to use the li…
13 Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License
15 …NonCommercial-NoDerivatives 4.0 International Public License ("Public License"). To the extent thi…
19 … Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the…
21 …egard to how the rights are labeled or categorized. For purposes of this Public License, the right…
27 …ic or literary work, database, or other material to which the Licensor applied this Public License.
[all …]
H A DCC-BY-4.03 …provide legal services or legal advice. Distribution of Creative Commons public licenses does not …
5 Using Creative Commons Public Licenses
7public licenses provide a standard set of terms and conditions that creators and other rights hold…
9public licenses are intended for use by those authorized to give the public permission to use mate…
11public: By using one of our public licenses, a licensor grants the public permission to use the li…
13 Creative Commons Attribution 4.0 International Public License
15 …reative Commons Attribution 4.0 International Public License ("Public License"). To the extent thi…
19 … Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the…
21 …ntributions to Adapted Material in accordance with the terms and conditions of this Public License.
23 …egard to how the rights are labeled or categorized. For purposes of this Public License, the right…
[all …]
H A DCC-BY-ND-4.03 …provide legal services or legal advice. Distribution of Creative Commons public licenses does not …
5 Using Creative Commons Public Licenses
7public licenses provide a standard set of terms and conditions that creators and other rights hold…
9public licenses are intended for use by those authorized to give the public permission to use mate…
11public: By using one of our public licenses, a licensor grants the public permission to use the li…
13 Creative Commons Attribution-NoDerivatives 4.0 International Public License
15 …s Attribution-NoDerivatives 4.0 International Public License ("Public License"). To the extent thi…
19 … Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the…
21 …egard to how the rights are labeled or categorized. For purposes of this Public License, the right…
27 …ic or literary work, database, or other material to which the Licensor applied this Public License.
[all …]
H A DCC-BY-SA-4.07 Creative Commons public licenses does not create a lawyer-client or
15 Using Creative Commons Public Licenses
17 Creative Commons public licenses provide a standard set of terms and
20 and certain other rights specified in the public license below. The
24 Considerations for licensors: Our public licenses are
25 intended for use by those authorized to give the public
31 applying our licenses so that the public can reuse the
38 Considerations for the public: By using one of our public
39 licenses, a licensor grants the public permission to use the
52 for the public:
[all …]
H A DCC-BY-NC-4.03 …provide legal services or legal advice. Distribution of Creative Commons public licenses does not …
5 Using Creative Commons Public Licenses
7public licenses provide a standard set of terms and conditions that creators and other rights hold…
9public licenses are intended for use by those authorized to give the public permission to use mate…
11public: By using one of our public licenses, a licensor grants the public permission to use the li…
13 Creative Commons Attribution-NonCommercial 4.0 International Public License
15 …s Attribution-NonCommercial 4.0 International Public License ("Public License"). To the extent thi…
19 … Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the…
21 …ntributions to Adapted Material in accordance with the terms and conditions of this Public License.
23 …egard to how the rights are labeled or categorized. For purposes of this Public License, the right…
[all …]
H A DCC-BY-NC-SA-4.03 …provide legal services or legal advice. Distribution of Creative Commons public licenses does not …
5 Using Creative Commons Public Licenses
7public licenses provide a standard set of terms and conditions that creators and other rights hold…
9public licenses are intended for use by those authorized to give the public permission to use mate…
11public: By using one of our public licenses, a licensor grants the public permission to use the li…
13 Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
15 …on-NonCommercial-ShareAlike 4.0 International Public License ("Public License"). To the extent thi…
19 … Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the…
21 …ntributions to Adapted Material in accordance with the terms and conditions of this Public License.
23 …patiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License.
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/java/com/rockchip/gpadc/demo/
H A DInferenceResult.java18 public class InferenceResult {
26 public void init(AssetManager assetManager) throws IOException { in init()
34 public void reset() { in reset()
41 public synchronized void setResult(OutputBuffer outputs) { in setResult()
58 public synchronized ArrayList<Recognition> getResult(InferenceWrapper mInferenceWrapper) { in getResult()
70 public static class OutputBuffer {
71 public byte[] mGrid0Out;
72 public byte[] mGrid1Out;
73 public byte[] mGrid2Out;
79 public static class Recognition {
[all …]
H A DImageBufferQueue.java15 public class ImageBufferQueue {
21 public ImageBufferQueue(int bufferSize, int width, int height) { in ImageBufferQueue()
32 public void release() { in release()
41 public synchronized ImageBuffer getReadyBuffer() { in getReadyBuffer()
67 public synchronized void releaseBuffer(ImageBuffer buffer) { in releaseBuffer()
71 public synchronized ImageBuffer getFreeBuffer() { in getFreeBuffer()
92 public synchronized void postBuffer(ImageBuffer buffer) { in postBuffer()
96 public class ImageBuffer {
97 static public final int STATUS_INVAILD = 0;
98 static public final int STATUS_READY = 1;
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/stitching/
H A Dwarpers.hpp57 public:
65 class PlaneWarper : public WarperCreator
67 public:
74 class AffineWarper : public WarperCreator
76 public:
83 class CylindricalWarper: public WarperCreator
85 public:
90 class SphericalWarper: public WarperCreator
92 public:
96 class FisheyeWarper : public WarperCreator
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/covered_by/
H A Dimplementation.hpp92 : public detail::covered_by::use_point_in_geometry
97 : public detail::covered_by::use_point_in_geometry
102 : public detail::within::multi_point_point
107 : public detail::within::multi_point_multi_point
114 : public detail::covered_by::use_point_in_geometry
119 : public detail::covered_by::use_point_in_geometry
124 : public detail::covered_by::use_point_in_geometry
129 : public detail::within::multi_point_single_geometry<false>
134 : public detail::within::multi_point_single_geometry<false>
139 : public detail::within::multi_point_multi_geometry<false>
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/docbook-xml/docbook-xml-dtd4/
H A Ddocbook-xml-update-catalog.xml.patch24 +<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
50 +<public publicId="-//Norman Walsh//DTD DocBk XML V4.0//EN"
54 +<public publicId="-//Norman Walsh//DTD DocBook XML V4.0//EN"
63 +<public publicId="-//Norman Walsh//ENTITIES DocBook XML Notations V4.0//EN"
66 +<public publicId="-//Norman Walsh//ENTITIES DocBook XML Character Entities V4.0//EN"
69 +<public publicId="-//Norman Walsh//ELEMENTS DocBook XML Information Pool V4.0//EN"
72 +<public publicId="-//Norman Walsh//ELEMENTS DocBook XML Document Hierarchy V4.0//EN"
75 +<public publicId="-//Norman Walsh//ENTITIES DocBook XML Additional General Entities V4.0//EN"
78 +<public publicId="-//Norman Walsh//DTD CALS Table Model XML V4.0//EN"
82 +<!-- Table Model PUBLIC "-//SGML Open//DTD Exchange Table Model 19960430//EN" -->
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/
H A Dtype_traits7 // terms of the GNU General Public License as published by the
14 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License and
106 : public false_type
111 : public _B1
116 : public conditional<_B1::value, _B1, _B2>::type
121 : public conditional<_B1::value, _B1, __or_<_B2, _B3, _Bn...>>::type
129 : public true_type
134 : public _B1
139 : public conditional<_B1::value, _B2, _B1>::type
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/
H A Dtype_traits7 // terms of the GNU General Public License as published by the
14 // GNU General Public License for more details.
20 // You should have received a copy of the GNU General Public License and
106 : public false_type
111 : public _B1
116 : public conditional<_B1::value, _B1, _B2>::type
121 : public conditional<_B1::value, _B1, __or_<_B2, _B3, _Bn...>>::type
129 : public true_type
134 : public _B1
139 : public conditional<_B1::value, _B2, _B1>::type
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/within/
H A Dimplementation.hpp115 : public detail::within::use_point_in_geometry
120 : public detail::within::use_point_in_geometry
125 : public detail::within::multi_point_point
130 : public detail::within::multi_point_multi_point
137 : public detail::within::use_point_in_geometry
142 : public detail::within::use_point_in_geometry
147 : public detail::within::use_point_in_geometry
152 : public detail::within::multi_point_single_geometry<true>
157 : public detail::within::multi_point_single_geometry<true>
162 : public detail::within::multi_point_multi_geometry<true>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapboxgl/
H A Dqmapboxglstylechange_p.h17 ** GNU Lesser General Public License Usage
19 ** General Public License version 3 as published by the Free Software
22 ** ensure the GNU Lesser General Public License version 3 requirements
25 ** GNU General Public License Usage
27 ** General Public License version 2.0 or later as published by the Free
30 ** ensure the GNU General Public License version 2.0 requirements will be
57 public:
68 class QMapboxGLStyleSetLayoutProperty : public QMapboxGLStyleChange
70 public:
87 class QMapboxGLStyleSetPaintProperty : public QMapboxGLStyleChange
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/texinfo/texinfo/
H A D0001-gnulib-Update.patch1227 - under the terms of the GNU General Public License as published
1229 + under the terms of the GNU Lesser General Public License as published
1236 - General Public License for more details.
1237 + Lesser General Public License for more details.
1239 - You should have received a copy of the GNU General Public License
1240 + You should have received a copy of the GNU Lesser General Public License
1251 - under the terms of the GNU General Public License as published
1255 + it under the terms of the GNU Lesser General Public License as
1263 - General Public License for more details.
1265 + GNU Lesser General Public License for more details.
[all …]

12345678910>>...586