/third_party/skia/third_party/externals/sfntly/cpp/src/test/ |
D | verify_os2.cc | 58 OS2TablePtr os2 = down_cast<OS2Table*>(table); in VerifyOS_2() local 59 if (os2 == NULL) { in VerifyOS_2() 63 EXPECT_EQ(os2->TableVersion(), OS2_VERSION); in VerifyOS_2() 64 EXPECT_EQ(os2->XAvgCharWidth(), OS2_XAVG_CHAR_WIDTH); in VerifyOS_2() 65 EXPECT_EQ(os2->UsWeightClass(), OS2_US_WEIGHT_CLASS); in VerifyOS_2() 66 EXPECT_EQ(os2->UsWidthClass(), OS2_US_WIDTH_CLASS); in VerifyOS_2() 67 EXPECT_EQ(os2->FsType(), OS2_FS_TYPE); in VerifyOS_2() 68 EXPECT_EQ(os2->YSubscriptXSize(), OS2_YSUBS_XSIZE); in VerifyOS_2() 69 EXPECT_EQ(os2->YSubscriptYSize(), OS2_YSUBS_YSIZE); in VerifyOS_2() 70 EXPECT_EQ(os2->YSubscriptXOffset(), OS2_YSUBS_XOFFSET); in VerifyOS_2() [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/ |
D | verify_os2.cc | 58 OS2TablePtr os2 = down_cast<OS2Table*>(table); in VerifyOS_2() local 59 if (os2 == NULL) { in VerifyOS_2() 63 EXPECT_EQ(os2->TableVersion(), OS2_VERSION); in VerifyOS_2() 64 EXPECT_EQ(os2->XAvgCharWidth(), OS2_XAVG_CHAR_WIDTH); in VerifyOS_2() 65 EXPECT_EQ(os2->UsWeightClass(), OS2_US_WEIGHT_CLASS); in VerifyOS_2() 66 EXPECT_EQ(os2->UsWidthClass(), OS2_US_WIDTH_CLASS); in VerifyOS_2() 67 EXPECT_EQ(os2->FsType(), OS2_FS_TYPE); in VerifyOS_2() 68 EXPECT_EQ(os2->YSubscriptXSize(), OS2_YSUBS_XSIZE); in VerifyOS_2() 69 EXPECT_EQ(os2->YSubscriptYSize(), OS2_YSUBS_YSIZE); in VerifyOS_2() 70 EXPECT_EQ(os2->YSubscriptXOffset(), OS2_YSUBS_XOFFSET); in VerifyOS_2() [all …]
|
/third_party/boost/libs/fusion/test/sequence/ |
D | io.cpp | 66 useThisOStringStream os2; in main() local 68 os2 << tuple_open('('); in main() 69 os2 << tuple_close(')'); in main() 70 os2 << tuple_delimiter(':'); in main() 72 os2 << make_vector("TUPU", "HUPU", "LUPU", 4.5); in main() 73 BOOST_TEST (os2.str() == std::string("(TUPU:HUPU:LUPU:4.5)") ); in main() 77 useThisOStringStream os2; in main() local 79 os2 << tuple_open('('); in main() 80 os2 << tuple_close(')'); in main() 81 os2 << tuple_delimiter(':'); in main() [all …]
|
/third_party/boost/libs/date_time/test/gregorian/ |
D | testfacet.cpp | 129 std::stringstream os2; in main() local 130 os2.imbue(global2); in main() 131 datef::date_put(d1, os2); in main() 132 check("check string imbued ostream: "+os2.str(), in main() 133 os2.str() == std::string("2002-Okt-01")); in main() 136 os2.str(""); //clear stream in main() 137 datef::date_put(infin, os2); in main() 138 check("check string imbued ostream: "+os2.str(), in main() 139 os2.str() == std::string("+unbegrenztheit")); in main() 141 os2.str(""); //clear stream in main() [all …]
|
/third_party/freetype/builds/os2/ |
D | detect.mk | 23 PLATFORM := os2 28 ifeq ($(PLATFORM),os2) 36 CONFIG_FILE := os2-gcc.mk 41 CONFIG_FILE := os2-icc.mk 50 CONFIG_FILE := os2-wat.mk 59 CONFIG_FILE := os2-bcc.mk 68 CONFIG_FILE := os2-dev.mk
|
/third_party/skia/third_party/externals/freetype/builds/os2/ |
D | detect.mk | 23 PLATFORM := os2 28 ifeq ($(PLATFORM),os2) 36 CONFIG_FILE := os2-gcc.mk 41 CONFIG_FILE := os2-icc.mk 50 CONFIG_FILE := os2-wat.mk 59 CONFIG_FILE := os2-bcc.mk 68 CONFIG_FILE := os2-dev.mk
|
/third_party/flutter/skia/third_party/externals/freetype/builds/os2/ |
D | detect.mk | 23 PLATFORM := os2 28 ifeq ($(PLATFORM),os2) 36 CONFIG_FILE := os2-gcc.mk 41 CONFIG_FILE := os2-icc.mk 50 CONFIG_FILE := os2-wat.mk 59 CONFIG_FILE := os2-bcc.mk 68 CONFIG_FILE := os2-dev.mk
|
/third_party/boost/libs/process/test/ |
D | pipe.cpp | 121 bp::pstream os2 = std::move(os); variable 123 os2 << i << std::endl; 124 os2 << std::endl; 146 bp::opstream os2 = std::move(os); variable 148 os2 << i << std::endl; 149 os2 << std::endl; 171 bp::pstream os2; variable 172 os2 = std::move(os); 175 os2 << i << std::endl; 176 os2 << std::endl; [all …]
|
/third_party/boost/libs/tuple/test/ |
D | io_test.cpp | 57 useThisOStringStream os2; in main() local 59 os2 << set_open('('); in main() 60 os2 << set_close(')'); in main() 61 os2 << set_delimiter(':'); in main() 63 os2 << make_tuple("TUPU", "HUPU", "LUPU", 4.5); in main() 64 BOOST_CHECK (os2.str() == std::string("(TUPU:HUPU:LUPU:4.5)") ); in main()
|
/third_party/freetype/src/base/ |
D | ftfstype.c | 29 TT_OS2* os2; in FT_Get_FSType_Flags() local 53 if ( ( os2 = (TT_OS2*)FT_Get_Sfnt_Table( face, FT_SFNT_OS2 ) ) != NULL && in FT_Get_FSType_Flags() 54 os2->version != 0xFFFFU ) in FT_Get_FSType_Flags() 55 return os2->fsType; in FT_Get_FSType_Flags()
|
/third_party/skia/third_party/externals/freetype/src/base/ |
D | ftfstype.c | 29 TT_OS2* os2; in FT_Get_FSType_Flags() local 53 if ( ( os2 = (TT_OS2*)FT_Get_Sfnt_Table( face, FT_SFNT_OS2 ) ) != NULL && in FT_Get_FSType_Flags() 54 os2->version != 0xFFFFU ) in FT_Get_FSType_Flags() 55 return os2->fsType; in FT_Get_FSType_Flags()
|
/third_party/flutter/skia/third_party/externals/freetype/src/sfnt/ |
D | ttload.c | 1117 TT_OS2* os2; in tt_face_load_os2() local 1209 os2 = &face->os2; in tt_face_load_os2() 1211 if ( FT_STREAM_READ_FIELDS( os2_fields, os2 ) ) in tt_face_load_os2() 1214 os2->ulCodePageRange1 = 0; in tt_face_load_os2() 1215 os2->ulCodePageRange2 = 0; in tt_face_load_os2() 1216 os2->sxHeight = 0; in tt_face_load_os2() 1217 os2->sCapHeight = 0; in tt_face_load_os2() 1218 os2->usDefaultChar = 0; in tt_face_load_os2() 1219 os2->usBreakChar = 0; in tt_face_load_os2() 1220 os2->usMaxContext = 0; in tt_face_load_os2() [all …]
|
D | sfobjs.c | 935 LOAD_( os2 ); in sfnt_load_face() 939 face->os2.version = 0xFFFFU; in sfnt_load_face() 971 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 256 ) in sfnt_load_face() 1060 if ( has_outline == TRUE && face->os2.version != 0xFFFFU ) in sfnt_load_face() 1066 if ( face->os2.fsSelection & 512 ) /* bit 9 */ in sfnt_load_face() 1068 else if ( face->os2.fsSelection & 1 ) /* bit 0 */ in sfnt_load_face() 1071 if ( face->os2.fsSelection & 32 ) /* bit 5 */ in sfnt_load_face() 1164 FT_Short avgwidth = face->os2.xAvgCharWidth; in sfnt_load_face() 1171 if ( em_size == 0 || face->os2.version == 0xFFFFU ) in sfnt_load_face() 1283 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 128 ) in sfnt_load_face() [all …]
|
/third_party/freetype/src/sfnt/ |
D | ttload.c | 1124 TT_OS2* os2; in tt_face_load_os2() local 1216 os2 = &face->os2; in tt_face_load_os2() 1218 if ( FT_STREAM_READ_FIELDS( os2_fields, os2 ) ) in tt_face_load_os2() 1221 os2->ulCodePageRange1 = 0; in tt_face_load_os2() 1222 os2->ulCodePageRange2 = 0; in tt_face_load_os2() 1223 os2->sxHeight = 0; in tt_face_load_os2() 1224 os2->sCapHeight = 0; in tt_face_load_os2() 1225 os2->usDefaultChar = 0; in tt_face_load_os2() 1226 os2->usBreakChar = 0; in tt_face_load_os2() 1227 os2->usMaxContext = 0; in tt_face_load_os2() [all …]
|
D | sfobjs.c | 964 LOAD_( os2 ); in sfnt_load_face() 968 face->os2.version = 0xFFFFU; in sfnt_load_face() 1000 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 256 ) in sfnt_load_face() 1089 if ( has_outline == TRUE && face->os2.version != 0xFFFFU ) in sfnt_load_face() 1095 if ( face->os2.fsSelection & 512 ) /* bit 9 */ in sfnt_load_face() 1097 else if ( face->os2.fsSelection & 1 ) /* bit 0 */ in sfnt_load_face() 1100 if ( face->os2.fsSelection & 32 ) /* bit 5 */ in sfnt_load_face() 1193 FT_Short avgwidth = face->os2.xAvgCharWidth; in sfnt_load_face() 1200 if ( em_size == 0 || face->os2.version == 0xFFFFU ) in sfnt_load_face() 1312 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 128 ) in sfnt_load_face() [all …]
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | ttload.c | 1141 TT_OS2* os2; in tt_face_load_os2() local 1233 os2 = &face->os2; in tt_face_load_os2() 1235 if ( FT_STREAM_READ_FIELDS( os2_fields, os2 ) ) in tt_face_load_os2() 1238 os2->ulCodePageRange1 = 0; in tt_face_load_os2() 1239 os2->ulCodePageRange2 = 0; in tt_face_load_os2() 1240 os2->sxHeight = 0; in tt_face_load_os2() 1241 os2->sCapHeight = 0; in tt_face_load_os2() 1242 os2->usDefaultChar = 0; in tt_face_load_os2() 1243 os2->usBreakChar = 0; in tt_face_load_os2() 1244 os2->usMaxContext = 0; in tt_face_load_os2() [all …]
|
D | sfobjs.c | 978 LOAD_( os2 ); in sfnt_load_face() 982 face->os2.version = 0xFFFFU; in sfnt_load_face() 1014 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 256 ) in sfnt_load_face() 1103 if ( has_outline == TRUE && face->os2.version != 0xFFFFU ) in sfnt_load_face() 1109 if ( face->os2.fsSelection & 512 ) /* bit 9 */ in sfnt_load_face() 1111 else if ( face->os2.fsSelection & 1 ) /* bit 0 */ in sfnt_load_face() 1114 if ( face->os2.fsSelection & 32 ) /* bit 5 */ in sfnt_load_face() 1208 FT_Short avgwidth = face->os2.xAvgCharWidth; in sfnt_load_face() 1215 if ( em_size == 0 || face->os2.version == 0xFFFFU ) in sfnt_load_face() 1327 if ( face->os2.version != 0xFFFFU && face->os2.fsSelection & 128 ) in sfnt_load_face() [all …]
|
/third_party/flutter/skia/third_party/externals/freetype/src/base/ |
D | ftfstype.c | 30 TT_OS2* os2; in FT_Get_FSType_Flags() local 54 if ( ( os2 = (TT_OS2*)FT_Get_Sfnt_Table( face, FT_SFNT_OS2 ) ) != NULL && in FT_Get_FSType_Flags() 55 os2->version != 0xFFFFU ) in FT_Get_FSType_Flags() 56 return os2->fsType; in FT_Get_FSType_Flags()
|
/third_party/glslang/Test/ |
D | hlsl.flattenOpaque.frag | 5 struct os2 { 12 os2 s2; 24 float4 os2Call1(os2 s) 29 float4 os2Call2(os2 s, float2 f2)
|
/third_party/boost/libs/histogram/examples/ |
D | guide_indexed_access.cpp | 50 std::ostringstream os2; in main() local 52 os2 << boost::format("%2i %2i: %i\n") % x.index(0) % x.index(1) % *x; in main() 55 std::cout << os2.str() << std::flush; in main() 57 assert(os2.str() == "-1 -1: 0\n" in main()
|
D | guide_histogram_projection.cpp | 44 std::ostringstream os2; in main() local 45 for (auto&& x : indexed(hr0)) os2 << "(" << x.index(0) << ", -): " << *x << "\n"; in main() 46 std::cout << os2.str() << std::flush; in main() 47 assert(os2.str() == "(0, -): 1\n" in main()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sflint/ |
D | SFLint.java | 150 OS2Table os2 = (OS2Table) font.getTable(Tag.OS_2); in lintWindowsClipping() local 151 if (os2.usWinAscent() < bbox_yMax) { in lintWindowsClipping() 152 reportProblem("font is clipped on top by " + (bbox_yMax - os2.usWinAscent()) + " units"); in lintWindowsClipping() 154 if (os2.usWinDescent() < -bbox_yMin) { in lintWindowsClipping() 155 reportProblem("font is clipped on bottom by " + (-bbox_yMin - os2.usWinDescent()) + " units"); in lintWindowsClipping() 214 OS2Table os2 = (OS2Table) font.getTable(Tag.OS_2); in lintOS2Misc() local 215 int widthClass = os2.usWidthClass(); in lintOS2Misc() 219 int weightClass = os2.usWeightClass(); in lintOS2Misc()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sflint/ |
D | SFLint.java | 150 OS2Table os2 = (OS2Table) font.getTable(Tag.OS_2); in lintWindowsClipping() local 151 if (os2.usWinAscent() < bbox_yMax) { in lintWindowsClipping() 152 reportProblem("font is clipped on top by " + (bbox_yMax - os2.usWinAscent()) + " units"); in lintWindowsClipping() 154 if (os2.usWinDescent() < -bbox_yMin) { in lintWindowsClipping() 155 reportProblem("font is clipped on bottom by " + (-bbox_yMin - os2.usWinDescent()) + " units"); in lintWindowsClipping() 214 OS2Table os2 = (OS2Table) font.getTable(Tag.OS_2); in lintOS2Misc() local 215 int widthClass = os2.usWidthClass(); in lintOS2Misc() 219 int weightClass = os2.usWeightClass(); in lintOS2Misc()
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.flattenOpaque.frag.out | 35 0:25 Function Definition: os2Call1(struct-os2-p1-t211; ( temp 4-component vector of float) 53 0:30 Function Definition: os2Call2(struct-os2-p1-t211;vf2; ( temp 4-component vector of float) 100 0:38 Function Call: os2Call1(struct-os2-p1-t211; ( temp 4-component vector of float) 116 0:39 Function Call: os2Call2(struct-os2-p1-t211;vf2; ( temp 4-component vector of float) 184 0:25 Function Definition: os2Call1(struct-os2-p1-t211; ( temp 4-component vector of float) 202 0:30 Function Definition: os2Call2(struct-os2-p1-t211;vf2; ( temp 4-component vector of float) 249 0:38 Function Call: os2Call1(struct-os2-p1-t211; ( temp 4-component vector of float) 265 0:39 Function Call: os2Call2(struct-os2-p1-t211;vf2; ( temp 4-component vector of float) 315 Name 23 "os2" 316 MemberName 23(os2) 0 "s2D" [all …]
|
/third_party/boost/libs/histogram/test/ |
D | detail_array_wrapper_serialization_test.cpp | 42 std::ostringstream os2; in run_tests() local 44 OArchive oa(os2); in run_tests() 49 BOOST_TEST_EQ(os1.str(), os2.str()); in run_tests()
|