/lvgl-latest/src/libs/thorvg/rapidjson/ |
D | fwd.h | 24 template<typename CharType> struct UTF8; 25 template<typename CharType> struct UTF16; 26 template<typename CharType> struct UTF16BE; 27 template<typename CharType> struct UTF16LE; 28 template<typename CharType> struct UTF32; 29 template<typename CharType> struct UTF32BE; 30 template<typename CharType> struct UTF32LE; 31 template<typename CharType> struct ASCII; 32 template<typename CharType> struct AutoUTF; 34 template<typename SourceEncoding, typename TargetEncoding> [all …]
|
D | stringbuffer.h | 40 template <typename Encoding, typename Allocator = CrtAllocator> 56 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() 57 void PutUnsafe(Ch c) { *stack_.template PushUnsafe<Ch>() = c; } in PutUnsafe() 63 *stack_.template Push<Ch>() = '\0'; in ShrinkToFit() 65 stack_.template Pop<Ch>(1); in ShrinkToFit() 68 void Reserve(size_t count) { stack_.template Reserve<Ch>(count); } in Reserve() 69 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push() 70 Ch* PushUnsafe(size_t count) { return stack_.template PushUnsafe<Ch>(count); } in PushUnsafe() 71 void Pop(size_t count) { stack_.template Pop<Ch>(count); } in Pop() 75 *stack_.template Push<Ch>() = '\0'; in GetString() [all …]
|
D | encodings.h | 95 template<typename CharType = char> 101 template<typename OutputStream> 123 template<typename OutputStream> 145 template <typename InputStream> 178 template <typename InputStream, typename OutputStream> 222 template <typename InputByteStream> 235 template <typename InputByteStream> 241 template <typename OutputByteStream> 249 template <typename OutputByteStream> 268 template<typename CharType = wchar_t> [all …]
|
D | memorybuffer.h | 36 template <typename Allocator = CrtAllocator> 42 void Put(Ch c) { *stack_.template Push<Ch>() = c; } in Put() 47 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); } in Push() 48 void Pop(size_t count) { stack_.template Pop<Ch>(count); } in Pop() 51 return stack_.template Bottom<Ch>(); in GetBuffer() 63 template<>
|
D | stream.h | 72 template<typename Stream> 83 template<typename Stream> 90 template<typename Stream> 96 template<typename Stream, typename Ch> 118 template <typename InputStream, typename Encoding = UTF8<> > 153 template <typename Encoding> 172 template <typename Encoding> 187 template <typename Encoding> 213 template <typename Encoding>
|
D | document.h | 65 template <typename Encoding, typename Allocator> 68 template <typename Encoding, typename Allocator, typename StackAllocator> 119 template <typename Encoding, typename Allocator> 185 template <bool Const, typename Encoding, typename Allocator> 189 template <bool, typename, typename> friend class GenericMemberIterator; 262 …template <bool Const_> bool operator==(const GenericMemberIterator<Const_, Encoding, Allocator>& t… 263 …template <bool Const_> bool operator!=(const GenericMemberIterator<Const_, Encoding, Allocator>& t… 264 …template <bool Const_> bool operator<=(const GenericMemberIterator<Const_, Encoding, Allocator>& t… 265 …template <bool Const_> bool operator>=(const GenericMemberIterator<Const_, Encoding, Allocator>& t… 266 …template <bool Const_> bool operator< (const GenericMemberIterator<Const_, Encoding, Allocator>& t… [all …]
|
D | pointer.h | 67 template <typename ValueType, typename Allocator = CrtAllocator> 264 template <typename T> 417 template<typename OutputStream> 427 template<typename OutputStream> 507 template <typename stackAllocator> 675 template <typename T> 682 template <typename stackAllocator> 688 template <typename stackAllocator> 695 template <typename stackAllocator> 705 template <typename T, typename stackAllocator> [all …]
|
D | allocators.h | 129 template <typename BaseAllocator = CrtAllocator> 424 template<typename, typename = void> 428 template<typename T> 434 template<typename T, typename A> 441 template<typename T, typename A> 447 template<typename T, typename A> 458 template <typename T, typename BaseAllocator = CrtAllocator> 482 template<typename U> 508 template<typename U> 539 template <typename ...Args> [all …]
|
D | prettywriter.h | 47 template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>,… 125 new (Base::level_stack_.template Push<typename Base::Level>()) typename Base::Level(false); in StartObject() 140 …RAPIDJSON_ASSERT(!Base::level_stack_.template Top<typename Base::Level>()->inArray); // currently … 141 …RAPIDJSON_ASSERT(0 == Base::level_stack_.template Top<typename Base::Level>()->valueCount % 2); //… 143 bool empty = Base::level_stack_.template Pop<typename Base::Level>(1)->valueCount == 0; 159 new (Base::level_stack_.template Push<typename Base::Level>()) typename Base::Level(true); in StartArray() 166 RAPIDJSON_ASSERT(Base::level_stack_.template Top<typename Base::Level>()->inArray); 167 bool empty = Base::level_stack_.template Pop<typename Base::Level>(1)->valueCount == 0; 211 typename Base::Level* level = Base::level_stack_.template Top<typename Base::Level>(); in PrettyPrefix()
|
D | writer.h | 89 template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>,… 218 new (level_stack_.template Push<Level>()) Level(false); in StartObject() 234 …RAPIDJSON_ASSERT(!level_stack_.template Top<Level>()->inArray); // currently inside an Array, not … 235 …RAPIDJSON_ASSERT(0 == level_stack_.template Top<Level>()->valueCount % 2); // Object has a Key wit… 236 level_stack_.template Pop<Level>(1); 242 new (level_stack_.template Push<Level>()) Level(true); in StartArray() 249 RAPIDJSON_ASSERT(level_stack_.template Top<Level>()->inArray); 250 level_stack_.template Pop<Level>(1); 476 Level* level = level_stack_.template Top<Level>(); in Prefix() 513 template<> [all …]
|
D | reader.h | 197 template<typename Encoding = UTF8<>, typename Derived = void> 226 template<typename Stream, int = StreamTraits<Stream>::copyOptimization> 230 template<typename Stream> 245 template<typename Stream> 265 template<typename InputStream> 505 template<> inline void SkipWhitespace(InsituStringStream& is) { in SkipWhitespace() 510 template<> inline void SkipWhitespace(StringStream& is) { in SkipWhitespace() 514 template<> inline void SkipWhitespace(EncodedInputStream<UTF8<>, MemoryStream>& is) { in SkipWhitespace() 538 template <typename SourceEncoding, typename TargetEncoding, typename StackAllocator = CrtAllocator> 558 template <unsigned parseFlags, typename InputStream, typename Handler> [all …]
|
D | schema.h | 237 template <typename ValueType, typename Allocator> 242 template <typename SchemaDocumentType> 259 template <typename SchemaType> 275 template <typename SchemaType> 335 template<typename Encoding, typename Allocator> 370 uint64_t* kv = stack_.template Pop<uint64_t>(memberCount * 2); in EndObject() 373 *stack_.template Push<uint64_t>() = h; in EndObject() 380 uint64_t* e = stack_.template Pop<uint64_t>(elementCount); in EndArray() 383 *stack_.template Push<uint64_t>() = h; in EndArray() 391 return *stack_.template Top<uint64_t>(); in GetHashCode() [all …]
|
D | encodedstream.h | 38 template <typename Encoding, typename InputByteStream> in RAPIDJSON_DIAG_OFF() 67 template <> 99 template <typename Encoding, typename OutputByteStream> 134 template <typename CharType, typename InputByteStream> 232 template <typename CharType, typename OutputByteStream>
|
/lvgl-latest/src/libs/thorvg/rapidjson/internal/ |
D | meta.h | 39 template <typename T> struct Void { typedef void Type; }; 44 template <bool Cond> struct BoolType { 56 template <bool C> struct SelectIfImpl { template <typename T1, typename T2> struct Apply { typedef … 57 template <> struct SelectIfImpl<false> { template <typename T1, typename T2> struct Apply { typedef… 58 template <bool C, typename T1, typename T2> struct SelectIfCond : SelectIfImpl<C>::template Apply<T… 59 template <typename C, typename T1, typename T2> struct SelectIf : SelectIfCond<C::Value, T1, T2> {}; 61 template <bool Cond1, bool Cond2> struct AndExprCond : FalseType {}; 62 template <> struct AndExprCond<true, true> : TrueType {}; 63 template <bool Cond1, bool Cond2> struct OrExprCond : TrueType {}; 64 template <> struct OrExprCond<false, false> : FalseType {}; [all …]
|
D | regex.h | 46 template <typename SourceStream, typename Encoding> in RAPIDJSON_DIAG_OFF() 74 template <typename Encoding, typename Allocator> in RAPIDJSON_DIAG_OFF() 109 template <typename Encoding, typename Allocator = CrtAllocator> in RAPIDJSON_DIAG_OFF() 114 template <typename, typename> friend class GenericRegexSearch; in RAPIDJSON_DIAG_OFF() 171 return states_.template Bottom<State>()[index]; in RAPIDJSON_DIAG_OFF() 176 return states_.template Bottom<State>()[index]; in RAPIDJSON_DIAG_OFF() 181 return ranges_.template Bottom<Range>()[index]; in RAPIDJSON_DIAG_OFF() 186 return ranges_.template Bottom<Range>()[index]; in RAPIDJSON_DIAG_OFF() 189 template <typename InputStream> in RAPIDJSON_DIAG_OFF() 195 *atomCountStack.template Push<unsigned>() = 0; in RAPIDJSON_DIAG_OFF() [all …]
|
D | stack.h | 36 template <typename Allocator> 115 template<typename T> 122 template<typename T> 128 template<typename T> 137 template<typename T> 144 template<typename T> 150 template<typename T> 156 template<typename T> 159 template<typename T> 162 template<typename T> [all …]
|
D | strfunc.h | 30 template <typename Ch> 38 template <> 43 template <> 54 template<typename Ch> 63 template<typename Encoding>
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgLottieExpressions.h | 46 template<typename Property, typename NumType> 61 template<typename Property> 81 template<typename Property> 104 template<typename Property> 117 template<typename Property> 159 …template<typename Property, typename NumType> bool result(TVG_UNUSED float, TVG_UNUSED NumType&, T… in result() 160 …template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Point&, LottieExpression*) { … in result() 161 …template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED RGB24&, TVG_UNUSED LottieExpr… in result() 162 …template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Fill*, TVG_UNUSED LottieExpre… in result() 163 …template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Array<PathCommand>&, TVG_UNUS… in result()
|
D | tvgLottieParser.h | 71 template<typename T> bool parseTangent(const char *key, LottieVectorFrame<T>& value); 72 template<typename T> bool parseTangent(const char *key, LottieScalarFrame<T>& value); 73 template<typename T> void parseKeyFrame(T& prop); 74 template<typename T> void parsePropertyInternal(T& prop); 75 …template<LottieProperty::Type type = LottieProperty::Type::Invalid, typename T> void parseProperty… 76 …template<LottieProperty::Type type = LottieProperty::Type::Invalid, typename T> void parseSlotProp…
|
D | tvgArray.h | 36 template<class T> 159 template<class COMPARE> 178 template<class COMPARE>
|
D | tvgFill.h | 33 template<typename T> 40 template<class T>
|
/lvgl-latest/scripts/ |
D | generate_lv_conf.py | 39 if os.path.isdir(args.template): 40 args.template = os.path.join(args.template, "lv_conf_template.h") 48 if not os.path.exists(args.template): 112 print("Template:", args.template) 119 generate_config(args.config, args.template, defaults)
|
D | changelog_gen.sh | 16 auto-changelog -t changelog-template.hbs -l false --latest-version $1 --unreleased-only --tag-patt…
|
D | cppcheck_run.sh | 3 cppcheck -j8 --template="{severity}\t{file}:{line}\t{id}: {message}" --enable=all ../src/ --output-…
|
/lvgl-latest/docs/ |
D | doc_builder.py | 251 template = '''\ variable in STRUCT 371 return self.template.format(name=self.name) 378 template = '''\ variable in UNION 401 template = '''\ variable in VARIABLE 453 return self.template.format(name=self.name) 457 template = '''\ variable in NAMESPACE 520 return self.template.format(name=self.name) 535 template = '''\ variable in GROUP 551 return self.template.format(name=self.name) 556 template = '''\ variable in FUNCTION [all …]
|