Home
last modified time | relevance | path

Searched refs:Big (Results 1 – 25 of 154) sorted by relevance

1234567

/third_party/typescript/tests/cases/compiler/
DnormalizedIntersectionTooComplex.ts14 interface Big { interface
15 "0": { common?: string; "0"?: number, ref?: Obj<Big["0"]> | Func<Big["0"]>; }
16 "1": { common?: string; "1"?: number, ref?: Obj<Big["1"]> | Func<Big["1"]>; }
17 "2": { common?: string; "2"?: number, ref?: Obj<Big["2"]> | Func<Big["2"]>; }
18 "3": { common?: string; "3"?: number, ref?: Obj<Big["3"]> | Func<Big["3"]>; }
19 "4": { common?: string; "4"?: number, ref?: Obj<Big["4"]> | Func<Big["4"]>; }
20 "5": { common?: string; "5"?: number, ref?: Obj<Big["5"]> | Func<Big["5"]>; }
21 "6": { common?: string; "6"?: number, ref?: Obj<Big["6"]> | Func<Big["6"]>; }
22 "7": { common?: string; "7"?: number, ref?: Obj<Big["7"]> | Func<Big["7"]>; }
23 "8": { common?: string; "8"?: number, ref?: Obj<Big["8"]> | Func<Big["8"]>; }
[all …]
/third_party/typescript/tests/baselines/reference/
DnormalizedIntersectionTooComplex.js13 interface Big {
14 "0": { common?: string; "0"?: number, ref?: Obj<Big["0"]> | Func<Big["0"]>; }
15 "1": { common?: string; "1"?: number, ref?: Obj<Big["1"]> | Func<Big["1"]>; }
16 "2": { common?: string; "2"?: number, ref?: Obj<Big["2"]> | Func<Big["2"]>; }
17 "3": { common?: string; "3"?: number, ref?: Obj<Big["3"]> | Func<Big["3"]>; }
18 "4": { common?: string; "4"?: number, ref?: Obj<Big["4"]> | Func<Big["4"]>; }
19 "5": { common?: string; "5"?: number, ref?: Obj<Big["5"]> | Func<Big["5"]>; }
20 "6": { common?: string; "6"?: number, ref?: Obj<Big["6"]> | Func<Big["6"]>; }
21 "7": { common?: string; "7"?: number, ref?: Obj<Big["7"]> | Func<Big["7"]>; }
22 "8": { common?: string; "8"?: number, ref?: Obj<Big["8"]> | Func<Big["8"]>; }
[all …]
DnormalizedIntersectionTooComplex.symbols38 interface Big {
39 >Big : Symbol(Big, Decl(normalizedIntersectionTooComplex.ts, 9, 52))
41 "0": { common?: string; "0"?: number, ref?: Obj<Big["0"]> | Func<Big["0"]>; }
42 >"0" : Symbol(Big["0"], Decl(normalizedIntersectionTooComplex.ts, 11, 15))
47 >Big : Symbol(Big, Decl(normalizedIntersectionTooComplex.ts, 9, 52))
49 >Big : Symbol(Big, Decl(normalizedIntersectionTooComplex.ts, 9, 52))
51 "1": { common?: string; "1"?: number, ref?: Obj<Big["1"]> | Func<Big["1"]>; }
52 >"1" : Symbol(Big["1"], Decl(normalizedIntersectionTooComplex.ts, 12, 81))
57 >Big : Symbol(Big, Decl(normalizedIntersectionTooComplex.ts, 9, 52))
59 >Big : Symbol(Big, Decl(normalizedIntersectionTooComplex.ts, 9, 52))
[all …]
DnormalizedIntersectionTooComplex.errors.txt17 interface Big {
18 "0": { common?: string; "0"?: number, ref?: Obj<Big["0"]> | Func<Big["0"]>; }
19 "1": { common?: string; "1"?: number, ref?: Obj<Big["1"]> | Func<Big["1"]>; }
20 "2": { common?: string; "2"?: number, ref?: Obj<Big["2"]> | Func<Big["2"]>; }
21 "3": { common?: string; "3"?: number, ref?: Obj<Big["3"]> | Func<Big["3"]>; }
22 "4": { common?: string; "4"?: number, ref?: Obj<Big["4"]> | Func<Big["4"]>; }
23 "5": { common?: string; "5"?: number, ref?: Obj<Big["5"]> | Func<Big["5"]>; }
24 "6": { common?: string; "6"?: number, ref?: Obj<Big["6"]> | Func<Big["6"]>; }
25 "7": { common?: string; "7"?: number, ref?: Obj<Big["7"]> | Func<Big["7"]>; }
26 "8": { common?: string; "8"?: number, ref?: Obj<Big["8"]> | Func<Big["8"]>; }
[all …]
DnormalizedIntersectionTooComplex.types21 interface Big {
22 "0": { common?: string; "0"?: number, ref?: Obj<Big["0"]> | Func<Big["0"]>; }
28 "1": { common?: string; "1"?: number, ref?: Obj<Big["1"]> | Func<Big["1"]>; }
34 "2": { common?: string; "2"?: number, ref?: Obj<Big["2"]> | Func<Big["2"]>; }
40 "3": { common?: string; "3"?: number, ref?: Obj<Big["3"]> | Func<Big["3"]>; }
46 "4": { common?: string; "4"?: number, ref?: Obj<Big["4"]> | Func<Big["4"]>; }
52 "5": { common?: string; "5"?: number, ref?: Obj<Big["5"]> | Func<Big["5"]>; }
58 "6": { common?: string; "6"?: number, ref?: Obj<Big["6"]> | Func<Big["6"]>; }
64 "7": { common?: string; "7"?: number, ref?: Obj<Big["7"]> | Func<Big["7"]>; }
70 "8": { common?: string; "8"?: number, ref?: Obj<Big["8"]> | Func<Big["8"]>; }
[all …]
/third_party/boost/libs/multiprecision/test/
Dtest_mixed.hpp11 template <class Big, class Small>
14 Big big_val = 1; in test()
15 big_val += std::numeric_limits<Big>::epsilon(); in test()
68 BOOST_CHECK_EQUAL(small_val + big_val, Big(small_val) + big_val); in test()
69 BOOST_CHECK_EQUAL(small_val - big_val, Big(small_val) - big_val); in test()
70 BOOST_CHECK_EQUAL(small_val * big_val, Big(small_val) * big_val); in test()
71 BOOST_CHECK_EQUAL(small_val / big_val, Big(small_val) / big_val); in test()
72 BOOST_CHECK_EQUAL(big_val + small_val, big_val + Big(small_val)); in test()
73 BOOST_CHECK_EQUAL(big_val - small_val, big_val - Big(small_val)); in test()
74 BOOST_CHECK_EQUAL(big_val * small_val, big_val * Big(small_val)); in test()
[all …]
/third_party/boost/libs/optional/doc/
D1A_on_performance.qbk110 void fun(const optional<Big>& v)
118 optional<Big> ov;
119 Big v;
122 fun(v); // copy constructor of Big
125 No copy elision or move semantics can save us from copying type `Big` here. Not that we need any co…
127 void fun(const Big& v)
134 optional<Big> ov;
135 Big v;
142 void fun(optional<const Big&> v) // note where the reference is
150 optional<Big> ov;
[all …]
/third_party/boost/libs/geometry/test/util/
Dmath_abs.cpp89 ttmath::Big<1, 4> p1 = bgm::pi<ttmath::Big<1, 4> >(); in BOOST_AUTO_TEST_CASE()
95 ttmath::Big<1, 4> n2 = -p2; in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/multiprecision/performance/
Dvoronoi_performance.cpp56 template <class Big>
62 typedef Big big_int_type;
110 template <class Big>
116 typedef Big big_int_type;
/third_party/boost/libs/utility/test/
Doperators_test.cpp529 template <class Big, class Small>
534 Big b1 = Big( randomizer() ); in operator ()()
535 Big b2 = Big( randomizer() ); in operator ()()
538 test_all( Wrapped1<Big>(b1), Wrapped1<Big>(b2), b1, b2 ); in operator ()()
539 test_all( Wrapped2<Big, Small>(b1), s, b1, s ); in operator ()()
543 template <class Big, class Small>
548 Big b1 = Big( randomizer() ); in operator ()()
551 test_left( Wrapped6<Big, Small>(b1), s, b1, s ); in operator ()()
/third_party/libphonenumber/resources/geocoding/en/
D268.txt31 2682363|Big Bend, Lubombo district
32 2682364|Big Bend, Lubombo district
/third_party/PyYAML/tests/data/
Dspec-02-12.data7 - item : Big Shoes
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dvalue_listenable_builder_test.dart93 valueListenable.value = 'Big Head';
96 expect(find.text('Big Head'), findsNothing);
/third_party/flutter/skia/tests/
DArenaAllocTest.cpp30 struct Big { struct
31 Big() {} in Big() function
/third_party/boost/libs/geometry/doc/src/examples/algorithms/
Dassign_2d_point.cpp33 boost::geometry::model::d2::point_xy<ttmath::Big<1,4> > p2; in main()
/third_party/flutter/skia/third_party/externals/spirv-tools/test/
Dbinary_endianness_test.cpp39 TEST(BinaryEndianness, Big) { in TEST() argument
/third_party/spirv-tools/test/
Dbinary_endianness_test.cpp40 TEST(BinaryEndianness, Big) { in TEST() argument
/third_party/skia/third_party/externals/spirv-tools/test/
Dbinary_endianness_test.cpp40 TEST(BinaryEndianness, Big) { in TEST() argument
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Dbinary_endianness_test.cpp40 TEST(BinaryEndianness, Big) { in TEST() argument
/third_party/flutter/skia/third_party/externals/dawn/src/tests/unittests/
DCommandAllocatorTests.cpp28 Big, enumerator
210 CommandBig* big = allocator.Allocate<CommandBig>(CommandType::Big); in TEST()
221 ASSERT_EQ(type, CommandType::Big); in TEST()
/third_party/node/deps/npm/node_modules/json-stringify-safe/
DCHANGELOG.md10 Big-O(h-my-god-it-linearly-searched-every-object) it had ever seen. Searching
/third_party/boost/libs/spirit/doc/
Doperator_template.qbk54 Big-O complexity of the parser
Dreference_template.qbk78 Big-O complexity of the parser
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DCommandAllocatorTests.cpp28 Big, enumerator
211 CommandBig* big = allocator.Allocate<CommandBig>(CommandType::Big); in TEST()
222 ASSERT_EQ(type, CommandType::Big); in TEST()
/third_party/NuttX/
DINVIOLABLES.md103 ### Keep the Big Picture
105 - Too much focus on solving the problem in hand, loss of the Big Picture.

1234567