Lines Matching refs:tag

52         sal_uInt32 tag;                     /**< TrueType file tag */  member
73 sal_uInt32 tag; member
219 return ((const TableEntry *) l)->tag - ((const TableEntry *) r)->tag; in TableEntryCompareF()
268 void TrueTypeCreatorNewEmpty(sal_uInt32 tag, TrueTypeCreator **_this) in TrueTypeCreatorNewEmpty() argument
275 ptr->tag = tag; in TrueTypeCreatorNewEmpty()
288 void RemoveTable(TrueTypeCreator *_this, sal_uInt32 tag) in RemoveTable() argument
295 if (((TrueTypeTable *) listCurrent(_this->tables))->tag == tag) { in RemoveTable()
330 … GetRawData((TrueTypeTable *) listCurrent(_this->tables), &te[i].data, &te[i].length, &te[i].tag); in StreamToMemory()
355 PutUInt32(_this->tag, ttf, 0, 1); in StreamToMemory()
363 PutUInt32(te[i].tag, ttf + 12, 16 * i, 1); in StreamToMemory()
368 if (te[i].tag == T_head) { in StreamToMemory()
458 sal_uInt32 tag; member
604 sal_uInt32 tag; member
620 …tic int GetRawData_generic(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_generic() argument
627 *tag = ((tdata_generic *) _this->data)->tag; in GetRawData_generic()
633 static int GetRawData_head(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_head() argument
637 *tag = T_head; in GetRawData_head()
642 static int GetRawData_hhea(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_hhea() argument
646 *tag = T_hhea; in GetRawData_hhea()
651 static int GetRawData_loca(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_loca() argument
663 *tag = T_loca; in GetRawData_loca()
668 static int GetRawData_maxp(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_maxp() argument
672 *tag = T_maxp; in GetRawData_maxp()
677 static int GetRawData_glyf(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_glyf() argument
686 *tag = 0; in GetRawData_glyf()
709 *tag = T_glyf; in GetRawData_glyf()
776 static int GetRawData_cmap(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_cmap() argument
821 *tag = T_cmap; in GetRawData_cmap()
827 static int GetRawData_name(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_name() argument
836 *tag = 0; in GetRawData_name()
889 *tag = T_name; in GetRawData_name()
896 static int GetRawData_post(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData_post() argument
921 *tag = T_post; in GetRawData_post()
931 sal_uInt32 tag; member
963 TrueTypeTable *TrueTypeTableNew(sal_uInt32 tag, in TrueTypeTableNew() argument
970 pdata->tag = tag; in TrueTypeTableNew()
978 table->tag = 0; in TrueTypeTableNew()
1012 table->tag = T_head; in TrueTypeTableNew_head()
1041 table->tag = T_hhea; in TrueTypeTableNew_hhea()
1055 table->tag = T_loca; in TrueTypeTableNew_loca()
1070 table->tag = T_maxp; in TrueTypeTableNew_maxp()
1087 table->tag = T_glyf; in TrueTypeTableNew_glyf()
1105 table->tag = T_cmap; in TrueTypeTableNew_cmap()
1151 table->tag = T_name; in TrueTypeTableNew_name()
1175 table->tag = T_post; in TrueTypeTableNew_post()
1180 int GetRawData(TrueTypeTable *_this, sal_uInt8 **ptr, sal_uInt32 *len, sal_uInt32 *tag) in GetRawData() argument
1188 assert(tag != 0); in GetRawData()
1190 *ptr = 0; *len = 0; *tag = 0; in GetRawData()
1198 if (_this->tag == vtable2[i].tag) { in GetRawData()
1199 return vtable2[i].f(_this, ptr, len, tag); in GetRawData()
1214 assert(table->tag == T_cmap); in cmapAdd()
1282 assert(table->tag == T_glyf); in glyfAdd()
1332 assert(table->tag == T_glyf); in glyfCount()
1342 assert(table->tag == T_name); in nameAdd()
1349 static TrueTypeTable *FindTable(TrueTypeCreator *tt, sal_uInt32 tag) in FindTable() argument
1356 if (((TrueTypeTable *) listCurrent(tt->tables))->tag == tag) { in FindTable()
1615 if (_this->tag == vcl::vtable1[i].tag) { in TrueTypeTableDispose()