Home | History | Annotate | Download | only in layout

Lines Matching defs:insertion

60     InsertionRecord *insertion = (InsertionRecord *) LE_NEW_ARRAY(char, sizeof(InsertionRecord) + (count - ANY_NUMBER) * sizeof (LEGlyphID));
61 if (insertion == NULL) {
66 insertion->position = position;
67 insertion->count = count;
73 insertion->next = NULL;
74 tail->next = insertion;
75 tail = insertion;
78 insertion->next = head;
79 head = insertion;
82 return insertion->glyphs;