Lines Matching refs:child

18   $child = $root->first_child();
20 if ($child->node_type() == XML_ELEMENT_NODE) {
21 switch ($child->tagname()) {
27 $child->get_attribute('normal'),
28 $child->get_attribute('italic'),
29 $child->get_attribute('oblique'));
36 $child->get_attribute('normal'),
37 $child->get_attribute('italic'),
38 $child->get_attribute('oblique'));
48 $child->get_attribute('normal'),
49 $child->get_attribute('italic'),
50 $child->get_attribute('oblique'));
57 $child->get_attribute('normal'),
58 $child->get_attribute('italic'),
59 $child->get_attribute('oblique'));
66 } while ($child = $child->next_sibling());
93 $child = $root->first_child();
95 if ($child->node_type() == XML_ELEMENT_NODE) {
96 switch ($child->tagname()) {
102 $child->get_attribute('normal'),
103 $child->get_attribute('italic'),
104 $child->get_attribute('oblique'));
112 $child->get_attribute('normal'),
113 $child->get_attribute('italic'),
114 $child->get_attribute('oblique'));
119 } while ($child = $child->next_sibling());
124 $child = $root->first_child();
126 if ($child->node_type() == XML_ELEMENT_NODE) {
128 switch ($child->tagname()) {
131 $child->get_attribute('normal'),
132 $child->get_attribute('italic'),
133 $child->get_attribute('oblique'));
137 $child->get_attribute('normal'),
138 $child->get_attribute('italic'),
139 $child->get_attribute('oblique'));
142 parse_family_encoding_override_node_config_file($font_family_name, $child, $resolver);
146 } while ($child = $child->next_sibling());
150 $child = $root->first_child();
152 if ($child->node_type() == XML_ELEMENT_NODE) {
153 switch ($child->tagname()) {
155 … $resolver->add_alias(strtolower($child->get_attribute('alias')), $child->get_attribute('family'));
158 parse_fonts_family_node_config_file($child, $resolver);
161 parse_encoding_override_node_config_file($child, $resolver);
164 parse_ttf_node_config_file($child, $resolver);
167 parse_metrics_node_config_file($child, $resolver);
171 } while ($child = $child->next_sibling());
182 $child = $root->first_child();
184 if ($child->node_type() == XML_ELEMENT_NODE) {
185 switch ($child->tagname()) {
188 parse_fonts_node_config_file($child, $g_font_resolver);
192 parse_fonts_node_config_file($child, $g_font_resolver_pdf);
195 add_predefined_media($child->get_attribute('name'),
196 (float)$child->get_attribute('height'),
197 (float)$child->get_attribute('width'));
201 } while ($child = $child->next_sibling());