/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/text/ |
D | word_break_properties.dart | 49 UnicodePropertyLookup<CharProperty>(<UnicodeRange<CharProperty>>[ 50 UnicodeRange<CharProperty>(0x000A, 0x000A, CharProperty.LF), 51 UnicodeRange<CharProperty>(0x000B, 0x000C, CharProperty.Newline), 52 UnicodeRange<CharProperty>(0x000D, 0x000D, CharProperty.CR), 53 UnicodeRange<CharProperty>(0x0020, 0x0020, CharProperty.WSegSpace), 54 UnicodeRange<CharProperty>(0x0022, 0x0022, CharProperty.DoubleQuote), 55 UnicodeRange<CharProperty>(0x0027, 0x0027, CharProperty.SingleQuote), 56 UnicodeRange<CharProperty>(0x002C, 0x002C, CharProperty.MidNum), 57 UnicodeRange<CharProperty>(0x002E, 0x002E, CharProperty.MidNumLet), 58 UnicodeRange<CharProperty>(0x0030, 0x0039, CharProperty.Numeric), [all …]
|
D | unicode_range.dart | 13 /// Each instance of [UnicodeRange] represents a range of unicode characters 17 /// UnicodeRange(0x0041, 0x005A, CharProperty.ALetter); 25 class UnicodeRange<P> { 26 const UnicodeRange(this.start, this.end, this.property); 51 /// Given a list of [UnicodeRange]s, this class performs efficient lookup 65 final List<UnicodeRange<P>> ranges; 77 final UnicodeRange<P> range = ranges[mid];
|
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/ |
D | OS2Tests.java | 21 import com.google.typography.font.sfntly.table.core.OS2Table.UnicodeRange; 69 EnumSet<UnicodeRange> urSet = makeUnicodeRangeSet(false); in testUnicodeRange() 70 long[] urArray = UnicodeRange.asArray(urSet); in testUnicodeRange() 71 EnumSet<UnicodeRange> urSetCopy = in testUnicodeRange() 72 UnicodeRange.asSet(urArray[0], urArray[1], urArray[2], urArray[3]); in testUnicodeRange() 83 private static EnumSet<UnicodeRange> makeUnicodeRangeSet(boolean odd) { in makeUnicodeRangeSet() 84 EnumSet<UnicodeRange> rSet = EnumSet.noneOf(UnicodeRange.class); in makeUnicodeRangeSet() 86 for (UnicodeRange r : UnicodeRange.values()) { in makeUnicodeRangeSet()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/ |
D | OS2Tests.java | 21 import com.google.typography.font.sfntly.table.core.OS2Table.UnicodeRange; 69 EnumSet<UnicodeRange> urSet = makeUnicodeRangeSet(false); in testUnicodeRange() 70 long[] urArray = UnicodeRange.asArray(urSet); in testUnicodeRange() 71 EnumSet<UnicodeRange> urSetCopy = in testUnicodeRange() 72 UnicodeRange.asSet(urArray[0], urArray[1], urArray[2], urArray[3]); in testUnicodeRange() 83 private static EnumSet<UnicodeRange> makeUnicodeRangeSet(boolean odd) { in makeUnicodeRangeSet() 84 EnumSet<UnicodeRange> rSet = EnumSet.noneOf(UnicodeRange.class); in makeUnicodeRangeSet() 86 for (UnicodeRange r : UnicodeRange.values()) { in makeUnicodeRangeSet()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
D | OS2Table.java | 347 public enum UnicodeRange { enum in OS2Table 477 public static UnicodeRange range(int bit) { in range() 478 if (bit > UnicodeRange.values().length) { in range() 481 return UnicodeRange.values()[bit]; in range() 484 public static EnumSet<UnicodeRange> asSet(long range1, long range2, long range3, long range4) { in asSet() 485 EnumSet<UnicodeRange> set = EnumSet.noneOf(UnicodeRange.class); in asSet() 489 for (UnicodeRange ur : UnicodeRange.values()) { in asSet() 503 public static long[] asArray(EnumSet<UnicodeRange> rangeSet) { in asArray() 505 Iterator<UnicodeRange> iter = rangeSet.iterator(); in asArray() 507 UnicodeRange ur = iter.next(); in asArray() [all …]
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
D | OS2Table.java | 347 public enum UnicodeRange { enum in OS2Table 477 public static UnicodeRange range(int bit) { in range() 478 if (bit > UnicodeRange.values().length) { in range() 481 return UnicodeRange.values()[bit]; in range() 484 public static EnumSet<UnicodeRange> asSet(long range1, long range2, long range3, long range4) { in asSet() 485 EnumSet<UnicodeRange> set = EnumSet.noneOf(UnicodeRange.class); in asSet() 489 for (UnicodeRange ur : UnicodeRange.values()) { in asSet() 503 public static long[] asArray(EnumSet<UnicodeRange> rangeSet) { in asArray() 505 Iterator<UnicodeRange> iter = rangeSet.iterator(); in asArray() 507 UnicodeRange ur = iter.next(); in asArray() [all …]
|
/third_party/flutter/engine/flutter/lib/web_ui/tool/ |
D | unicode_sync_script.dart | 153 return 'UnicodeRange(${toHex(tuple.start)}, ${toHex(tuple.end)}, $propertyStr)'; 158 /// UnicodeRange(0x01C4, 0x0293, CharProperty.ALetter), 159 /// UnicodeRange(0x0294, 0x0294, CharProperty.ALetter), 160 /// UnicodeRange(0x0295, 0x02AF, CharProperty.ALetter), 163 /// UnicodeRange(0x01C4, 0x02AF, CharProperty.ALetter)
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
D | os2_table.h | 82 struct UnicodeRange { struct
|
D | os2_table.cc | 93 int32_t UnicodeRange::range(int32_t bit) { in range()
|
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
D | os2_table.h | 82 struct UnicodeRange { struct
|
D | os2_table.cc | 93 int32_t UnicodeRange::range(int32_t bit) { in range()
|
/third_party/skia/src/sfnt/ |
D | SkOTTable_OS_2_V1.h | 93 union UnicodeRange { union
|
D | SkOTTable_OS_2_V2.h | 95 union UnicodeRange { union
|
D | SkOTTable_OS_2_V3.h | 95 union UnicodeRange { union
|
D | SkOTTable_OS_2_V4.h | 95 union UnicodeRange { union
|
/third_party/flutter/skia/src/sfnt/ |
D | SkOTTable_OS_2_V1.h | 93 union UnicodeRange { union
|
D | SkOTTable_OS_2_V2.h | 95 union UnicodeRange { union
|
D | SkOTTable_OS_2_V3.h | 95 union UnicodeRange { union
|
D | SkOTTable_OS_2_V4.h | 95 union UnicodeRange { union
|