Searched defs:insertion (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEInsertionList.cpp85 InsertionRecord *insertion = (InsertionRecord *) LE_NEW_ARRAY(char, sizeof(InsertionRecord) + (count - ANY_NUMBER) * sizeof (LEGlyphID)); local
86 if (insertion == NULL) {
91 insertion->position = position;
92 insertion->count = count;
98 insertion->next = NULL;
99 tail->next = insertion;
100 tail = insertion;
103 insertion->next = head;
104 head = insertion;
107 return insertion
[all...]

Completed in 87 milliseconds