Home
last modified time | relevance | path

Searched refs:InputStream (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/
H A Dencodings.h145 template <typename InputStream>
146 static bool Decode(InputStream& is, unsigned* codepoint) { in Decode()
150 typename InputStream::Ch c = is.Take(); in Decode()
178 template <typename InputStream, typename OutputStream>
179 static bool Validate(InputStream& is, OutputStream& os) { in Validate()
306 template <typename InputStream>
307 static bool Decode(InputStream& is, unsigned* codepoint) { in Decode()
308 RAPIDJSON_STATIC_ASSERT(sizeof(typename InputStream::Ch) >= 2); in Decode()
309 typename InputStream::Ch c = is.Take(); in Decode()
324 template <typename InputStream, typename OutputStream>
[all …]
H A Dreader.h263 template<typename InputStream>
264 void SkipWhitespace(InputStream& is) { in SkipWhitespace()
265 internal::StreamLocalCopy<InputStream> copy(is); in SkipWhitespace()
266 InputStream& s(copy.s); in SkipWhitespace()
268 typename InputStream::Ch c; in SkipWhitespace()
484 template <unsigned parseFlags, typename InputStream, typename Handler>
485 ParseResult Parse(InputStream& is, Handler& handler) { in Parse()
525 template <typename InputStream, typename Handler>
526 ParseResult Parse(InputStream& is, Handler& handler) { in Parse()
559 template<unsigned parseFlags, typename InputStream>
[all …]
H A Ddocument.h2154 template <unsigned parseFlags, typename SourceEncoding, typename InputStream>
2155 GenericDocument& ParseStream(InputStream& is) {
2173 template <unsigned parseFlags, typename InputStream>
2174 GenericDocument& ParseStream(InputStream& is) {
2175 return ParseStream<parseFlags, Encoding, InputStream>(is);
2183 template <typename InputStream>
2184 GenericDocument& ParseStream(InputStream& is) {
2185 return ParseStream<kParseDefaultFlags, Encoding, InputStream>(is);
H A Dschema.h1949 typename InputStream,
1956 typedef typename InputStream::Ch Ch;
1963 …SchemaValidatingReader(InputStream& is, const SchemaDocumentType& sd) : is_(is), sd_(sd), invalidS…
1993 InputStream& is_;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/internal/
H A Dregex.h106 template <typename InputStream> in RAPIDJSON_DIAG_OFF()
107 bool Match(InputStream& is) const { in RAPIDJSON_DIAG_OFF()
116 template <typename InputStream> in RAPIDJSON_DIAG_OFF()
117 bool Search(InputStream& is) const { in RAPIDJSON_DIAG_OFF()
202 template <typename InputStream> in RAPIDJSON_DIAG_OFF()
203 void Parse(DecodedStream<InputStream>& ds) { in RAPIDJSON_DIAG_OFF()
485 template <typename InputStream> in RAPIDJSON_DIAG_OFF()
486 bool ParseUnsigned(DecodedStream<InputStream>& ds, unsigned* u) { in RAPIDJSON_DIAG_OFF()
499 template <typename InputStream> in RAPIDJSON_DIAG_OFF()
500 bool ParseRange(DecodedStream<InputStream>& ds, SizeType* range) { in RAPIDJSON_DIAG_OFF()
[all …]
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/java/com/rockchip/gpadc/demo/yolo/
H A DPostProcess.java25 import java.io.InputStream;
51 InputStream is; in loadLabelName()
/OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/java/com/rockchip/gpadc/demo/
H A DCameraPreviewActivity.java33 import java.io.InputStream;
433 InputStream ins = getResources().openRawResource(id);// 通过raw得到数据资源 in createFile()