Lines Matching refs:table
16 * This module maintains a contraction table structure in expanded form
63 uprv_cnttab_clone(CntTable *table, UErrorCode *status);
65 uprv_cnttab_close(CntTable *table);
67 /* construct the table for output */
69 uprv_cnttab_constructTable(CntTable *table, uint32_t mainOffset, UErrorCode *status);
70 /* adds more contractions in table. If element is non existant, it creates on. Returns element handle */
72 uprv_cnttab_addContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status);
73 /* sets a part of contraction sequence in table. If element is non existant, it creates on. Returns element handle */
75 uprv_cnttab_setContraction(CntTable *table, uint32_t element, uint32_t offset, UChar codePoint, uint32_t value, UErrorCode *status);
76 /* inserts a part of contraction sequence in table. Sequences behind the offset are moved back. If element is non existant, it creates on. Returns element handle */
78 uprv_cnttab_insertContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t value, UErrorCode *status);
81 uprv_cnttab_changeLastCE(CntTable *table, uint32_t element, uint32_t value, UErrorCode *status);
84 uprv_cnttab_findCP(CntTable *table, uint32_t element, UChar codePoint, UErrorCode *status);
87 uprv_cnttab_getCE(CntTable *table, uint32_t element, uint32_t position, UErrorCode *status);
90 uprv_cnttab_changeContraction(CntTable *table, uint32_t element, UChar codePoint, uint32_t newCE, UErrorCode *status);
93 uprv_cnttab_findCE(CntTable *table, uint32_t element, UChar codePoint, UErrorCode *status);
96 uprv_cnttab_isTailored(CntTable *table, uint32_t element, UChar *ztString, UErrorCode *status);