Lines Matching full:node
54 RefPtr<GlyphMapNode> node;
57 node = currentLayer->get(curChar);
58 if (!node) {
59 node = GlyphMapNode::create();
60 currentLayer->set(curChar, node);
62 currentLayer = &node->children;
65 if (node) {
66 node->glyphs.append(glyph);
67 node->glyphs.last().priority = m_currentPriority++;
68 node->glyphs.last().nameLength = len;
69 node->glyphs.last().isValid = true;
84 RefPtr<GlyphMapNode> node = currentLayer->get(curChar);
85 if (!node)
87 glyphs.append(node->glyphs);
88 currentLayer = &node->children;