Lines Matching refs:template
9 … `Document` was used. Similarly to `std::string`, these are actually `typedef` of template classes:
14 template <typename Encoding, typename Allocator = MemoryPoolAllocator<> >
19 template <typename Encoding, typename Allocator = MemoryPoolAllocator<> >
30 User can customize these template parameters.
34 …options are `UTF8`, `UTF16`, `UTF32`. Note that, these 3 types are also template class. `UTF8<>` i…
75 template <unsigned parseFlags, typename SourceEncoding, typename InputStream>
79 template <unsigned parseFlags, typename InputStream>
83 template <typename InputStream>
87 template <unsigned parseFlags>
94 template <unsigned parseFlags, typename SourceEncoding>
98 template <unsigned parseFlags>
119 By using a non-type template parameter, instead of a function parameter, C++ compiler can generate …