Home
last modified time | relevance | path

Searched refs:ord (Results 1 – 25 of 6749) sorted by relevance

12345678910>>...270

/dports/x11/kitty/kitty-0.23.1/kitty_tests/
H A Dkeys.py113 ae(enc(ord('`'), shifted_key=ord('~')), '`')
119 ae(enc(ord('1'), shifted_key=ord('!')), '1')
125 ae(enc(ord('2'), shifted_key=ord('@')), '2')
131 ae(enc(ord('3'), shifted_key=ord('#')), '3')
137 ae(enc(ord('4'), shifted_key=ord('$')), '4')
143 ae(enc(ord('5'), shifted_key=ord('%')), '5')
149 ae(enc(ord('6'), shifted_key=ord('^')), '6')
155 ae(enc(ord('7'), shifted_key=ord('&')), '7')
161 ae(enc(ord('8'), shifted_key=ord('*')), '8')
167 ae(enc(ord('9'), shifted_key=ord('(')), '9')
[all …]
/dports/lang/python27/Python-2.7.18/Demo/curses/
H A Dxmas.py61 stdscr.addch(4, 1, ord('S'))
62 stdscr.addch(6, 1, ord('E'))
63 stdscr.addch(8, 1, ord('A'))
64 stdscr.addch(10, 1, ord('S'))
65 stdscr.addch(12, 1, ord('O'))
66 stdscr.addch(14, 1, ord('N'))
67 stdscr.addch(16, 1, ord("'"))
73 stdscr.addch(3, 5, ord('G'))
74 stdscr.addch(5, 5, ord('R'))
75 stdscr.addch(7, 5, ord('E'))
[all …]
/dports/lang/python-legacy/Python-2.7.18/Demo/curses/
H A Dxmas.py61 stdscr.addch(4, 1, ord('S'))
62 stdscr.addch(6, 1, ord('E'))
63 stdscr.addch(8, 1, ord('A'))
64 stdscr.addch(10, 1, ord('S'))
65 stdscr.addch(12, 1, ord('O'))
66 stdscr.addch(14, 1, ord('N'))
67 stdscr.addch(16, 1, ord("'"))
73 stdscr.addch(3, 5, ord('G'))
74 stdscr.addch(5, 5, ord('R'))
75 stdscr.addch(7, 5, ord('E'))
[all …]
/dports/net-p2p/c-lightning/lightning-0.10.2/ccan/ccan/utf8/test/
H A Drun-decode.c74 ord >>= 6; in encode_ord()
120 for (ord = 0x0001; ord <= 0x007F; ord++) { in test_unicode_scalar_value()
129 for (ord = 0x0080; ord <= 0x07FF; ord++) { in test_unicode_scalar_value()
138 for (ord = 0x0800; ord <= 0xFFFF && (ord & 0xF800) != 0xD800; ord++) { in test_unicode_scalar_value()
150 for (ord = 0x10000; ord <= 0x10FFFF; ord++) { in test_unicode_scalar_value()
170 for (ord = 0x0001; ord <= 0x007F; ord++) { in test_non_shortest_form()
179 for (ord = 0x0001; ord <= 0x07FF; ord++) { in test_non_shortest_form()
191 for (ord = 0x0001; ord <= 0xFFFF; ord++) { in test_non_shortest_form()
211 for (ord = 0x110000; ord <= 0x1FFFFF; ord++) { in test_non_unicode()
231 for (ord = 0xD800; ord <= 0xDFFF; ord++) { in test_surrogates()
[all …]
/dports/graphics/py-pyglet/pyglet-1.5.21/pyglet/libs/win32/
H A Dwinkey.py40 ord('A'): key.A,
41 ord('B'): key.B,
42 ord('C'): key.C,
43 ord('D'): key.D,
44 ord('E'): key.E,
45 ord('F'): key.F,
46 ord('G'): key.G,
47 ord('H'): key.H,
48 ord('I'): key.I,
49 ord('J'): key.J,
[all …]
/dports/graphics/py-pyglet150/pyglet-1.5.0/pyglet/libs/win32/
H A Dwinkey.py40 ord('A'): key.A,
41 ord('B'): key.B,
42 ord('C'): key.C,
43 ord('D'): key.D,
44 ord('E'): key.E,
45 ord('F'): key.F,
46 ord('G'): key.G,
47 ord('H'): key.H,
48 ord('I'): key.I,
49 ord('J'): key.J,
[all …]
/dports/lang/perl5.30/perl-5.30.3/t/op/
H A Dord.t16 ok(ord('A') == 65 || ord('A') == 193, "ord('A') is ".ord('A'));
18 is(ord(chr(500)), 500, "compile time chr 500");
24 ok(ord($x) == 65 || ord($x) == 193, "ord('$x') is ".ord($x));
29 is(ord(chr($x)), $x, "runtime chr $x");
34 is(ord($x), 0x1234, 'runtime ord \x{....}');
40 is(ord(chr( 0x100)), 0x100, '0x0100');
45 is(ord(chr( 0xFFF)), 0xFFF, '0x0FFF');
46 is(ord(chr( 0x1000)), 0x1000, '0x1000');
49 is(ord(chr( 0xCFFF)), 0xCFFF, '0xCFFF');
50 is(ord(chr( 0xD000)), 0xD000, '0xD000');
[all …]
H A Dchars.t16 is (ord($c), 0, '\c@');
18 is (ord($c), 1, '\cA');
20 is (ord($c), 2, '\cB');
22 is (ord($c), 3, '\cC');
24 is (ord($c), 4, '\cD');
26 is (ord($c), 5, '\cE');
28 is (ord($c), 6, '\cF');
30 is (ord($c), 7, '\cG');
32 is (ord($c), 8, '\cH');
34 is (ord($c), 9, '\cI');
[all …]
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/t/op/
H A Dord.t16 ok(ord('A') == 65 || ord('A') == 193, "ord('A') is ".ord('A'));
18 is(ord(chr(500)), 500, "compile time chr 500");
24 ok(ord($x) == 65 || ord($x) == 193, "ord('$x') is ".ord($x));
29 is(ord(chr($x)), $x, "runtime chr $x");
34 is(ord($x), 0x1234, 'runtime ord \x{....}');
40 is(ord(chr( 0x100)), 0x100, '0x0100');
45 is(ord(chr( 0xFFF)), 0xFFF, '0x0FFF');
46 is(ord(chr( 0x1000)), 0x1000, '0x1000');
49 is(ord(chr( 0xCFFF)), 0xCFFF, '0xCFFF');
50 is(ord(chr( 0xD000)), 0xD000, '0xD000');
[all …]
H A Dchars.t16 is (ord($c), 0, '\c@');
18 is (ord($c), 1, '\cA');
20 is (ord($c), 2, '\cB');
22 is (ord($c), 3, '\cC');
24 is (ord($c), 4, '\cD');
26 is (ord($c), 5, '\cE');
28 is (ord($c), 6, '\cF');
30 is (ord($c), 7, '\cG');
32 is (ord($c), 8, '\cH');
34 is (ord($c), 9, '\cI');
[all …]
/dports/lang/perl5.32/perl-5.32.1/t/op/
H A Dord.t16 ok(ord('A') == 65 || ord('A') == 193, "ord('A') is ".ord('A'));
18 is(ord(chr(500)), 500, "compile time chr 500");
24 ok(ord($x) == 65 || ord($x) == 193, "ord('$x') is ".ord($x));
29 is(ord(chr($x)), $x, "runtime chr $x");
34 is(ord($x), 0x1234, 'runtime ord \x{....}');
40 is(ord(chr( 0x100)), 0x100, '0x0100');
45 is(ord(chr( 0xFFF)), 0xFFF, '0x0FFF');
46 is(ord(chr( 0x1000)), 0x1000, '0x1000');
49 is(ord(chr( 0xCFFF)), 0xCFFF, '0xCFFF');
50 is(ord(chr( 0xD000)), 0xD000, '0xD000');
[all …]
H A Dchars.t16 is (ord($c), 0, '\c@');
18 is (ord($c), 1, '\cA');
20 is (ord($c), 2, '\cB');
22 is (ord($c), 3, '\cC');
24 is (ord($c), 4, '\cD');
26 is (ord($c), 5, '\cE');
28 is (ord($c), 6, '\cF');
30 is (ord($c), 7, '\cG');
32 is (ord($c), 8, '\cH');
34 is (ord($c), 9, '\cI');
[all …]
/dports/lang/perl5.34/perl-5.34.0/t/op/
H A Dord.t16 ok(ord('A') == 65 || ord('A') == 193, "ord('A') is ".ord('A'));
18 is(ord(chr(500)), 500, "compile time chr 500");
24 ok(ord($x) == 65 || ord($x) == 193, "ord('$x') is ".ord($x));
29 is(ord(chr($x)), $x, "runtime chr $x");
34 is(ord($x), 0x1234, 'runtime ord \x{....}');
40 is(ord(chr( 0x100)), 0x100, '0x0100');
45 is(ord(chr( 0xFFF)), 0xFFF, '0x0FFF');
46 is(ord(chr( 0x1000)), 0x1000, '0x1000');
49 is(ord(chr( 0xCFFF)), 0xCFFF, '0xCFFF');
50 is(ord(chr( 0xD000)), 0xD000, '0xD000');
[all …]
H A Dchars.t16 is (ord($c), 0, '\c@');
18 is (ord($c), 1, '\cA');
20 is (ord($c), 2, '\cB');
22 is (ord($c), 3, '\cC');
24 is (ord($c), 4, '\cD');
26 is (ord($c), 5, '\cE');
28 is (ord($c), 6, '\cF');
30 is (ord($c), 7, '\cG');
32 is (ord($c), 8, '\cH');
34 is (ord($c), 9, '\cI');
[all …]
/dports/devel/scalatest/scalatest-1.6.1/src/test/scala/org/scalatest/events/
H A DOrdinalSpec.scala20 ord = ord.next
33 ord = ord.nextNewOldPair._1
47 ord = ord.next
50 ord = ord.nextNewOldPair._1
54 ord = ord.next
73 ord = ord.next
78 ord = forNewSuite
94 ord = ord.next
129 ord = nextOrd
172 ord = ord.next
[all …]
/dports/math/singular/Singular-Release-4-2-1/libpolys/polys/templates/
H A Dp_Procs_Impl.h239 switch(ord) in p_OrdEnum_2_String()
351 return (ord == OrdPomogZero || ord == OrdNomogZero || in IsZeroOrd()
352 ord == OrdNegPomogZero || ord == OrdPosNomogZero || in IsZeroOrd()
353 ord == OrdPomogNegZero || ord == OrdNomogPosZero || in IsZeroOrd()
354 ord == OrdPosNomogPosZero || ord == OrdPosPosNomogZero || in IsZeroOrd()
362 switch (ord) in ZeroOrd_2_NonZeroOrd()
380 return ord; in ZeroOrd_2_NonZeroOrd()
385 #define ZeroOrd_2_NonZeroOrd(ord) (ord) argument
467 ord = ZeroOrd_2_NonZeroOrd(ord, 1); in FastOrdZeroFilter()
483 ord = ZeroOrd_2_NonZeroOrd(ord, 0); in p_Add_q__Filter()
[all …]
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/zendframework/zendsearch/library/ZendSearch/Lucene/Index/
H A DDictionaryLoader.php48 … $tiVersion = ord($data[0]) << 24 | ord($data[1]) << 16 | ord($data[2]) << 8 | ord($data[3]);
85 …$skipInterval = ord($data[$pos]) << 24 | ord($data[$pos+1]) << 16 | ord($data[$pos+2]) << 8 | ord
102 $nbyte = ord($data[$pos++]);
105 $nbyte = ord($data[$pos++]);
110 $nbyte = ord($data[$pos++]);
113 $nbyte = ord($data[$pos++]);
174 $nbyte = ord($data[$pos++]);
182 $nbyte = ord($data[$pos++]);
190 $nbyte = ord($data[$pos++]);
199 $nbyte = ord($data[$pos++]);
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/hana/test/_include/laws/
H A Dfoldable.hpp494 maximum(list(ord<0>{}, ord<1>{}, ord<2>{}, ord<3>{})),
498 maximum(list(ord<1>{}, ord<0>{}, ord<2>{}, ord<3>{})),
502 maximum(list(ord<1>{}, ord<2>{}, ord<0>{}, ord<3>{})),
506 maximum(list(ord<1>{}, ord<2>{}, ord<3>{}, ord<0>{})),
510 maximum(list(ord<2>{}, ord<1>{}, ord<3>{}, ord<0>{})),
514 maximum(list(ord<2>{}, ord<3>{}, ord<1>{}, ord<0>{})),
518 maximum(list(ord<2>{}, ord<3>{}, ord<0>{}, ord<1>{})),
522 maximum(list(ord<3>{}, ord<2>{}, ord<0>{}, ord<1>{})),
526 maximum(list(ord<3>{}, ord<0>{}, ord<2>{}, ord<1>{})),
530 maximum(list(ord<3>{}, ord<0>{}, ord<1>{}, ord<2>{})),
[all …]
/dports/devel/boost-python-libs/boost_1_72_0/libs/hana/test/_include/laws/
H A Dfoldable.hpp494 maximum(list(ord<0>{}, ord<1>{}, ord<2>{}, ord<3>{})),
498 maximum(list(ord<1>{}, ord<0>{}, ord<2>{}, ord<3>{})),
502 maximum(list(ord<1>{}, ord<2>{}, ord<0>{}, ord<3>{})),
506 maximum(list(ord<1>{}, ord<2>{}, ord<3>{}, ord<0>{})),
510 maximum(list(ord<2>{}, ord<1>{}, ord<3>{}, ord<0>{})),
514 maximum(list(ord<2>{}, ord<3>{}, ord<1>{}, ord<0>{})),
518 maximum(list(ord<2>{}, ord<3>{}, ord<0>{}, ord<1>{})),
522 maximum(list(ord<3>{}, ord<2>{}, ord<0>{}, ord<1>{})),
526 maximum(list(ord<3>{}, ord<0>{}, ord<2>{}, ord<1>{})),
530 maximum(list(ord<3>{}, ord<0>{}, ord<1>{}, ord<2>{})),
[all …]
/dports/devel/boost-libs/boost_1_72_0/libs/hana/test/_include/laws/
H A Dfoldable.hpp494 maximum(list(ord<0>{}, ord<1>{}, ord<2>{}, ord<3>{})),
498 maximum(list(ord<1>{}, ord<0>{}, ord<2>{}, ord<3>{})),
502 maximum(list(ord<1>{}, ord<2>{}, ord<0>{}, ord<3>{})),
506 maximum(list(ord<1>{}, ord<2>{}, ord<3>{}, ord<0>{})),
510 maximum(list(ord<2>{}, ord<1>{}, ord<3>{}, ord<0>{})),
514 maximum(list(ord<2>{}, ord<3>{}, ord<1>{}, ord<0>{})),
518 maximum(list(ord<2>{}, ord<3>{}, ord<0>{}, ord<1>{})),
522 maximum(list(ord<3>{}, ord<2>{}, ord<0>{}, ord<1>{})),
526 maximum(list(ord<3>{}, ord<0>{}, ord<2>{}, ord<1>{})),
530 maximum(list(ord<3>{}, ord<0>{}, ord<1>{}, ord<2>{})),
[all …]
/dports/devel/hyperscan/boost_1_75_0/libs/hana/test/_include/laws/
H A Dfoldable.hpp494 maximum(list(ord<0>{}, ord<1>{}, ord<2>{}, ord<3>{})),
498 maximum(list(ord<1>{}, ord<0>{}, ord<2>{}, ord<3>{})),
502 maximum(list(ord<1>{}, ord<2>{}, ord<0>{}, ord<3>{})),
506 maximum(list(ord<1>{}, ord<2>{}, ord<3>{}, ord<0>{})),
510 maximum(list(ord<2>{}, ord<1>{}, ord<3>{}, ord<0>{})),
514 maximum(list(ord<2>{}, ord<3>{}, ord<1>{}, ord<0>{})),
518 maximum(list(ord<2>{}, ord<3>{}, ord<0>{}, ord<1>{})),
522 maximum(list(ord<3>{}, ord<2>{}, ord<0>{}, ord<1>{})),
526 maximum(list(ord<3>{}, ord<0>{}, ord<2>{}, ord<1>{})),
530 maximum(list(ord<3>{}, ord<0>{}, ord<1>{}, ord<2>{})),
[all …]
/dports/lang/fpc-source/fpc-3.2.2/tests/test/jvm/
H A Dtaddsetint.pp118 ([ord(A_MOVE),ord(A_FTST),ord(A_CPSAVE)]),
135 ([ord(DA),ord(DD),ord(DM)]),
136 ([ord(DB)..ord(DI)]),
194 if ( [ord(A_BLE)..ord(A_BPL)] <> [ord(A_BLE)..ord(A_BPL)] ) then
368 if oplist <> [ord(A_MOVE),ord(A_LABEL),ord(A_JSR)] then
391 if not (constset3[1] = [ord(DA),ord(DD),ord(DM)]) then
414 if ( [ord(A_BLE)..ord(A_BPL)] <> [ord(A_BLE)..ord(A_BPL)] ) then
416 if (constset3[1] <> [ord(DA),ord(DD),ord(DM)]) then
435 oplist := [ord(DC),ord(DF)..ord(DM)];
464 CheckPassed( oplist = [ord(DG),ord(DI),ord(DM)] );
[all …]
/dports/science/berkeleygw/BGW-2.0.0/Common/
H A Dsort_inc.f9069 tord = ord(ii)
73 ord(jj+1) = ord(jj)
184 ord (ID+2) = ord (ID+3)
191 ord (ID+1) = ord (ID+3)
192 ord (ID+3) = ord (ID+2)
210 ord (ID+2) = ord (ID+3)
218 ord (ID+3) = ord (ID+4)
227 ord (ID+1) = ord (ID+3)
239 ord (ID+3) = ord (ID+4)
244 ord (ID+2) = ord (ID+4)
[all …]
/dports/devel/py-pysdl2/PySDL2-0.9.9/sdl2/
H A Dkeycode.py55 SDLK_0 = ord('0')
56 SDLK_1 = ord('1')
57 SDLK_2 = ord('2')
58 SDLK_3 = ord('3')
59 SDLK_4 = ord('4')
60 SDLK_5 = ord('5')
61 SDLK_6 = ord('6')
62 SDLK_7 = ord('7')
63 SDLK_8 = ord('8')
64 SDLK_9 = ord('9')
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/utilib/test/studies/
H A Dsort_test.cpp164 vector<int> ord; in test_sort() local
166 order(ord,tmp); in test_sort()
173 order(ord,tmp); in test_sort()
179 vector<int> ord; in test_sort() local
197 vector<int> ord; in test_sort() local
212 vector<int> ord; in test_sort() local
230 vector<int> ord; in test_sort() local
232 rank(ord,tmp); in test_sort()
239 rank(ord,tmp); in test_sort()
245 vector<int> ord; in test_sort() local
[all …]

12345678910>>...270