• Home
  • Raw
  • Download

Lines Matching full:record

18     SkOTTableName::Record nameRecord[R];
24 SkOTTableName::Record nameRecord[R];
40 /*Record*/ {
41 /*platformID*/ { SkOTTableName::Record::PlatformID::Windows },
42 /*encodingID*/ { SkOTTableName::Record::EncodingID::Windows::UnicodeBMPUCS2 },
43 /*languageID*/ { SkOTTableName::Record::LanguageID::Windows::English_UnitedStates },
44 /*nameID*/ { SkOTTableName::Record::NameID::Predefined::FontFamilyName },
60 /*Record*/ {
61 /*platformID*/ { SkOTTableName::Record::PlatformID::Windows },
62 /*encodingID*/ { SkOTTableName::Record::EncodingID::Windows::UnicodeBMPUCS2 },
64 /*nameID*/ { SkOTTableName::Record::NameID::Predefined::FontFamilyName },
86 SkOTTableName::Record::NameID nameID;
96 { SkOTTableName::Record::NameID::Predefined::FontFamilyName },
104 { SkOTTableName::Record::NameID::Predefined::FontFamilyName },
115 SkOTTableName::Iterator::Record record; in test_synthetic() local
117 while (nameIndex < test[i].nameCount && iter.next(record)) { in test_synthetic()
119 strcmp(test[i].names[nameIndex].name, record.name.c_str()) == 0, in test_synthetic()
124 strcmp(test[i].names[nameIndex].language, record.language.c_str()) == 0, in test_synthetic()
128 //printf("%s <%s>\n", record.name.c_str(), record.language.c_str()); in test_synthetic()
136 REPORTER_ASSERT_MESSAGE(reporter, !iter.next(record), in test_synthetic()
182 SkOTTableName::Iterator::Record record; in test_systemfonts() local
184 SkOTTableName::Record::NameID::Predefined::FontFamilyName); in test_systemfonts()
185 while (familyNameIter.next(record)) { in test_systemfonts()
187 SkOTTableName::Record::NameID::Predefined::FontFamilyName == record.type, in test_systemfonts()
191 SkDebugf("{%s} <%s>\n", record.name.c_str(), record.language.c_str()); in test_systemfonts()
196 SkOTTableName::Record::NameID::Predefined::FontSubfamilyName); in test_systemfonts()
197 while (styleNameIter.next(record)) { in test_systemfonts()
199 SkOTTableName::Record::NameID::Predefined::FontSubfamilyName == record.type, in test_systemfonts()
203 SkDebugf("{{%s}} <%s>\n", record.name.c_str(), record.language.c_str()); in test_systemfonts()