Home
last modified time | relevance | path

Searched refs:Bottom (Results 1 – 25 of 167) sorted by relevance

1234567

/third_party/skia/third_party/externals/harfbuzz/src/ms-use/
DIndicPositionalCategory-Additional.txt17 # Indic_Positional_Category=Bottom
18 0F72 ; Bottom # Mn TIBETAN VOWEL SIGN I # Not really below, but need to override to …
19 0F7A..0F7D ; Bottom # Mn [4] TIBETAN VOWEL SIGN E..TIBETAN VOWEL SIGN OO # Not really below, b…
20 0F80 ; Bottom # Mn TIBETAN VOWEL SIGN REVERSED I # Not really below, but need to ove…
21 A9BF ; Bottom # Mc JAVANESE CONSONANT SIGN CAKRA
22 11127..11129 ; Bottom # Mn [3] CHAKMA VOWEL SIGN A..CHAKMA VOWEL SIGN II
23 1112D ; Bottom # Mn CHAKMA VOWEL SIGN AI
24 11130 ; Bottom # Mn CHAKMA VOWEL SIGN OI
58 # Indic_Positional_Category=Bottom
59 0859..085B ; Bottom # Mn [3] MANDAIC AFFRICATION MARK..MANDAIC GEMINATION MARK
[all …]
/third_party/harfbuzz/src/ms-use/
DIndicPositionalCategory-Additional.txt16 # Indic_Positional_Category=Bottom
17 0F72 ; Bottom # Mn TIBETAN VOWEL SIGN I # Not really below, but need to override to fi…
18 0F7A..0F7D ; Bottom # Mn [4] TIBETAN VOWEL SIGN E..TIBETAN VOWEL SIGN OO # Not really below, but…
19 0F80 ; Bottom # Mn TIBETAN VOWEL SIGN REVERSED I # Not really below, but need to overr…
20 A9BF ; Bottom # Mc JAVANESE CONSONANT SIGN CAKRA
21 11127..11129; Bottom # Mn [3] CHAKMA VOWEL SIGN A..CHAKMA VOWEL SIGN II
22 1112D ; Bottom # Mn CHAKMA VOWEL SIGN AI
23 11130 ; Bottom # Mn CHAKMA VOWEL SIGN OI
57 # Indic_Positional_Category=Bottom
58 0859..085B ; Bottom # Mn [3] MANDAIC AFFRICATION MARK..MANDAIC GEMINATION MARK
[all …]
/third_party/typescript/tests/baselines/reference/
DtypeParameterDiamond2.types8 function diamondBottom<Bottom extends T | U>() {
9 >diamondBottom : <Bottom extends T | U>() => void
17 var bottom: Bottom;
18 >bottom : Bottom
26 >middle = bottom : Bottom
28 >bottom : Bottom
31 >top = bottom : Bottom
33 >bottom : Bottom
DtypeParameterDiamond3.types8 function diamondBottom<Bottom extends Top | T | U>() {
9 >diamondBottom : <Bottom extends Top | T | U>() => void
17 var bottom: Bottom;
18 >bottom : Bottom
26 >middle = bottom : Bottom
28 >bottom : Bottom
31 >top = bottom : Bottom
33 >bottom : Bottom
DtypeParameterDiamond1.types8 function diamondBottom<Bottom extends T | U>() {
9 >diamondBottom : <Bottom extends T | U>() => void
17 var bottom: Bottom;
18 >bottom : Bottom
26 >middle = bottom : Bottom
28 >bottom : Bottom
31 >top = bottom : Bottom
33 >bottom : Bottom
DtypeParameterDiamond4.types8 function diamondBottom<Bottom extends Top | T | U>() {
9 >diamondBottom : <Bottom extends Top | T | U>() => void
17 var bottom: Bottom;
18 >bottom : Bottom
26 >middle = bottom : Bottom
28 >bottom : Bottom
31 >top = bottom : Bottom
33 >bottom : Bottom
DtypeParameterDiamond3.errors.txt5 tests/cases/compiler/typeParameterDiamond3.ts(9,13): error TS2322: Type 'Bottom' is not assignable …
10 Type 'Bottom' is not assignable to type 'U'.
11 'U' could be instantiated with an arbitrary type which could be unrelated to 'Bottom'.
16 tests/cases/compiler/typeParameterDiamond3.ts(10,13): error TS2322: Type 'Bottom' is not assignable…
17 'Top' could be instantiated with an arbitrary type which could be unrelated to 'Bottom'.
27 function diamondBottom<Bottom extends Top | T | U>() {
30 var bottom: Bottom;
40 !!! error TS2322: Type 'Bottom' is not assignable to type 'T | U'.
45 !!! error TS2322: Type 'Bottom' is not assignable to type 'U'.
46 … 'U' could be instantiated with an arbitrary type which could be unrelated to 'Bottom'.
[all …]
DtypeParameterDiamond3.symbols11 function diamondBottom<Bottom extends Top | T | U>() {
13 >Bottom : Symbol(Bottom, Decl(typeParameterDiamond3.ts, 2, 31))
27 var bottom: Bottom;
29 >Bottom : Symbol(Bottom, Decl(typeParameterDiamond3.ts, 2, 31))
DtypeParameterDiamond1.symbols13 function diamondBottom<Bottom extends T | U>() {
15 >Bottom : Symbol(Bottom, Decl(typeParameterDiamond1.ts, 2, 31))
28 var bottom: Bottom;
30 >Bottom : Symbol(Bottom, Decl(typeParameterDiamond1.ts, 2, 31))
DtypeParameterDiamond4.symbols11 function diamondBottom<Bottom extends Top | T | U>() {
13 >Bottom : Symbol(Bottom, Decl(typeParameterDiamond4.ts, 2, 31))
28 var bottom: Bottom;
30 >Bottom : Symbol(Bottom, Decl(typeParameterDiamond4.ts, 2, 31))
DtypeParameterDiamond2.symbols12 function diamondBottom<Bottom extends T | U>() {
14 >Bottom : Symbol(Bottom, Decl(typeParameterDiamond2.ts, 2, 31))
27 var bottom: Bottom;
29 >Bottom : Symbol(Bottom, Decl(typeParameterDiamond2.ts, 2, 31))
DtypeParameterDiamond2.errors.txt5 tests/cases/compiler/typeParameterDiamond2.ts(10,13): error TS2322: Type 'Bottom' is not assignable…
6 'Top' could be instantiated with an arbitrary type which could be unrelated to 'Bottom'.
16 function diamondBottom<Bottom extends T | U>() {
19 var bottom: Bottom;
30 !!! error TS2322: Type 'Bottom' is not assignable to type 'Top'.
31 … TS2322: 'Top' could be instantiated with an arbitrary type which could be unrelated to 'Bottom'.
DtypeParameterDiamond4.errors.txt5 tests/cases/compiler/typeParameterDiamond4.ts(10,13): error TS2322: Type 'Bottom' is not assignable…
6 'Top' could be instantiated with an arbitrary type which could be unrelated to 'Bottom'.
16 function diamondBottom<Bottom extends Top | T | U>() {
19 var bottom: Bottom;
30 !!! error TS2322: Type 'Bottom' is not assignable to type 'Top'.
31 … TS2322: 'Top' could be instantiated with an arbitrary type which could be unrelated to 'Bottom'.
DtypeParameterDiamond3.js4 function diamondBottom<Bottom extends Top | T | U>() {
7 var bottom: Bottom;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyUtilities.h40 MachineBasicBlock *Bottom = Unit->getHeader(); in getBottom() local
42 if (MBB->getNumber() > Bottom->getNumber()) in getBottom()
43 Bottom = MBB; in getBottom()
44 return Bottom; in getBottom()
/third_party/openGLES/extensions/NV/
DNV_vdpau_interop2.txt107 … 1 w x h/2 R8 Bottom-field luma
109 … 3 w/2 x h/4 R8G8 Bottom-field chroma
111 … 1 w x h/2 R8 Bottom-field luma
113 … 3 w/2 x h/2 R8G8 Bottom-field chroma
115 … 1 w x h/2 R8 Bottom-field luma
117 … 3 w x h/2 R8G8 Bottom-field chroma
125 … 1 w x h/2 R8 Bottom-field luma
127 … 3 w/2 x h/4 R8G8 Bottom-field chroma
129 … 1 w x h/2 R8 Bottom-field luma
131 … 3 w/2 x h/2 R8G8 Bottom-field chroma
[all …]
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dgen-use-table.py296 'Blw': [Bottom],
301 'Blw': [Bottom, Bottom_And_Left],
307 'Blw': [Bottom],
311 'Blw': [Bottom, Overstruck, Bottom_And_Right],
317 'Blw': [Bottom, Overstruck],
323 'Blw': [Bottom],
330 'Blw': [Bottom],
354 UIPC = Bottom
360 UIPC = Bottom
361 elif UIPC == Bottom:
[all …]
/third_party/boost/boost/geometry/geometries/register/
Dsegment.hpp64 #define BOOST_GEOMETRY_DETAIL_SPECIALIZE_SEGMENT_ACCESS_4VALUES(Segment, Point, Left, Bottom, Right… argument
74 static inline ct get(Segment const& b) { return b. Bottom; } \
75 static inline void set(Segment& b, ct const& value) { b. Bottom = value; } \
118 #define BOOST_GEOMETRY_REGISTER_SEGMENT_2D_4VALUES(Segment, PointType, Left, Bottom, Right, Top) \ argument
121 …BOOST_GEOMETRY_DETAIL_SPECIALIZE_SEGMENT_ACCESS_4VALUES(Segment, PointType, Left, Bottom, Right, T…
Dbox.hpp64 #define BOOST_GEOMETRY_DETAIL_SPECIALIZE_BOX_ACCESS_4VALUES(Box, Point, Left, Bottom, Right, Top) \ argument
74 static inline ct get(Box const& b) { return b. Bottom; } \
75 static inline void set(Box& b, ct const& value) { b. Bottom = value; } \
168 #define BOOST_GEOMETRY_REGISTER_BOX_2D_4VALUES(Box, Point, Left, Bottom, Right, Top) \ argument
171 BOOST_GEOMETRY_DETAIL_SPECIALIZE_BOX_ACCESS_4VALUES(Box, Point, Left, Bottom, Right, Top) \
/third_party/flutter/engine/flutter/flow/
Dmutators_stack_unittests.cc30 auto iter = stack.Bottom(); in TEST()
39 auto iter = stack.Bottom(); in TEST()
48 auto iter = stack.Bottom(); in TEST()
58 auto iter = stack.Bottom(); in TEST()
67 auto iter = stack.Bottom(); in TEST()
78 auto iter = stack.Bottom(); in TEST()
91 auto iter = stack.Bottom(); in TEST()
/third_party/typescript/tests/cases/compiler/
DtypeParameterDiamond2.ts3 function diamondBottom<Bottom extends T | U>() {
6 var bottom: Bottom;
DtypeParameterDiamond3.ts3 function diamondBottom<Bottom extends Top | T | U>() {
6 var bottom: Bottom;
DtypeParameterDiamond4.ts3 function diamondBottom<Bottom extends Top | T | U>() {
6 var bottom: Bottom;
DtypeParameterDiamond1.ts3 function diamondBottom<Bottom extends T | U>() {
6 var bottom: Bottom;
/third_party/node/deps/npm/docs/src/components/home/
DTerminal.js41 const Bottom = styled(Flex)` constant
105 <Bottom>
115 </Bottom>

1234567