/src/harfbuzz/src/hb-null.hh
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright © 2018 Google, Inc. |
3 | | * |
4 | | * This is part of HarfBuzz, a text shaping library. |
5 | | * |
6 | | * Permission is hereby granted, without written agreement and without |
7 | | * license or royalty fees, to use, copy, modify, and distribute this |
8 | | * software and its documentation for any purpose, provided that the |
9 | | * above copyright notice and the following two paragraphs appear in |
10 | | * all copies of this software. |
11 | | * |
12 | | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
13 | | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
14 | | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
15 | | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
16 | | * DAMAGE. |
17 | | * |
18 | | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
19 | | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
20 | | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
21 | | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
22 | | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
23 | | * |
24 | | * Google Author(s): Behdad Esfahbod |
25 | | */ |
26 | | |
27 | | #ifndef HB_NULL_HH |
28 | | #define HB_NULL_HH |
29 | | |
30 | | #include "hb.hh" |
31 | | #include "hb-meta.hh" |
32 | | |
33 | | |
34 | | /* |
35 | | * Static pools |
36 | | */ |
37 | | |
38 | | /* Global nul-content Null pool. Enlarge as necessary. */ |
39 | | |
40 | | #define HB_NULL_POOL_SIZE 520 |
41 | | |
42 | | template <typename T, typename> |
43 | | struct _hb_has_min_size : hb_false_type {}; |
44 | | template <typename T> |
45 | | struct _hb_has_min_size<T, hb_void_t<decltype (T::min_size)>> |
46 | | : hb_true_type {}; |
47 | | template <typename T> |
48 | | using hb_has_min_size = _hb_has_min_size<T, void>; |
49 | | #define hb_has_min_size(T) hb_has_min_size<T>::value |
50 | | |
51 | | template <typename T, typename> |
52 | | struct _hb_has_null_size : hb_false_type {}; |
53 | | template <typename T> |
54 | | struct _hb_has_null_size<T, hb_void_t<decltype (T::null_size)>> |
55 | | : hb_true_type {}; |
56 | | template <typename T> |
57 | | using hb_has_null_size = _hb_has_null_size<T, void>; |
58 | | #define hb_has_null_size(T) hb_has_null_size<T>::value |
59 | | |
60 | | /* Use SFINAE to sniff whether T has min_size; in which case return the larger |
61 | | * of sizeof(T) and T::null_size, otherwise return sizeof(T). |
62 | | * |
63 | | * The main purpose of this is to let structs communicate that they are not nullable, |
64 | | * by defining min_size but *not* null_size. */ |
65 | | |
66 | | /* The hard way... |
67 | | * https://stackoverflow.com/questions/7776448/sfinae-tried-with-bool-gives-compiler-error-template-argument-tvalue-invol |
68 | | */ |
69 | | |
70 | | template <typename T, typename> |
71 | | struct _hb_null_size : hb_integral_constant<unsigned, sizeof (T)> {}; |
72 | | template <typename T> |
73 | | struct _hb_null_size<T, hb_void_t<decltype (T::min_size)>> |
74 | | : hb_integral_constant<unsigned, |
75 | | (sizeof (T) > T::null_size ? sizeof (T) : T::null_size)> {}; |
76 | | template <typename T> |
77 | | using hb_null_size = _hb_null_size<T, void>; |
78 | | #define hb_null_size(T) hb_null_size<T>::value |
79 | | |
80 | | /* These doesn't belong here, but since is copy/paste from above, put it here. */ |
81 | | |
82 | | /* hb_static_size (T) |
83 | | * Returns T::static_size if T::min_size is defined, or sizeof (T) otherwise. */ |
84 | | |
85 | | template <typename T, typename> |
86 | | struct _hb_static_size : hb_integral_constant<unsigned, sizeof (T)> {}; |
87 | | template <typename T> |
88 | | struct _hb_static_size<T, hb_void_t<decltype (T::min_size)>> : hb_integral_constant<unsigned, T::static_size> {}; |
89 | | template <typename T> |
90 | | using hb_static_size = _hb_static_size<T, void>; |
91 | 24.3k | #define hb_static_size(T) hb_static_size<T>::value |
92 | | |
93 | | template <typename T, typename> |
94 | | struct _hb_min_size : hb_integral_constant<unsigned, sizeof (T)> {}; |
95 | | template <typename T> |
96 | | struct _hb_min_size<T, hb_void_t<decltype (T::min_size)>> : hb_integral_constant<unsigned, T::min_size> {}; |
97 | | template <typename T> |
98 | | using hb_min_size = _hb_min_size<T, void>; |
99 | 821k | #define hb_min_size(T) hb_min_size<T>::value |
100 | | |
101 | | |
102 | | /* |
103 | | * Null() |
104 | | */ |
105 | | |
106 | | extern HB_INTERNAL |
107 | | uint64_t const _hb_NullPool[(HB_NULL_POOL_SIZE + sizeof (uint64_t) - 1) / sizeof (uint64_t)]; |
108 | | |
109 | | /* Generic nul-content Null objects. */ |
110 | | template <typename Type> |
111 | | struct Null { |
112 | | static Type const & get_null () |
113 | 1.23M | { |
114 | 1.23M | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); |
115 | 1.23M | return *reinterpret_cast<Type const *> (_hb_NullPool); |
116 | 1.23M | } Null<hb_blob_t>::get_null() Line | Count | Source | 113 | 214 | { | 114 | 214 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 214 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 214 | } |
Unexecuted instantiation: Null<hb_user_data_array_t::hb_user_data_item_t>::get_null() Unexecuted instantiation: Null<hb_ot_map_t::stage_map_t>::get_null() Unexecuted instantiation: Null<unsigned long long>::get_null() Unexecuted instantiation: Null<hb_bit_page_t>::get_null() Unexecuted instantiation: Null<hb_bit_set_t::page_map_t>::get_null() Unexecuted instantiation: Null<unsigned int>::get_null() Unexecuted instantiation: Null<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>::get_null() Unexecuted instantiation: Null<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>::get_null() Unexecuted instantiation: Null<hb_serialize_context_t::object_t*>::get_null() Unexecuted instantiation: Null<hb_serialize_context_t::object_t::link_t>::get_null() Unexecuted instantiation: Null<hb_vector_t<unsigned int, false> >::get_null() Unexecuted instantiation: Null<OT::ResourceTypeRecord>::get_null() Unexecuted instantiation: Null<OT::TableRecord>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::OpenTypeOffsetTable, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: Null<OT::ResourceRecord>::get_null() Unexecuted instantiation: Null<OT::OpenTypeOffsetTable>::get_null() Unexecuted instantiation: Null<OT::CmapSubtable>::get_null() Unexecuted instantiation: Null<OT::HBGlyphID16>::get_null() Unexecuted instantiation: Null<OT::CmapSubtableFormat14>::get_null() Unexecuted instantiation: Null<OT::VariationSelectorRecord>::get_null() Unexecuted instantiation: Null<OT::DefaultUVS>::get_null() Unexecuted instantiation: Null<OT::NonDefaultUVS>::get_null() Unexecuted instantiation: Null<OT::OpenTypeFontFile>::get_null() Unexecuted instantiation: Null<OT::cmap_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::cmap>::get_null() Unexecuted instantiation: Null<OT::EncodingRecord>::get_null() Unexecuted instantiation: Null<OT::OS2>::get_null() Unexecuted instantiation: Null<OT::Layout::Common::Coverage>::get_null() Unexecuted instantiation: Null<OT::IntType<unsigned int, 3u> >::get_null() Unexecuted instantiation: Null<OT::FeatureParamsSize>::get_null() Unexecuted instantiation: Null<OT::FeatureParamsStylisticSet>::get_null() Unexecuted instantiation: Null<OT::FeatureParamsCharacterVariants>::get_null() Unexecuted instantiation: Null<OT::FeatureParams>::get_null() Null<OT::Record<OT::Feature> >::get_null() Line | Count | Source | 113 | 44 | { | 114 | 44 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 44 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 44 | } |
Null<OT::Feature>::get_null() Line | Count | Source | 113 | 44 | { | 114 | 44 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 44 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 44 | } |
Unexecuted instantiation: Null<OT::Record<OT::LangSys> >::get_null() Unexecuted instantiation: Null<hb::unique_ptr<hb_set_t> >::get_null() Null<OT::Record<OT::Script> >::get_null() Line | Count | Source | 113 | 1.02k | { | 114 | 1.02k | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 1.02k | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 1.02k | } |
Null<OT::Script>::get_null() Line | Count | Source | 113 | 1.02k | { | 114 | 1.02k | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 1.02k | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 1.02k | } |
Unexecuted instantiation: Null<OT::Offset<OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<hb_pair_t<unsigned int, unsigned int> >::get_null() Unexecuted instantiation: Null<OT::IntType<unsigned short, 2u> >::get_null() Unexecuted instantiation: Null<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>::get_null() Unexecuted instantiation: Null<OT::VarRegionList>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: Null<OT::VarData>::get_null() Unexecuted instantiation: Null<hb_inc_bimap_t>::get_null() Unexecuted instantiation: Null<Triple>::get_null() Unexecuted instantiation: Null<OT::Condition>::get_null() Unexecuted instantiation: Null<hb::shared_ptr<hb_set_t> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Condition, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: Null<OT::FeatureTableSubstitutionRecord>::get_null() Unexecuted instantiation: Null<OT::FeatureTableSubstitution>::get_null() Unexecuted instantiation: Null<OT::ConditionSet>::get_null() Unexecuted instantiation: Null<OT::FeatureVariationRecord>::get_null() Null<OT::VariationStore>::get_null() Line | Count | Source | 113 | 409k | { | 114 | 409k | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 409k | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 409k | } |
Unexecuted instantiation: Null<OT::OS2V1Tail>::get_null() Unexecuted instantiation: Null<OT::OS2V2Tail>::get_null() Unexecuted instantiation: Null<OT::OS2V5Tail>::get_null() Unexecuted instantiation: Null<OT::MVAR>::get_null() Unexecuted instantiation: Null<OT::UnicodeValueRange>::get_null() Unexecuted instantiation: Null<OT::UVSMapping>::get_null() Unexecuted instantiation: Null<OT::AxisRecord>::get_null() Unexecuted instantiation: Null<OT::fvar>::get_null() Unexecuted instantiation: Null<OT::avar>::get_null() Unexecuted instantiation: Null<int>::get_null() Unexecuted instantiation: Null<OT::TupleVariationData>::get_null() Unexecuted instantiation: Null<OT::IntType<unsigned char, 1u> >::get_null() Unexecuted instantiation: Null<OT::AxisValueMap>::get_null() Unexecuted instantiation: Null<OT::DeltaSetIndexMap>::get_null() Unexecuted instantiation: Null<OT::HBFixed<OT::IntType<int, 4u>, 16u> >::get_null() Unexecuted instantiation: Null<OT::hmtx_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::post_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::name_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::meta_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::vmtx_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::glyf_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::cff1_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::cff2_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::gvar_accelerator_t>::get_null() Null<OT::GDEF_accelerator_t>::get_null() Line | Count | Source | 113 | 18 | { | 114 | 18 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 18 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 18 | } |
Null<OT::GSUB_accelerator_t>::get_null() Line | Count | Source | 113 | 18 | { | 114 | 18 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 18 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 18 | } |
Null<OT::GPOS_accelerator_t>::get_null() Line | Count | Source | 113 | 18 | { | 114 | 18 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 18 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 18 | } |
Unexecuted instantiation: Null<OT::CBDT_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::sbix_accelerator_t>::get_null() Unexecuted instantiation: Null<OT::SVG_accelerator_t>::get_null() Unexecuted instantiation: Null<hb_set_t*>::get_null() Unexecuted instantiation: Null<OT::index_map_subset_plan_t>::get_null() Unexecuted instantiation: Null<OT::DeltaSetIndexMap const*>::get_null() Unexecuted instantiation: Null<OT::hhea>::get_null() Unexecuted instantiation: Null<OT::vhea>::get_null() Unexecuted instantiation: Null<OT::maxp>::get_null() Unexecuted instantiation: Null<OT::gvar>::get_null() Unexecuted instantiation: Null<OT::GlyphVariationData>::get_null() Unexecuted instantiation: Null<OT::contour_point_t>::get_null() Unexecuted instantiation: Null<OT::hmtxvmtx<OT::hmtx, OT::hhea, OT::HVAR> >::get_null() Unexecuted instantiation: Null<OT::hmtxvmtx<OT::vmtx, OT::vhea, OT::VVAR> >::get_null() Unexecuted instantiation: Null<OT::glyf_impl::GlyphHeader>::get_null() Unexecuted instantiation: Null<OT::head>::get_null() Unexecuted instantiation: Null<OT::loca>::get_null() Unexecuted instantiation: Null<OT::glyf>::get_null() Unexecuted instantiation: Null<OT::glyf_impl::SubsetGlyph>::get_null() Unexecuted instantiation: Null<hb_hashmap_t<unsigned int, Triple, false>::item_t>::get_null() Unexecuted instantiation: Null<hb_variation_t>::get_null() Unexecuted instantiation: Null<unsigned char>::get_null() Unexecuted instantiation: Null<CFF::number_t>::get_null() Unexecuted instantiation: Null<CFF::FDSelect>::get_null() Unexecuted instantiation: Null<CFF::FDSelect3_4_Range<OT::IntType<unsigned short, 2u>, OT::IntType<unsigned char, 1u> > >::get_null() Unexecuted instantiation: Null<CFF::Encoding1_Range>::get_null() Unexecuted instantiation: Null<CFF::SuppEncoding>::get_null() Unexecuted instantiation: Null<CFF::code_pair_t>::get_null() Unexecuted instantiation: Null<CFF::CFF1SuppEncData>::get_null() Unexecuted instantiation: Null<hb_array_t<unsigned char const> >::get_null() Unexecuted instantiation: Null<CFF::cff1_top_dict_val_t>::get_null() Unexecuted instantiation: Null<CFF::op_str_t>::get_null() Unexecuted instantiation: Null<CFF::dict_val_t>::get_null() Unexecuted instantiation: Null<CFF::cff1_font_dict_values_t>::get_null() Unexecuted instantiation: Null<OT::cff1>::get_null() Unexecuted instantiation: Null<CFF::CFFIndex<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<CFF::Charset>::get_null() Unexecuted instantiation: Null<CFF::CFF1FDArray>::get_null() Unexecuted instantiation: Null<CFF::CFF1FDSelect>::get_null() Unexecuted instantiation: Null<CFF::Encoding>::get_null() Unexecuted instantiation: Null<CFF::CFF1StringIndex>::get_null() Unexecuted instantiation: Null<CFF::Subrs<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >::get_null() Unexecuted instantiation: Null<OT::cff1::accelerator_t::gname_t>::get_null() Unexecuted instantiation: Null<CFF::CFF2FDSelect>::get_null() Unexecuted instantiation: Null<CFF::FDSelect3_4_Range<OT::IntType<unsigned int, 4u>, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<OT::cff2>::get_null() Unexecuted instantiation: Null<CFF::CFF2VariationStore>::get_null() Unexecuted instantiation: Null<CFF::CFFIndex<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: Null<CFF::Subrs<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: Null<CFF::CFF2FDArray>::get_null() Unexecuted instantiation: Null<CFF::cff2_font_dict_values_t>::get_null() Unexecuted instantiation: Null<CFF::UnsizedByteStr>::get_null() Unexecuted instantiation: Null<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >::get_null() Unexecuted instantiation: Null<AAT::FTStringRange>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::AttachPoint, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::AttachPoint>::get_null() Unexecuted instantiation: Null<OT::Device>::get_null() Unexecuted instantiation: Null<hb_pair_t<unsigned int, int> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::CaretValue, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::CaretValue>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::LigGlyph, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::LigGlyph>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned int, 4u>, true> >::get_null() Null<OT::ClassDef>::get_null() Line | Count | Source | 113 | 295 | { | 114 | 295 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 295 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 295 | } |
Unexecuted instantiation: Null<OT::AttachList>::get_null() Unexecuted instantiation: Null<OT::LigCaretList>::get_null() Unexecuted instantiation: Null<OT::MarkGlyphSets>::get_null() Null<OT::GDEF>::get_null() Line | Count | Source | 113 | 409k | { | 114 | 409k | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 409k | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 409k | } |
Unexecuted instantiation: Null<hb_set_t>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::hb_accelerate_subtables_context_t::hb_applicable_t>::get_null() Unexecuted instantiation: Null<OT::RecordListOfScript>::get_null() Unexecuted instantiation: Null<OT::RecordListOf<OT::Feature> >::get_null() Unexecuted instantiation: Null<OT::List16OfOffsetTo<OT::Lookup, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<OT::Lookup>::get_null() Null<OT::FeatureVariations>::get_null() Line | Count | Source | 113 | 409k | { | 114 | 409k | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 409k | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 409k | } |
Unexecuted instantiation: Null<OT::Layout::GPOS_impl::EntryExitRecord>::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS_impl::Anchor>::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS_impl::MarkRecord>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Rule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::Rule<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::RuleSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::ChainRule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::ChainRule<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::ChainRuleSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS_impl::PosLookupSubTable>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS_impl::MarkArray>::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS_impl::AnchorMatrix>::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS_impl::LigatureArray>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GPOS_impl::AnchorMatrix, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::LookupOffsetList<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS_impl::PosLookup>::get_null() Unexecuted instantiation: Null<OT::RecordListOfFeature>::get_null() Unexecuted instantiation: Null<OT::Layout::GPOS>::get_null() Unexecuted instantiation: Null<AAT::Anchor>::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSingle<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSingle<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSingle<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: Null<AAT::KernPair>::get_null() Unexecuted instantiation: Null<hb_aat_map_t::range_flags_t>::get_null() Unexecuted instantiation: Null<OT::IntType<short, 2u> >::get_null() Unexecuted instantiation: Null<OT::meta>::get_null() Unexecuted instantiation: Null<OT::DataMap>::get_null() Unexecuted instantiation: Null<hb_ot_meta_tag_t>::get_null() Unexecuted instantiation: Null<AAT::ltag>::get_null() Unexecuted instantiation: Null<OT::name>::get_null() Unexecuted instantiation: Null<hb_ot_name_entry_t>::get_null() Unexecuted instantiation: Null<OT::NameRecord>::get_null() Unexecuted instantiation: Null<OT::post>::get_null() Unexecuted instantiation: Null<OT::IndexSubtable>::get_null() Unexecuted instantiation: Null<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >::get_null() Unexecuted instantiation: Null<OT::IndexSubtableRecord>::get_null() Unexecuted instantiation: Null<OT::BitmapSizeTable>::get_null() Unexecuted instantiation: Null<OT::CBLC>::get_null() Unexecuted instantiation: Null<OT::CBDT>::get_null() Unexecuted instantiation: Null<OT::SBIXGlyph>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: Null<OT::sbix>::get_null() Unexecuted instantiation: Null<OT::SBIXStrike>::get_null() Unexecuted instantiation: Null<OT::sbix::accelerator_t::PNGHeader>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>::get_null() Unexecuted instantiation: Null<OT::SVG>::get_null() Unexecuted instantiation: Null<OT::SortedArrayOf<OT::SVGDocumentIndexEntry, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<OT::SVGDocumentIndexEntry>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::Layout::GSUB_impl::SubstLookupSubTable>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: Null<OT::LookupOffsetList<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::Layout::GSUB_impl::SubstLookup>::get_null() Unexecuted instantiation: Null<OT::Layout::GSUB>::get_null() Unexecuted instantiation: Null<OT::HVAR>::get_null() Unexecuted instantiation: Null<OT::VVAR>::get_null() Unexecuted instantiation: Null<OT::VORG>::get_null() Unexecuted instantiation: Null<OT::VertOriginMetric>::get_null() Unexecuted instantiation: Null<OT::COLR>::get_null() Unexecuted instantiation: Null<OT::BaseGlyphList>::get_null() Unexecuted instantiation: Null<OT::BaseGlyphPaintRecord>::get_null() Unexecuted instantiation: Null<OT::Paint>::get_null() Unexecuted instantiation: Null<OT::ClipList>::get_null() Unexecuted instantiation: Null<OT::ClipBox>::get_null() Unexecuted instantiation: Null<hb_transform_t>::get_null() Unexecuted instantiation: Null<hb_bounds_t>::get_null() Unexecuted instantiation: Null<OT::LayerList>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::Paint, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: Null<OT::ColorLine<OT::NoVariable> >::get_null() Unexecuted instantiation: Null<OT::NoVariable<OT::ColorStop> >::get_null() Unexecuted instantiation: Null<OT::ColorLine<OT::Variable> >::get_null() Unexecuted instantiation: Null<OT::Variable<OT::ColorStop> >::get_null() Unexecuted instantiation: Null<OT::NoVariable<OT::Affine2x3> >::get_null() Unexecuted instantiation: Null<OT::Variable<OT::Affine2x3> >::get_null() Unexecuted instantiation: Null<OT::BaseGlyphRecord>::get_null() Unexecuted instantiation: Null<OT::StatAxisRecord>::get_null() Unexecuted instantiation: Null<OT::AxisValueRecord>::get_null() Unexecuted instantiation: Null<OT::AxisValue>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::AxisValue, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: Null<OT::LayerRecord>::get_null() Unexecuted instantiation: Null<hb_ot_color_layer_t>::get_null() Unexecuted instantiation: Null<hb_outline_point_t>::get_null() Unexecuted instantiation: Null<OT::GaspRange>::get_null() Unexecuted instantiation: Null<hb_shape_plan_t>::get_null() Unexecuted instantiation: Null<hb_aat_layout_feature_selector_info_t>::get_null() Unexecuted instantiation: Null<hb_aat_layout_feature_type_t>::get_null() Unexecuted instantiation: Null<AAT::FeatureName>::get_null() Unexecuted instantiation: Null<AAT::TrackData>::get_null() Null<AAT::ankr>::get_null() Line | Count | Source | 113 | 9 | { | 114 | 9 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 9 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 9 | } |
Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::HBGlyphID16> >::get_null() Unexecuted instantiation: Null<hb_vector_t<hb_aat_map_t::range_flags_t, true> >::get_null() Null<AAT::morx>::get_null() Line | Count | Source | 113 | 20 | { | 114 | 20 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 20 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 20 | } |
Null<AAT::mort>::get_null() Line | Count | Source | 113 | 20 | { | 114 | 20 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 20 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 20 | } |
Null<AAT::kerx>::get_null() Line | Count | Source | 113 | 20 | { | 114 | 20 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 20 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 20 | } |
Unexecuted instantiation: Null<OT::IntType<unsigned int, 4u> >::get_null() Null<AAT::trak>::get_null() Line | Count | Source | 113 | 20 | { | 114 | 20 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 20 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 20 | } |
Unexecuted instantiation: Null<AAT::feat>::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::HBGlyphID16> >::get_null() Unexecuted instantiation: Null<AAT::LookupSingle<OT::HBGlyphID16> >::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSingle<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: Null<hb_aat_map_builder_t::feature_range_t>::get_null() Unexecuted instantiation: Null<hb_aat_map_builder_t::feature_event_t>::get_null() Unexecuted instantiation: Null<hb_aat_map_builder_t::feature_info_t>::get_null() Unexecuted instantiation: Null<CFF::call_context_t>::get_null() Unexecuted instantiation: Null<float>::get_null() Unexecuted instantiation: Null<OT::CPALV1Tail>::get_null() Unexecuted instantiation: Null<OT::CPAL>::get_null() Unexecuted instantiation: Null<OT::GSUBGPOS>::get_null() Unexecuted instantiation: Null<OT::Axis>::get_null() Unexecuted instantiation: Null<OT::BaseScriptList>::get_null() Unexecuted instantiation: Null<OT::BaseScriptRecord>::get_null() Unexecuted instantiation: Null<OT::BaseScript>::get_null() Unexecuted instantiation: Null<OT::BaseLangSysRecord>::get_null() Unexecuted instantiation: Null<OT::MinMax>::get_null() Unexecuted instantiation: Null<OT::FeatMinMaxRecord>::get_null() Unexecuted instantiation: Null<OT::BaseCoord>::get_null() Unexecuted instantiation: Null<OT::SortedArrayOf<OT::Tag, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: Null<OT::BaseValues>::get_null() Unexecuted instantiation: Null<OT::OffsetTo<OT::BaseCoord, OT::IntType<unsigned short, 2u>, true> >::get_null() Null<OT::kern>::get_null() Line | Count | Source | 113 | 19 | { | 114 | 19 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); | 115 | 19 | return *reinterpret_cast<Type const *> (_hb_NullPool); | 116 | 19 | } |
Unexecuted instantiation: Null<hb_ot_map_t::lookup_map_t>::get_null() Unexecuted instantiation: Null<OT::BASE>::get_null() Unexecuted instantiation: Null<OT::Record<OT::JstfLangSys> >::get_null() Unexecuted instantiation: Null<OT::JstfLangSys>::get_null() Unexecuted instantiation: Null<OT::Record<OT::JstfScript> >::get_null() Unexecuted instantiation: Null<OT::JstfScript>::get_null() Unexecuted instantiation: Null<AAT::OpticalBounds>::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentSingle<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSegmentArray<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: Null<AAT::LookupSingle<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: Null<hb_ot_map_builder_t::feature_info_t>::get_null() Unexecuted instantiation: Null<hb_ot_map_builder_t::stage_info_t>::get_null() Unexecuted instantiation: Null<hb_ot_map_t::feature_map_t>::get_null() Unexecuted instantiation: Null<arabic_fallback_plan_t>::get_null() Unexecuted instantiation: Null<hb_glyph_info_t>::get_null() |
117 | | }; |
118 | | template <typename QType> |
119 | | struct NullHelper |
120 | | { |
121 | | typedef hb_remove_const<hb_remove_reference<QType>> Type; |
122 | 1.23M | static const Type & get_null () { return Null<Type>::get_null (); } NullHelper<hb_blob_t>::get_null() Line | Count | Source | 122 | 214 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<hb_user_data_array_t::hb_user_data_item_t>::get_null() Unexecuted instantiation: NullHelper<hb_buffer_t>::get_null() Unexecuted instantiation: NullHelper<hb_ot_map_t::stage_map_t>::get_null() Unexecuted instantiation: NullHelper<unsigned long long>::get_null() Unexecuted instantiation: NullHelper<hb_bit_page_t>::get_null() Unexecuted instantiation: NullHelper<hb_bit_set_t::page_map_t>::get_null() Unexecuted instantiation: NullHelper<unsigned int>::get_null() Unexecuted instantiation: NullHelper<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>::get_null() Unexecuted instantiation: NullHelper<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>::get_null() Unexecuted instantiation: NullHelper<hb_serialize_context_t::object_t*>::get_null() Unexecuted instantiation: NullHelper<hb_serialize_context_t::object_t::link_t>::get_null() Unexecuted instantiation: NullHelper<hb_vector_t<unsigned int, false> >::get_null() Unexecuted instantiation: NullHelper<OT::ResourceTypeRecord>::get_null() Unexecuted instantiation: NullHelper<OT::TableRecord>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::OpenTypeOffsetTable, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::ResourceRecord>::get_null() Unexecuted instantiation: NullHelper<OT::OpenTypeOffsetTable>::get_null() Unexecuted instantiation: NullHelper<OT::CmapSubtable const>::get_null() Unexecuted instantiation: NullHelper<OT::HBGlyphID16>::get_null() Unexecuted instantiation: NullHelper<OT::CmapSubtableLongGroup>::get_null() Unexecuted instantiation: NullHelper<OT::CmapSubtableFormat14 const>::get_null() Unexecuted instantiation: NullHelper<OT::VariationSelectorRecord>::get_null() Unexecuted instantiation: NullHelper<OT::DefaultUVS>::get_null() Unexecuted instantiation: NullHelper<OT::NonDefaultUVS>::get_null() Unexecuted instantiation: NullHelper<OT::OpenTypeFontFile>::get_null() Unexecuted instantiation: NullHelper<hb_face_t>::get_null() Unexecuted instantiation: NullHelper<OT::cmap_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::cmap>::get_null() Unexecuted instantiation: NullHelper<OT::CmapSubtable>::get_null() Unexecuted instantiation: NullHelper<OT::CmapSubtableFormat14>::get_null() Unexecuted instantiation: NullHelper<OT::EncodingRecord>::get_null() Unexecuted instantiation: NullHelper<OT::OS2>::get_null() NullHelper<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> >::get_null() Line | Count | Source | 122 | 1 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::Layout::Common::Coverage>::get_null() Unexecuted instantiation: NullHelper<OT::Index>::get_null() Unexecuted instantiation: NullHelper<OT::IntType<unsigned int, 3u> >::get_null() Unexecuted instantiation: NullHelper<OT::FeatureParamsSize>::get_null() Unexecuted instantiation: NullHelper<OT::FeatureParamsStylisticSet>::get_null() Unexecuted instantiation: NullHelper<OT::FeatureParamsCharacterVariants>::get_null() Unexecuted instantiation: NullHelper<OT::FeatureParams>::get_null() NullHelper<OT::Record<OT::Feature> >::get_null() Line | Count | Source | 122 | 44 | static const Type & get_null () { return Null<Type>::get_null (); } |
NullHelper<OT::Feature>::get_null() Line | Count | Source | 122 | 44 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::Record<OT::LangSys> >::get_null() NullHelper<OT::LangSys>::get_null() Line | Count | Source | 122 | 988 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<hb::unique_ptr<hb_set_t> >::get_null() NullHelper<OT::Record<OT::Script> >::get_null() Line | Count | Source | 122 | 1.02k | static const Type & get_null () { return Null<Type>::get_null (); } |
NullHelper<OT::Script>::get_null() Line | Count | Source | 122 | 1.02k | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::Offset<OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<hb_pair_t<unsigned int, unsigned int> >::get_null() Unexecuted instantiation: NullHelper<OT::IntType<unsigned short, 2u> >::get_null() Unexecuted instantiation: NullHelper<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>::get_null() Unexecuted instantiation: NullHelper<OT::VarRegionList>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::VarData>::get_null() Unexecuted instantiation: NullHelper<hb_inc_bimap_t>::get_null() Unexecuted instantiation: NullHelper<Triple>::get_null() Unexecuted instantiation: NullHelper<OT::Condition>::get_null() Unexecuted instantiation: NullHelper<hb::shared_ptr<hb_set_t> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Condition, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::FeatureTableSubstitutionRecord>::get_null() Unexecuted instantiation: NullHelper<OT::FeatureTableSubstitution>::get_null() Unexecuted instantiation: NullHelper<OT::ConditionSet>::get_null() Unexecuted instantiation: NullHelper<OT::FeatureVariationRecord>::get_null() NullHelper<OT::VariationStore>::get_null() Line | Count | Source | 122 | 409k | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::OS2V1Tail>::get_null() Unexecuted instantiation: NullHelper<OT::OS2V2Tail>::get_null() Unexecuted instantiation: NullHelper<OT::OS2V5Tail>::get_null() Unexecuted instantiation: NullHelper<OT::MVAR>::get_null() Unexecuted instantiation: NullHelper<OT::UnicodeValueRange>::get_null() Unexecuted instantiation: NullHelper<OT::UVSMapping>::get_null() Unexecuted instantiation: NullHelper<OT::AxisRecord>::get_null() NullHelper<hb_font_t>::get_null() Line | Count | Source | 122 | 18 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::fvar>::get_null() Unexecuted instantiation: NullHelper<OT::avar>::get_null() Unexecuted instantiation: NullHelper<int>::get_null() Unexecuted instantiation: NullHelper<OT::TupleVariationData>::get_null() Unexecuted instantiation: NullHelper<OT::IntType<unsigned char, 1u> >::get_null() Unexecuted instantiation: NullHelper<OT::AxisValueMap>::get_null() Unexecuted instantiation: NullHelper<OT::DeltaSetIndexMap>::get_null() Unexecuted instantiation: NullHelper<OT::HBFixed<OT::IntType<int, 4u>, 16u> >::get_null() Unexecuted instantiation: NullHelper<OT::hmtx_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::post_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::name_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::meta_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::vmtx_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::glyf_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::cff1_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::cff2_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::gvar_accelerator_t>::get_null() NullHelper<OT::GDEF_accelerator_t>::get_null() Line | Count | Source | 122 | 18 | static const Type & get_null () { return Null<Type>::get_null (); } |
NullHelper<OT::GSUB_accelerator_t>::get_null() Line | Count | Source | 122 | 18 | static const Type & get_null () { return Null<Type>::get_null (); } |
NullHelper<OT::GPOS_accelerator_t>::get_null() Line | Count | Source | 122 | 18 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::CBDT_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::sbix_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<OT::SVG_accelerator_t>::get_null() Unexecuted instantiation: NullHelper<hb_set_t*>::get_null() Unexecuted instantiation: NullHelper<OT::index_map_subset_plan_t>::get_null() Unexecuted instantiation: NullHelper<OT::DeltaSetIndexMap const*>::get_null() Unexecuted instantiation: NullHelper<OT::hhea>::get_null() Unexecuted instantiation: NullHelper<OT::vhea>::get_null() Unexecuted instantiation: NullHelper<OT::maxp>::get_null() Unexecuted instantiation: NullHelper<OT::gvar>::get_null() Unexecuted instantiation: NullHelper<OT::GlyphVariationData>::get_null() Unexecuted instantiation: NullHelper<OT::contour_point_t>::get_null() Unexecuted instantiation: NullHelper<OT::hmtxvmtx<OT::hmtx, OT::hhea, OT::HVAR> >::get_null() Unexecuted instantiation: NullHelper<OT::hmtxvmtx<OT::vmtx, OT::vhea, OT::VVAR> >::get_null() Unexecuted instantiation: NullHelper<OT::glyf_impl::GlyphHeader>::get_null() Unexecuted instantiation: NullHelper<OT::head>::get_null() Unexecuted instantiation: NullHelper<OT::loca>::get_null() Unexecuted instantiation: NullHelper<OT::glyf>::get_null() Unexecuted instantiation: NullHelper<OT::glyf_impl::SubsetGlyph>::get_null() Unexecuted instantiation: NullHelper<hb_hashmap_t<unsigned int, Triple, false>::item_t>::get_null() Unexecuted instantiation: NullHelper<hb_variation_t>::get_null() Unexecuted instantiation: NullHelper<unsigned char>::get_null() Unexecuted instantiation: NullHelper<CFF::number_t>::get_null() Unexecuted instantiation: NullHelper<CFF::FDSelect>::get_null() Unexecuted instantiation: NullHelper<CFF::FDSelect3_4_Range<OT::IntType<unsigned short, 2u>, OT::IntType<unsigned char, 1u> > >::get_null() Unexecuted instantiation: NullHelper<CFF::Encoding1_Range>::get_null() Unexecuted instantiation: NullHelper<CFF::SuppEncoding>::get_null() Unexecuted instantiation: NullHelper<CFF::code_pair_t>::get_null() Unexecuted instantiation: NullHelper<CFF::CFF1SuppEncData>::get_null() Unexecuted instantiation: NullHelper<hb_array_t<unsigned char const> >::get_null() Unexecuted instantiation: NullHelper<CFF::cff1_top_dict_val_t>::get_null() Unexecuted instantiation: NullHelper<CFF::op_str_t>::get_null() Unexecuted instantiation: NullHelper<CFF::dict_val_t>::get_null() Unexecuted instantiation: NullHelper<CFF::cff1_font_dict_values_t>::get_null() Unexecuted instantiation: NullHelper<OT::cff1>::get_null() Unexecuted instantiation: NullHelper<CFF::CFFIndex<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<CFF::Charset>::get_null() Unexecuted instantiation: NullHelper<CFF::CFF1FDArray>::get_null() Unexecuted instantiation: NullHelper<CFF::CFF1FDSelect>::get_null() Unexecuted instantiation: NullHelper<CFF::Encoding>::get_null() Unexecuted instantiation: NullHelper<CFF::CFF1StringIndex>::get_null() Unexecuted instantiation: NullHelper<CFF::Subrs<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >::get_null() Unexecuted instantiation: NullHelper<OT::cff1::accelerator_t::gname_t>::get_null() Unexecuted instantiation: NullHelper<CFF::CFF2FDSelect>::get_null() Unexecuted instantiation: NullHelper<CFF::FDSelect3_4_Range<OT::IntType<unsigned int, 4u>, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<OT::cff2>::get_null() Unexecuted instantiation: NullHelper<CFF::CFF2VariationStore>::get_null() Unexecuted instantiation: NullHelper<CFF::CFFIndex<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: NullHelper<CFF::Subrs<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: NullHelper<CFF::CFF2FDArray>::get_null() Unexecuted instantiation: NullHelper<CFF::cff2_font_dict_values_t>::get_null() Unexecuted instantiation: NullHelper<CFF::UnsizedByteStr>::get_null() Unexecuted instantiation: NullHelper<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >::get_null() Unexecuted instantiation: NullHelper<AAT::FTStringRange>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::AttachPoint, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::AttachPoint>::get_null() Unexecuted instantiation: NullHelper<OT::Device>::get_null() Unexecuted instantiation: NullHelper<hb_pair_t<unsigned int, int> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::CaretValue, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::CaretValue>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::LigGlyph, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::LigGlyph>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned int, 4u>, true> >::get_null() NullHelper<OT::ClassDef>::get_null() Line | Count | Source | 122 | 295 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::AttachList>::get_null() Unexecuted instantiation: NullHelper<OT::LigCaretList>::get_null() Unexecuted instantiation: NullHelper<OT::MarkGlyphSets>::get_null() NullHelper<OT::GDEF>::get_null() Line | Count | Source | 122 | 409k | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<hb_set_t>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::Common::Coverage, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::hb_accelerate_subtables_context_t::hb_applicable_t>::get_null() Unexecuted instantiation: NullHelper<OT::RecordListOfScript>::get_null() Unexecuted instantiation: NullHelper<OT::RecordListOf<OT::Feature> >::get_null() Unexecuted instantiation: NullHelper<OT::List16OfOffsetTo<OT::Lookup, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<OT::Lookup>::get_null() NullHelper<OT::FeatureVariations>::get_null() Line | Count | Source | 122 | 409k | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::EntryExitRecord>::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::Anchor>::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::MarkRecord>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Rule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::Rule<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::RuleSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::ChainRule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::ChainRule<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::ChainRuleSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::PosLookupSubTable>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::MarkArray>::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::AnchorMatrix>::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::LigatureArray>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::AnchorMatrix, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::LookupOffsetList<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS_impl::PosLookup>::get_null() Unexecuted instantiation: NullHelper<OT::RecordListOfFeature>::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GPOS>::get_null() Unexecuted instantiation: NullHelper<AAT::Lookup<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null() Unexecuted instantiation: NullHelper<AAT::Anchor>::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::IntType<unsigned int, 4u> > >::get_null() Unexecuted instantiation: NullHelper<AAT::KernPair>::get_null() Unexecuted instantiation: NullHelper<hb_aat_map_t::range_flags_t>::get_null() Unexecuted instantiation: NullHelper<OT::IntType<short, 2u> >::get_null() Unexecuted instantiation: NullHelper<OT::meta>::get_null() Unexecuted instantiation: NullHelper<OT::DataMap>::get_null() Unexecuted instantiation: NullHelper<hb_ot_meta_tag_t>::get_null() Unexecuted instantiation: NullHelper<AAT::ltag>::get_null() Unexecuted instantiation: NullHelper<OT::name>::get_null() Unexecuted instantiation: NullHelper<hb_ot_name_entry_t>::get_null() Unexecuted instantiation: NullHelper<OT::NameRecord>::get_null() Unexecuted instantiation: NullHelper<OT::post>::get_null() Unexecuted instantiation: NullHelper<OT::IndexSubtable>::get_null() Unexecuted instantiation: NullHelper<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >::get_null() Unexecuted instantiation: NullHelper<OT::IndexSubtableRecord>::get_null() Unexecuted instantiation: NullHelper<OT::BitmapSizeTable>::get_null() Unexecuted instantiation: NullHelper<OT::CBLC>::get_null() Unexecuted instantiation: NullHelper<OT::CBDT>::get_null() Unexecuted instantiation: NullHelper<OT::SBIXGlyph>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::sbix>::get_null() Unexecuted instantiation: NullHelper<OT::SBIXStrike>::get_null() Unexecuted instantiation: NullHelper<OT::sbix::accelerator_t::PNGHeader>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>::get_null() Unexecuted instantiation: NullHelper<OT::SVG>::get_null() Unexecuted instantiation: NullHelper<OT::SortedArrayOf<OT::SVGDocumentIndexEntry, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<OT::SVGDocumentIndexEntry>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GSUB_impl::SubstLookupSubTable>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes> >::get_null() Unexecuted instantiation: NullHelper<OT::LookupOffsetList<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GSUB_impl::SubstLookup>::get_null() Unexecuted instantiation: NullHelper<OT::Layout::GSUB>::get_null() Unexecuted instantiation: NullHelper<OT::HVAR>::get_null() Unexecuted instantiation: NullHelper<OT::VVAR>::get_null() Unexecuted instantiation: NullHelper<OT::VORG>::get_null() Unexecuted instantiation: NullHelper<OT::VertOriginMetric>::get_null() Unexecuted instantiation: NullHelper<OT::COLR>::get_null() Unexecuted instantiation: NullHelper<OT::BaseGlyphList>::get_null() Unexecuted instantiation: NullHelper<OT::BaseGlyphPaintRecord>::get_null() Unexecuted instantiation: NullHelper<OT::Paint>::get_null() Unexecuted instantiation: NullHelper<OT::ClipList>::get_null() Unexecuted instantiation: NullHelper<OT::ClipBox>::get_null() Unexecuted instantiation: NullHelper<hb_transform_t>::get_null() Unexecuted instantiation: NullHelper<hb_bounds_t>::get_null() Unexecuted instantiation: NullHelper<OT::LayerList>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::Paint, OT::IntType<unsigned int, 4u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::ColorLine<OT::NoVariable> >::get_null() Unexecuted instantiation: NullHelper<OT::NoVariable<OT::ColorStop> >::get_null() Unexecuted instantiation: NullHelper<OT::ColorLine<OT::Variable> >::get_null() Unexecuted instantiation: NullHelper<OT::Variable<OT::ColorStop> >::get_null() Unexecuted instantiation: NullHelper<OT::NoVariable<OT::Affine2x3> >::get_null() Unexecuted instantiation: NullHelper<OT::Variable<OT::Affine2x3> >::get_null() Unexecuted instantiation: NullHelper<OT::BaseGlyphRecord>::get_null() Unexecuted instantiation: NullHelper<OT::StatAxisRecord>::get_null() Unexecuted instantiation: NullHelper<OT::AxisValueRecord>::get_null() Unexecuted instantiation: NullHelper<OT::AxisValue>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::AxisValue, OT::IntType<unsigned short, 2u>, true> >::get_null() Unexecuted instantiation: NullHelper<OT::ClipRecord>::get_null() Unexecuted instantiation: NullHelper<OT::LayerRecord>::get_null() Unexecuted instantiation: NullHelper<hb_ot_color_layer_t>::get_null() Unexecuted instantiation: NullHelper<hb_outline_point_t>::get_null() Unexecuted instantiation: NullHelper<OT::GaspRange>::get_null() Unexecuted instantiation: NullHelper<hb_shape_plan_t>::get_null() Unexecuted instantiation: NullHelper<AAT::SettingName>::get_null() Unexecuted instantiation: NullHelper<hb_aat_layout_feature_selector_info_t>::get_null() Unexecuted instantiation: NullHelper<hb_aat_layout_feature_type_t>::get_null() Unexecuted instantiation: NullHelper<AAT::FeatureName>::get_null() NullHelper<hb_unicode_funcs_t>::get_null() Line | Count | Source | 122 | 2 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<AAT::TrackData>::get_null() NullHelper<AAT::ankr>::get_null() Line | Count | Source | 122 | 9 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::HBGlyphID16> >::get_null() Unexecuted instantiation: NullHelper<hb_vector_t<hb_aat_map_t::range_flags_t, true> >::get_null() NullHelper<AAT::morx>::get_null() Line | Count | Source | 122 | 20 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<AAT::Lookup<OT::HBGlyphID16> >::get_null() NullHelper<AAT::mort>::get_null() Line | Count | Source | 122 | 20 | static const Type & get_null () { return Null<Type>::get_null (); } |
NullHelper<AAT::kerx>::get_null() Line | Count | Source | 122 | 20 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<OT::IntType<unsigned int, 4u> >::get_null() NullHelper<AAT::trak>::get_null() Line | Count | Source | 122 | 20 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<AAT::feat>::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::HBGlyphID16> >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::HBGlyphID16> >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::OffsetTo<OT::ArrayOf<AAT::WidthDeltaPair, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: NullHelper<hb_aat_map_builder_t::feature_range_t>::get_null() Unexecuted instantiation: NullHelper<hb_aat_map_builder_t::feature_event_t>::get_null() Unexecuted instantiation: NullHelper<hb_aat_map_builder_t::feature_info_t>::get_null() Unexecuted instantiation: NullHelper<hb_draw_funcs_t>::get_null() Unexecuted instantiation: NullHelper<CFF::call_context_t>::get_null() Unexecuted instantiation: NullHelper<float>::get_null() Unexecuted instantiation: NullHelper<OT::CPALV1Tail>::get_null() Unexecuted instantiation: NullHelper<OT::CPAL>::get_null() Unexecuted instantiation: NullHelper<OT::GSUBGPOS>::get_null() Unexecuted instantiation: NullHelper<OT::Axis>::get_null() Unexecuted instantiation: NullHelper<OT::BaseScriptList>::get_null() Unexecuted instantiation: NullHelper<OT::BaseScriptRecord>::get_null() Unexecuted instantiation: NullHelper<OT::BaseScript>::get_null() Unexecuted instantiation: NullHelper<OT::BaseLangSysRecord>::get_null() Unexecuted instantiation: NullHelper<OT::MinMax>::get_null() Unexecuted instantiation: NullHelper<OT::FeatMinMaxRecord>::get_null() Unexecuted instantiation: NullHelper<OT::BaseCoord>::get_null() Unexecuted instantiation: NullHelper<OT::SortedArrayOf<OT::Tag, OT::IntType<unsigned short, 2u> > >::get_null() Unexecuted instantiation: NullHelper<OT::BaseValues>::get_null() Unexecuted instantiation: NullHelper<OT::OffsetTo<OT::BaseCoord, OT::IntType<unsigned short, 2u>, true> >::get_null() NullHelper<OT::kern>::get_null() Line | Count | Source | 122 | 19 | static const Type & get_null () { return Null<Type>::get_null (); } |
Unexecuted instantiation: NullHelper<hb_ot_map_t::lookup_map_t>::get_null() Unexecuted instantiation: NullHelper<OT::BASE>::get_null() Unexecuted instantiation: NullHelper<OT::Record<OT::JstfLangSys> >::get_null() Unexecuted instantiation: NullHelper<OT::JstfLangSys>::get_null() Unexecuted instantiation: NullHelper<OT::Record<OT::JstfScript> >::get_null() Unexecuted instantiation: NullHelper<OT::JstfScript>::get_null() Unexecuted instantiation: NullHelper<AAT::OpticalBounds>::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentSingle<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSegmentArray<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: NullHelper<AAT::LookupSingle<OT::OffsetTo<AAT::OpticalBounds, OT::IntType<unsigned short, 2u>, true> > >::get_null() Unexecuted instantiation: NullHelper<hb_ot_map_builder_t::feature_info_t>::get_null() Unexecuted instantiation: NullHelper<hb_ot_map_builder_t::stage_info_t>::get_null() Unexecuted instantiation: NullHelper<hb_ot_map_t::feature_map_t>::get_null() Unexecuted instantiation: NullHelper<arabic_fallback_plan_t>::get_null() Unexecuted instantiation: NullHelper<hb_glyph_info_t>::get_null() Unexecuted instantiation: NullHelper<hb_paint_funcs_t>::get_null() |
123 | | }; |
124 | 1.23M | #define Null(Type) NullHelper<Type>::get_null () |
125 | | |
126 | | /* Specializations for arbitrary-content Null objects expressed in bytes. */ |
127 | | #define DECLARE_NULL_NAMESPACE_BYTES(Namespace, Type) \ |
128 | | } /* Close namespace. */ \ |
129 | | extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[hb_null_size (Namespace::Type)]; \ |
130 | | template <> \ |
131 | | struct Null<Namespace::Type> { \ |
132 | 988 | static Namespace::Type const & get_null () { \ |
133 | 988 | return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \ |
134 | 988 | } \ Unexecuted instantiation: Null<OT::Index>::get_null() Unexecuted instantiation: Null<OT::VarIdx>::get_null() Unexecuted instantiation: Null<OT::CmapSubtableLongGroup>::get_null() Null<OT::LangSys>::get_null() Line | Count | Source | 132 | 988 | static Namespace::Type const & get_null () { \ | 133 | 988 | return *reinterpret_cast<const Namespace::Type *> (_hb_Null_##Namespace##_##Type); \ | 134 | 988 | } \ |
Unexecuted instantiation: Null<OT::ClipRecord>::get_null() Unexecuted instantiation: Null<AAT::SettingName>::get_null() |
135 | | }; \ |
136 | | namespace Namespace { \ |
137 | | static_assert (true, "") /* Require semicolon after. */ |
138 | | #define DECLARE_NULL_NAMESPACE_BYTES_TEMPLATE1(Namespace, Type, Size) \ |
139 | | } /* Close namespace. */ \ |
140 | | extern HB_INTERNAL const unsigned char _hb_Null_##Namespace##_##Type[Size]; \ |
141 | | template <typename Spec> \ |
142 | | struct Null<Namespace::Type<Spec>> { \ |
143 | 0 | static Namespace::Type<Spec> const & get_null () { \ |
144 | 0 | return *reinterpret_cast<const Namespace::Type<Spec> *> (_hb_Null_##Namespace##_##Type); \ |
145 | 0 | } \ Unexecuted instantiation: Null<AAT::Lookup<OT::OffsetTo<OT::ArrayOf<AAT::Anchor, OT::IntType<unsigned int, 4u> >, OT::IntType<unsigned short, 2u>, false> > >::get_null() Unexecuted instantiation: Null<AAT::Lookup<OT::HBGlyphID16> >::get_null() |
146 | | }; \ |
147 | | namespace Namespace { \ |
148 | | static_assert (true, "") /* Require semicolon after. */ |
149 | | #define DEFINE_NULL_NAMESPACE_BYTES(Namespace, Type) \ |
150 | | const unsigned char _hb_Null_##Namespace##_##Type[sizeof (_hb_Null_##Namespace##_##Type)] |
151 | | |
152 | | /* Specializations for arbitrary-content Null objects expressed as struct initializer. */ |
153 | | #define DECLARE_NULL_INSTANCE(Type) \ |
154 | | extern HB_INTERNAL const Type _hb_Null_##Type; \ |
155 | | template <> \ |
156 | | struct Null<Type> { \ |
157 | 20 | static Type const & get_null () { \ |
158 | 20 | return _hb_Null_##Type; \ |
159 | 20 | } \ Unexecuted instantiation: Null<hb_buffer_t>::get_null() Null<hb_unicode_funcs_t>::get_null() Line | Count | Source | 157 | 2 | static Type const & get_null () { \ | 158 | 2 | return _hb_Null_##Type; \ | 159 | 2 | } \ |
Unexecuted instantiation: Null<hb_face_t>::get_null() Unexecuted instantiation: Null<hb_font_funcs_t>::get_null() Null<hb_font_t>::get_null() Line | Count | Source | 157 | 18 | static Type const & get_null () { \ | 158 | 18 | return _hb_Null_##Type; \ | 159 | 18 | } \ |
Unexecuted instantiation: Null<hb_draw_funcs_t>::get_null() Unexecuted instantiation: Null<hb_paint_funcs_t>::get_null() |
160 | | }; \ |
161 | | static_assert (true, "") /* Require semicolon after. */ |
162 | | #define DEFINE_NULL_INSTANCE(Type) \ |
163 | | const Type _hb_Null_##Type |
164 | | |
165 | | /* Global writable pool. Enlarge as necessary. */ |
166 | | |
167 | | /* To be fully correct, CrapPool must be thread_local. However, we do not rely on CrapPool |
168 | | * for correct operation. It only exist to catch and divert program logic bugs instead of |
169 | | * causing bad memory access. So, races there are not actually introducing incorrectness |
170 | | * in the code. Has ~12kb binary size overhead to have it, also clang build fails with it. */ |
171 | | extern HB_INTERNAL |
172 | | /*thread_local*/ uint64_t _hb_CrapPool[(HB_NULL_POOL_SIZE + sizeof (uint64_t) - 1) / sizeof (uint64_t)]; |
173 | | |
174 | | /* CRAP pool: Common Region for Access Protection. */ |
175 | | template <typename Type> |
176 | 0 | static inline Type& Crap () { |
177 | 0 | static_assert (hb_null_size (Type) <= HB_NULL_POOL_SIZE, "Increase HB_NULL_POOL_SIZE."); |
178 | 0 | Type *obj = reinterpret_cast<Type *> (_hb_CrapPool); |
179 | 0 | memcpy (obj, &Null (Type), sizeof (*obj)); |
180 | 0 | return *obj; |
181 | 0 | } Unexecuted instantiation: hb-blob.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-buffer.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-buffer.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-buffer.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-buffer.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-buffer.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-buffer.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-buffer.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-buffer.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-common.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-face.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-face.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-face.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-face.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-face.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-face.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-face.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-face.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-face.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-face.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-face.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-face.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-face.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-face.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-face.cc:OT::VariationSelectorRecord& Crap<OT::VariationSelectorRecord>() Unexecuted instantiation: hb-fallback-shape.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-font.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-font.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-font.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-font.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-font.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-font.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-font.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-font.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-font.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-font.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-font.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-font.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-font.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-font.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-font.cc:int& Crap<int>() Unexecuted instantiation: hb-number.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-face.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-face.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-face.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-face.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-face.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-face.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-face.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-face.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-face.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-face.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-face.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-face.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-face.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-face.cc:OT::VariationSelectorRecord& Crap<OT::VariationSelectorRecord>() Unexecuted instantiation: hb-ot-face.cc:hb_set_t*& Crap<hb_set_t*>() Unexecuted instantiation: hb-ot-face.cc:OT::index_map_subset_plan_t& Crap<OT::index_map_subset_plan_t>() Unexecuted instantiation: hb-ot-face.cc:OT::DeltaSetIndexMap const*& Crap<OT::DeltaSetIndexMap const*>() Unexecuted instantiation: hb-ot-face.cc:OT::contour_point_t& Crap<OT::contour_point_t>() Unexecuted instantiation: hb-ot-face.cc:int& Crap<int>() Unexecuted instantiation: hb-ot-face.cc:OT::glyf_impl::SubsetGlyph& Crap<OT::glyf_impl::SubsetGlyph>() Unexecuted instantiation: hb-ot-face.cc:hb_hashmap_t<unsigned int, Triple, false>::item_t& Crap<hb_hashmap_t<unsigned int, Triple, false>::item_t>() Unexecuted instantiation: hb-ot-face.cc:hb_variation_t& Crap<hb_variation_t>() Unexecuted instantiation: hb-ot-face.cc:CFF::number_t& Crap<CFF::number_t>() Unexecuted instantiation: hb-ot-face.cc:OT::IntType<unsigned char, 1u>& Crap<OT::IntType<unsigned char, 1u> >() Unexecuted instantiation: hb-ot-face.cc:CFF::Encoding1_Range& Crap<CFF::Encoding1_Range>() Unexecuted instantiation: hb-ot-face.cc:CFF::SuppEncoding& Crap<CFF::SuppEncoding>() Unexecuted instantiation: hb-ot-face.cc:CFF::cff1_top_dict_val_t& Crap<CFF::cff1_top_dict_val_t>() Unexecuted instantiation: hb-ot-face.cc:CFF::op_str_t& Crap<CFF::op_str_t>() Unexecuted instantiation: hb-ot-face.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>() Unexecuted instantiation: hb-ot-face.cc:CFF::cff1_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >() Unexecuted instantiation: hb-ot-face.cc:CFF::cff1_font_dict_values_t& Crap<CFF::cff1_font_dict_values_t>() Unexecuted instantiation: hb-ot-face.cc:OT::cff1::accelerator_t::gname_t& Crap<OT::cff1::accelerator_t::gname_t>() Unexecuted instantiation: hb-ot-face.cc:CFF::cff2_font_dict_values_t& Crap<CFF::cff2_font_dict_values_t>() Unexecuted instantiation: hb-ot-face.cc:CFF::cff2_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >() Unexecuted instantiation: hb-ot-face.cc:hb_set_t& Crap<hb_set_t>() Unexecuted instantiation: hb-ot-face.cc:hb_ot_meta_tag_t& Crap<hb_ot_meta_tag_t>() Unexecuted instantiation: hb-ot-face.cc:hb_ot_name_entry_t& Crap<hb_ot_name_entry_t>() Unexecuted instantiation: hb-ot-face.cc:hb_pair_t<unsigned int, OT::IndexSubtableRecord const*>& Crap<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >() Unexecuted instantiation: hb-ot-face.cc:OT::IndexSubtableRecord& Crap<OT::IndexSubtableRecord>() Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*& Crap<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>() Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-face.cc:OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-font.cc:OT::contour_point_t& Crap<OT::contour_point_t>() Unexecuted instantiation: hb-ot-font.cc:int& Crap<int>() Unexecuted instantiation: hb-ot-font.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-font.cc:CFF::number_t& Crap<CFF::number_t>() Unexecuted instantiation: hb-ot-font.cc:CFF::cff1_top_dict_val_t& Crap<CFF::cff1_top_dict_val_t>() Unexecuted instantiation: hb-ot-font.cc:CFF::cff1_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >() Unexecuted instantiation: hb-ot-font.cc:CFF::cff1_font_dict_values_t& Crap<CFF::cff1_font_dict_values_t>() Unexecuted instantiation: hb-ot-font.cc:CFF::op_str_t& Crap<CFF::op_str_t>() Unexecuted instantiation: hb-ot-font.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>() Unexecuted instantiation: hb-ot-font.cc:CFF::cff2_font_dict_values_t& Crap<CFF::cff2_font_dict_values_t>() Unexecuted instantiation: hb-ot-font.cc:CFF::cff2_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >() Unexecuted instantiation: hb-ot-font.cc:hb_transform_t& Crap<hb_transform_t>() Unexecuted instantiation: hb-ot-font.cc:hb_bounds_t& Crap<hb_bounds_t>() Unexecuted instantiation: hb-ot-font.cc:OT::cff1::accelerator_t::gname_t& Crap<OT::cff1::accelerator_t::gname_t>() Unexecuted instantiation: hb-ot-font.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-font.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-font.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-font.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-font.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-font.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-font.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-font.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-font.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-font.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-font.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-font.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-font.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-font.cc:OT::VariationSelectorRecord& Crap<OT::VariationSelectorRecord>() Unexecuted instantiation: hb-ot-font.cc:hb_set_t*& Crap<hb_set_t*>() Unexecuted instantiation: hb-ot-font.cc:OT::index_map_subset_plan_t& Crap<OT::index_map_subset_plan_t>() Unexecuted instantiation: hb-ot-font.cc:OT::DeltaSetIndexMap const*& Crap<OT::DeltaSetIndexMap const*>() Unexecuted instantiation: hb-ot-font.cc:OT::glyf_impl::SubsetGlyph& Crap<OT::glyf_impl::SubsetGlyph>() Unexecuted instantiation: hb-ot-font.cc:hb_hashmap_t<unsigned int, Triple, false>::item_t& Crap<hb_hashmap_t<unsigned int, Triple, false>::item_t>() Unexecuted instantiation: hb-ot-font.cc:hb_variation_t& Crap<hb_variation_t>() Unexecuted instantiation: hb-ot-font.cc:OT::IntType<unsigned char, 1u>& Crap<OT::IntType<unsigned char, 1u> >() Unexecuted instantiation: hb-ot-font.cc:CFF::Encoding1_Range& Crap<CFF::Encoding1_Range>() Unexecuted instantiation: hb-ot-font.cc:CFF::SuppEncoding& Crap<CFF::SuppEncoding>() Unexecuted instantiation: hb-ot-font.cc:hb_pair_t<unsigned int, OT::IndexSubtableRecord const*>& Crap<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >() Unexecuted instantiation: hb-ot-font.cc:OT::IndexSubtableRecord& Crap<OT::IndexSubtableRecord>() Unexecuted instantiation: hb-ot-font.cc:hb_ot_color_layer_t& Crap<hb_ot_color_layer_t>() Unexecuted instantiation: hb-ot-font.cc:OT::LayerRecord& Crap<OT::LayerRecord>() Unexecuted instantiation: hb-ot-font.cc:OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*& Crap<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>() Unexecuted instantiation: hb-outline.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-outline.cc:hb_outline_point_t& Crap<hb_outline_point_t>() Unexecuted instantiation: hb-outline.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-metrics.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-metrics.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-metrics.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-metrics.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-metrics.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-metrics.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-metrics.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-metrics.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-metrics.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-metrics.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-metrics.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-metrics.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-metrics.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-metrics.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-metrics.cc:int& Crap<int>() Unexecuted instantiation: hb-ot-metrics.cc:hb_set_t*& Crap<hb_set_t*>() Unexecuted instantiation: hb-ot-metrics.cc:OT::index_map_subset_plan_t& Crap<OT::index_map_subset_plan_t>() Unexecuted instantiation: hb-ot-metrics.cc:OT::DeltaSetIndexMap const*& Crap<OT::DeltaSetIndexMap const*>() Unexecuted instantiation: hb-ot-shape.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shape.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shape.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shape.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shape.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shape.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shape.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shape.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-var.cc:int& Crap<int>() Unexecuted instantiation: hb-ot-var.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-var.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-var.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-var.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-var.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-var.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-var.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-var.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-var.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-var.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-var.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-var.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-var.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-var.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-set.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-set.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-set.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-set.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-shape-plan.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-shape.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-shaper.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-static.cc:OT::contour_point_t& Crap<OT::contour_point_t>() Unexecuted instantiation: hb-static.cc:int& Crap<int>() Unexecuted instantiation: hb-static.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-static.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-static.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-static.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-static.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-static.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-static.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-static.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-static.cc:hb_aat_layout_feature_selector_info_t& Crap<hb_aat_layout_feature_selector_info_t>() Unexecuted instantiation: hb-static.cc:hb_aat_layout_feature_type_t& Crap<hb_aat_layout_feature_type_t>() Unexecuted instantiation: hb-static.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-static.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-static.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-static.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-static.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-static.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-static.cc:OT::VariationSelectorRecord& Crap<OT::VariationSelectorRecord>() Unexecuted instantiation: hb-static.cc:hb_transform_t& Crap<hb_transform_t>() Unexecuted instantiation: hb-static.cc:hb_bounds_t& Crap<hb_bounds_t>() Unexecuted instantiation: hb-static.cc:hb_ot_color_layer_t& Crap<hb_ot_color_layer_t>() Unexecuted instantiation: hb-static.cc:OT::LayerRecord& Crap<OT::LayerRecord>() Unexecuted instantiation: hb-static.cc:hb_set_t*& Crap<hb_set_t*>() Unexecuted instantiation: hb-static.cc:OT::index_map_subset_plan_t& Crap<OT::index_map_subset_plan_t>() Unexecuted instantiation: hb-static.cc:OT::DeltaSetIndexMap const*& Crap<OT::DeltaSetIndexMap const*>() Unexecuted instantiation: hb-static.cc:OT::glyf_impl::SubsetGlyph& Crap<OT::glyf_impl::SubsetGlyph>() Unexecuted instantiation: hb-static.cc:hb_hashmap_t<unsigned int, Triple, false>::item_t& Crap<hb_hashmap_t<unsigned int, Triple, false>::item_t>() Unexecuted instantiation: hb-static.cc:hb_variation_t& Crap<hb_variation_t>() Unexecuted instantiation: hb-unicode.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-aat-layout.cc:hb_aat_layout_feature_type_t& Crap<hb_aat_layout_feature_type_t>() Unexecuted instantiation: hb-aat-layout.cc:hb_aat_layout_feature_selector_info_t& Crap<hb_aat_layout_feature_selector_info_t>() Unexecuted instantiation: hb-aat-layout.cc:hb_vector_t<hb_aat_map_t::range_flags_t, true>& Crap<hb_vector_t<hb_aat_map_t::range_flags_t, true> >() Unexecuted instantiation: hb-aat-layout.cc:hb_aat_map_t::range_flags_t& Crap<hb_aat_map_t::range_flags_t>() Unexecuted instantiation: hb-aat-layout.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-aat-layout.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-aat-layout.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-aat-layout.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-aat-layout.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-aat-layout.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-aat-layout.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-aat-layout.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-aat-layout.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-aat-layout.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-aat-layout.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-aat-layout.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-aat-layout.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-aat-layout.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-aat-layout.cc:int& Crap<int>() Unexecuted instantiation: hb-aat-layout.cc:hb_set_t& Crap<hb_set_t>() Unexecuted instantiation: hb-aat-map.cc:hb_aat_map_builder_t::feature_range_t& Crap<hb_aat_map_builder_t::feature_range_t>() Unexecuted instantiation: hb-aat-map.cc:hb_aat_map_builder_t::feature_event_t& Crap<hb_aat_map_builder_t::feature_event_t>() Unexecuted instantiation: hb-aat-map.cc:hb_aat_map_builder_t::feature_info_t& Crap<hb_aat_map_builder_t::feature_info_t>() Unexecuted instantiation: hb-aat-map.cc:hb_aat_map_t::range_flags_t& Crap<hb_aat_map_t::range_flags_t>() Unexecuted instantiation: hb-aat-map.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-aat-map.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-aat-map.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-aat-map.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-aat-map.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-aat-map.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-aat-map.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-aat-map.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-aat-map.cc:hb_aat_layout_feature_selector_info_t& Crap<hb_aat_layout_feature_selector_info_t>() Unexecuted instantiation: hb-aat-map.cc:hb_aat_layout_feature_type_t& Crap<hb_aat_layout_feature_type_t>() Unexecuted instantiation: hb-buffer-verify.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-draw.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-paint-extents.cc:hb_transform_t& Crap<hb_transform_t>() Unexecuted instantiation: hb-paint-extents.cc:hb_bounds_t& Crap<hb_bounds_t>() Unexecuted instantiation: hb-paint-extents.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::number_t& Crap<CFF::number_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::call_context_t& Crap<CFF::call_context_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-cff1-table.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-cff1-table.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-cff1-table.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:OT::IntType<unsigned char, 1u>& Crap<OT::IntType<unsigned char, 1u> >() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::Encoding1_Range& Crap<CFF::Encoding1_Range>() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::SuppEncoding& Crap<CFF::SuppEncoding>() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::cff1_top_dict_val_t& Crap<CFF::cff1_top_dict_val_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::op_str_t& Crap<CFF::op_str_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::cff1_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >() Unexecuted instantiation: hb-ot-cff1-table.cc:CFF::cff1_font_dict_values_t& Crap<CFF::cff1_font_dict_values_t>() Unexecuted instantiation: hb-ot-cff1-table.cc:OT::cff1::accelerator_t::gname_t& Crap<OT::cff1::accelerator_t::gname_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::call_context_t& Crap<CFF::call_context_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::number_t& Crap<CFF::number_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:float& Crap<float>() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-cff2-table.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-cff2-table.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-cff2-table.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::op_str_t& Crap<CFF::op_str_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::dict_val_t& Crap<CFF::dict_val_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::cff2_font_dict_values_t& Crap<CFF::cff2_font_dict_values_t>() Unexecuted instantiation: hb-ot-cff2-table.cc:CFF::cff2_private_dict_values_base_t<CFF::dict_val_t>& Crap<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >() Unexecuted instantiation: hb-ot-color.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-color.cc:hb_ot_color_layer_t& Crap<hb_ot_color_layer_t>() Unexecuted instantiation: hb-ot-color.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-color.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-color.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-color.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-color.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-color.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-color.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-color.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-color.cc:hb_pair_t<unsigned int, OT::IndexSubtableRecord const*>& Crap<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >() Unexecuted instantiation: hb-ot-color.cc:OT::IndexSubtableRecord& Crap<OT::IndexSubtableRecord>() Unexecuted instantiation: hb-ot-color.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-color.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-color.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-color.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-color.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-color.cc:int& Crap<int>() Unexecuted instantiation: hb-ot-color.cc:hb_transform_t& Crap<hb_transform_t>() Unexecuted instantiation: hb-ot-color.cc:hb_bounds_t& Crap<hb_bounds_t>() Unexecuted instantiation: hb-ot-color.cc:OT::LayerRecord& Crap<OT::LayerRecord>() Unexecuted instantiation: hb-ot-color.cc:OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*& Crap<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>() Unexecuted instantiation: hb-ot-layout.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-layout.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-layout.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-layout.cc:int& Crap<int>() Unexecuted instantiation: hb-ot-layout.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-layout.cc:hb_set_t& Crap<hb_set_t>() Unexecuted instantiation: hb-ot-layout.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-layout.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-layout.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-layout.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-layout.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-layout.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-layout.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-layout.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-layout.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-layout.cc:OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-layout.cc:hb_ot_name_entry_t& Crap<hb_ot_name_entry_t>() Unexecuted instantiation: hb-ot-map.cc:hb_ot_map_builder_t::feature_info_t& Crap<hb_ot_map_builder_t::feature_info_t>() Unexecuted instantiation: hb-ot-map.cc:hb_ot_map_t::lookup_map_t& Crap<hb_ot_map_t::lookup_map_t>() Unexecuted instantiation: hb-ot-map.cc:hb_ot_map_builder_t::stage_info_t& Crap<hb_ot_map_builder_t::stage_info_t>() Unexecuted instantiation: hb-ot-map.cc:hb_ot_map_t::feature_map_t& Crap<hb_ot_map_t::feature_map_t>() Unexecuted instantiation: hb-ot-map.cc:hb_ot_map_t::stage_map_t& Crap<hb_ot_map_t::stage_map_t>() Unexecuted instantiation: hb-ot-map.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-map.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-map.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-map.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-map.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-map.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-map.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-map.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::HBGlyphID16& Crap<OT::HBGlyphID16>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:int& Crap<int>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:hb_set_t& Crap<hb_set_t>() Unexecuted instantiation: hb-ot-shaper-arabic.cc:OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true>& Crap<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >() Unexecuted instantiation: hb-ot-shaper-default.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-default.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-default.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-default.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-default.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-default.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-default.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-default.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-hangul.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-hangul.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-hebrew.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-hebrew.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-indic.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-indic.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-khmer.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-khmer.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-myanmar.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-myanmar.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-syllabic.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-syllabic.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-thai.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-thai.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-use.cc:hb_glyph_info_t& Crap<hb_glyph_info_t>() Unexecuted instantiation: hb-ot-shaper-use.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-use.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-use.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-use.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-use.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-use.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-use.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-use.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-vowel-constraints.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shape-fallback.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*& Crap<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_pair_t<unsigned int, unsigned int>& Crap<hb_pair_t<unsigned int, unsigned int> >() Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t& Crap<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>() Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::IntType<unsigned short, 2u>& Crap<OT::IntType<unsigned short, 2u> >() Unexecuted instantiation: hb-ot-shape-fallback.cc:OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true>& Crap<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_inc_bimap_t& Crap<hb_inc_bimap_t>() Unexecuted instantiation: hb-ot-shape-fallback.cc:int& Crap<int>() Unexecuted instantiation: hb-ot-shape-fallback.cc:hb_set_t& Crap<hb_set_t>() Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shape-normalize.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shape-normalize.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() Unexecuted instantiation: hb-ot-tag.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ucd.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-buffer-serialize.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-paint.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_user_data_array_t::hb_user_data_item_t& Crap<hb_user_data_array_t::hb_user_data_item_t>() Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_bit_set_t::page_map_t& Crap<hb_bit_set_t::page_map_t>() Unexecuted instantiation: hb-ot-shaper-indic-table.cc:unsigned int& Crap<unsigned int>() Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_bit_page_t& Crap<hb_bit_page_t>() Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_hashmap_t<unsigned int, unsigned int, true>::item_t& Crap<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>() Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_serialize_context_t::object_t*& Crap<hb_serialize_context_t::object_t*>() Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_serialize_context_t::object_t::link_t& Crap<hb_serialize_context_t::object_t::link_t>() Unexecuted instantiation: hb-ot-shaper-indic-table.cc:hb_vector_t<unsigned int, false>& Crap<hb_vector_t<unsigned int, false> >() |
182 | | template <typename QType> |
183 | | struct CrapHelper |
184 | | { |
185 | | typedef hb_remove_const<hb_remove_reference<QType>> Type; |
186 | 0 | static Type & get_crap () { return Crap<Type> (); } Unexecuted instantiation: CrapHelper<hb_user_data_array_t::hb_user_data_item_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_bit_set_t::page_map_t>::get_crap() Unexecuted instantiation: CrapHelper<unsigned int>::get_crap() Unexecuted instantiation: CrapHelper<hb_bit_page_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_serialize_context_t::object_t*>::get_crap() Unexecuted instantiation: CrapHelper<hb_serialize_context_t::object_t::link_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_vector_t<unsigned int, false> >::get_crap() Unexecuted instantiation: CrapHelper<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t*>::get_crap() Unexecuted instantiation: CrapHelper<hb_pair_t<unsigned int, unsigned int> >::get_crap() Unexecuted instantiation: CrapHelper<OT::VarData::serialize(hb_serialize_context_t*, OT::VarData const*, hb_inc_bimap_t const&, hb_bimap_t const&)::delta_size_t>::get_crap() Unexecuted instantiation: CrapHelper<OT::IntType<unsigned short, 2u> >::get_crap() Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::VarData, OT::IntType<unsigned int, 4u>, true> >::get_crap() Unexecuted instantiation: CrapHelper<hb_inc_bimap_t>::get_crap() Unexecuted instantiation: CrapHelper<OT::VariationSelectorRecord>::get_crap() Unexecuted instantiation: CrapHelper<int>::get_crap() Unexecuted instantiation: CrapHelper<hb_set_t*>::get_crap() Unexecuted instantiation: CrapHelper<OT::index_map_subset_plan_t>::get_crap() Unexecuted instantiation: CrapHelper<OT::DeltaSetIndexMap const*>::get_crap() Unexecuted instantiation: CrapHelper<OT::contour_point_t>::get_crap() Unexecuted instantiation: CrapHelper<OT::glyf_impl::SubsetGlyph>::get_crap() Unexecuted instantiation: CrapHelper<hb_hashmap_t<unsigned int, Triple, false>::item_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_variation_t>::get_crap() Unexecuted instantiation: CrapHelper<CFF::number_t>::get_crap() Unexecuted instantiation: CrapHelper<OT::IntType<unsigned char, 1u> >::get_crap() Unexecuted instantiation: CrapHelper<CFF::Encoding1_Range>::get_crap() Unexecuted instantiation: CrapHelper<CFF::SuppEncoding>::get_crap() Unexecuted instantiation: CrapHelper<CFF::cff1_top_dict_val_t>::get_crap() Unexecuted instantiation: CrapHelper<CFF::op_str_t>::get_crap() Unexecuted instantiation: CrapHelper<CFF::dict_val_t>::get_crap() Unexecuted instantiation: CrapHelper<CFF::cff1_private_dict_values_base_t<CFF::dict_val_t> >::get_crap() Unexecuted instantiation: CrapHelper<CFF::cff1_font_dict_values_t>::get_crap() Unexecuted instantiation: CrapHelper<OT::cff1::accelerator_t::gname_t>::get_crap() Unexecuted instantiation: CrapHelper<CFF::cff2_font_dict_values_t>::get_crap() Unexecuted instantiation: CrapHelper<CFF::cff2_private_dict_values_base_t<CFF::dict_val_t> >::get_crap() Unexecuted instantiation: CrapHelper<hb_set_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_ot_meta_tag_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_ot_name_entry_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_pair_t<unsigned int, OT::IndexSubtableRecord const*> >::get_crap() Unexecuted instantiation: CrapHelper<OT::IndexSubtableRecord>::get_crap() Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::SBIXStrike, OT::IntType<unsigned int, 4u>, true>*>::get_crap() Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_crap() Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_crap() Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> >::get_crap() Unexecuted instantiation: CrapHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> >::get_crap() Unexecuted instantiation: CrapHelper<hb_transform_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_bounds_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_ot_color_layer_t>::get_crap() Unexecuted instantiation: CrapHelper<OT::LayerRecord>::get_crap() Unexecuted instantiation: CrapHelper<hb_outline_point_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_aat_layout_feature_selector_info_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_aat_layout_feature_type_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_vector_t<hb_aat_map_t::range_flags_t, true> >::get_crap() Unexecuted instantiation: CrapHelper<hb_aat_map_t::range_flags_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_aat_map_builder_t::feature_range_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_aat_map_builder_t::feature_event_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_aat_map_builder_t::feature_info_t>::get_crap() Unexecuted instantiation: CrapHelper<CFF::call_context_t>::get_crap() Unexecuted instantiation: CrapHelper<float>::get_crap() Unexecuted instantiation: CrapHelper<hb_ot_map_builder_t::feature_info_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_ot_map_t::lookup_map_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_ot_map_builder_t::stage_info_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_ot_map_t::feature_map_t>::get_crap() Unexecuted instantiation: CrapHelper<hb_ot_map_t::stage_map_t>::get_crap() Unexecuted instantiation: CrapHelper<OT::HBGlyphID16>::get_crap() Unexecuted instantiation: CrapHelper<hb_glyph_info_t>::get_crap() |
187 | | }; |
188 | 0 | #define Crap(Type) CrapHelper<Type>::get_crap () |
189 | | |
190 | | template <typename Type> |
191 | | struct CrapOrNullHelper { |
192 | 0 | static Type & get () { return Crap (Type); } Unexecuted instantiation: CrapOrNullHelper<unsigned int>::get() Unexecuted instantiation: CrapOrNullHelper<hb_hashmap_t<unsigned int, unsigned int, true>::item_t>::get() Unexecuted instantiation: CrapOrNullHelper<int>::get() Unexecuted instantiation: CrapOrNullHelper<OT::DeltaSetIndexMap const*>::get() Unexecuted instantiation: CrapOrNullHelper<OT::index_map_subset_plan_t>::get() Unexecuted instantiation: CrapOrNullHelper<OT::contour_point_t>::get() Unexecuted instantiation: CrapOrNullHelper<hb_hashmap_t<unsigned int, Triple, false>::item_t>::get() Unexecuted instantiation: CrapOrNullHelper<hb_ot_meta_tag_t>::get() Unexecuted instantiation: CrapOrNullHelper<hb_ot_color_layer_t>::get() Unexecuted instantiation: CrapOrNullHelper<hb_aat_layout_feature_selector_info_t>::get() Unexecuted instantiation: CrapOrNullHelper<hb_aat_layout_feature_type_t>::get() Unexecuted instantiation: CrapOrNullHelper<OT::HBGlyphID16>::get() Unexecuted instantiation: CrapOrNullHelper<hb_glyph_info_t>::get() |
193 | | }; |
194 | | template <typename Type> |
195 | | struct CrapOrNullHelper<const Type> { |
196 | 0 | static const Type & get () { return Null (Type); } Unexecuted instantiation: CrapOrNullHelper<unsigned long long const>::get() Unexecuted instantiation: CrapOrNullHelper<hb_pool_t<hb_serialize_context_t::object_t, 32u>::chunk_t* const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::ResourceRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::TableRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<unsigned int const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Layout::Common::RangeRecord<OT::Layout::SmallTypes> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Index const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::IntType<unsigned int, 3u> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::Feature> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::LangSys> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::Script> const>::get() Unexecuted instantiation: CrapOrNullHelper<hb_pair_t<unsigned int, unsigned int> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::IntType<unsigned short, 2u> const>::get() Unexecuted instantiation: CrapOrNullHelper<hb_inc_bimap_t const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::FeatureTableSubstitutionRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::UVSMapping const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::VariationSelectorRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::EncodingRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::AxisRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::HBFixed<OT::IntType<int, 4u>, 16u> const>::get() Unexecuted instantiation: CrapOrNullHelper<hb_array_t<unsigned char const> const>::get() Unexecuted instantiation: CrapOrNullHelper<unsigned char const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::AttachPoint, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::CaretValue, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::LigGlyph, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::hb_accelerate_subtables_context_t::hb_applicable_t const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Layout::GPOS_impl::EntryExitRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Layout::GPOS_impl::MarkRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PairSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::RuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Rule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::ChainRuleSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::ChainRule<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookupSubTable, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::AnchorMatrix, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GPOS_impl::PosLookup, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::IntType<unsigned char, 1u> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::IntType<short, 2u> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::DataMap const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::NameRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::HBGlyphID16 const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::LigatureSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Ligature<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::Sequence<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::AlternateSet<OT::Layout::SmallTypes>, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookupSubTable, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Layout::GSUB_impl::SubstLookup, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::StatAxisRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::AxisValueRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::AxisValue, OT::IntType<unsigned short, 2u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::VertOriginMetric const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::OffsetTo<OT::Paint, OT::IntType<unsigned int, 4u>, true> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::LayerRecord const>::get() Unexecuted instantiation: CrapOrNullHelper<hb_outline_point_t const>::get() Unexecuted instantiation: CrapOrNullHelper<AAT::SettingName const>::get() Unexecuted instantiation: CrapOrNullHelper<AAT::FeatureName const>::get() Unexecuted instantiation: CrapOrNullHelper<hb_aat_map_t::range_flags_t const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::IntType<unsigned int, 4u> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::JstfLangSys> const>::get() Unexecuted instantiation: CrapOrNullHelper<OT::Record<OT::JstfScript> const>::get() |
197 | | }; |
198 | 0 | #define CrapOrNull(Type) CrapOrNullHelper<Type>::get () |
199 | | |
200 | | |
201 | | /* |
202 | | * hb_nonnull_ptr_t |
203 | | */ |
204 | | |
205 | | template <typename P> |
206 | | struct hb_nonnull_ptr_t |
207 | | { |
208 | | typedef hb_remove_pointer<P> T; |
209 | | |
210 | 54 | hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {} Unexecuted instantiation: hb_nonnull_ptr_t<OT::CmapSubtable const>::hb_nonnull_ptr_t(OT::CmapSubtable const*) Unexecuted instantiation: hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::hb_nonnull_ptr_t(OT::CmapSubtableFormat14 const*) hb_nonnull_ptr_t<hb_blob_t>::hb_nonnull_ptr_t(hb_blob_t*) Line | Count | Source | 210 | 54 | hb_nonnull_ptr_t (T *v_ = nullptr) : v (v_) {} |
|
211 | 108 | T * operator = (T *v_) { return v = v_; } hb_nonnull_ptr_t<hb_blob_t>::operator=(hb_blob_t*) Line | Count | Source | 211 | 108 | T * operator = (T *v_) { return v = v_; } |
Unexecuted instantiation: hb_nonnull_ptr_t<OT::CmapSubtable const>::operator=(OT::CmapSubtable const*) Unexecuted instantiation: hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::operator=(OT::CmapSubtableFormat14 const*) |
212 | 820k | T * operator -> () const { return get (); } Unexecuted instantiation: hb_nonnull_ptr_t<OT::CmapSubtable const>::operator->() const Unexecuted instantiation: hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::operator->() const hb_nonnull_ptr_t<hb_blob_t>::operator->() const Line | Count | Source | 212 | 820k | T * operator -> () const { return get (); } |
|
213 | | T & operator * () const { return *get (); } |
214 | | T ** operator & () const { return &v; } |
215 | | /* Only auto-cast to const types. */ |
216 | 0 | template <typename C> operator const C * () const { return get (); } |
217 | | operator const char * () const { return (const char *) get (); } |
218 | 821k | T * get () const { return v ? v : const_cast<T *> (&Null (T)); } Unexecuted instantiation: hb_nonnull_ptr_t<OT::CmapSubtable const>::get() const Unexecuted instantiation: hb_nonnull_ptr_t<OT::CmapSubtableFormat14 const>::get() const hb_nonnull_ptr_t<hb_blob_t>::get() const Line | Count | Source | 218 | 821k | T * get () const { return v ? v : const_cast<T *> (&Null (T)); } |
|
219 | 404 | T * get_raw () const { return v; } |
220 | | |
221 | | private: |
222 | | T *v; |
223 | | }; |
224 | | |
225 | | |
226 | | #endif /* HB_NULL_HH */ |