Home
last modified time | relevance | path

Searched defs:g2 (Results 1 – 25 of 218) sorted by relevance

123456789

/third_party/boost/libs/geometry/test/cs_undefined/
Dsetops.cpp18 inline void set_idsu(G1 const& g1, G2 const& g2, G3 & g3, S const& s) in set_idsu()
27 inline void set_ids(G1 const& g1, G2 const& g2, G3 & g3, S const& s) in set_ids()
35 inline void set_id(G1 const& g1, G2 const& g2, G3 & g3, S const& s) in set_id()
42 inline void set_i(G1 const& g1, G2 const& g2, G3 & g3, S const& s) in set_i()
48 inline void set_d(G1 const& g1, G2 const& g2, G3 & g3, S const& s) in set_d()
54 inline void set_idsu_pp(G1 const& g1, G2 const& g2, G3 & g3) in set_idsu_pp()
61 inline void set_idsu_ps(G1 const& g1, G2 const& g2, G3 & g3) in set_idsu_ps()
70 inline void set_idsu_ss(G1 const& g1, G2 const& g2, G3 & g3) in set_idsu_ss()
78 inline void set_ids_pp(G1 const& g1, G2 const& g2, G3 & g3) in set_ids_pp()
85 inline void set_ids_ps(G1 const& g1, G2 const& g2, G3 & g3) in set_ids_ps()
[all …]
Dtest_relops.hpp126 inline void rel(G1 const& g1, G2 const& g2, S const& s) in rel()
141 inline void rel_pp(G1 const& g1, G2 const& g2) in rel_pp()
148 inline void rel_ps(G1 const& g1, G2 const& g2) in rel_ps()
157 inline void rel_ss(G1 const& g1, G2 const& g2) in rel_ss()
/third_party/python/Lib/test/
Dtest_yield_from.py30 def g2(): function
55 def g2(): function
86 def g2(): function
117 def g2(): function
154 def g2(): function
198 def g2(): function
239 def g2(): function
273 def g2(): function
314 def g2(): function
370 def g2(): function
[all …]
/third_party/typescript/tests/baselines/reference/
DgeneratorTypeCheck35.js4 function g2() { function
12 function g2() { function
DgeneratorTypeCheck33.js4 function* g2() { generator
12 function* g2() { generator
DgeneratorTypeCheck34.js4 function* g2() { generator
12 function* g2() { generator
DcontextualSignatureInstatiationContravariance.js8 var g2: (g: Giraffe, e: Elephant) => void; variable
16 var g2; variable
DcontextualSignatureInstatiationCovariance.js8 var g2: (a: Animal, t: TallThing) => void; variable
16 var g2; variable
DgeneratorImplicitAny.js8 function* g2() { generator
36 function* g2() { generator
/third_party/boost/libs/mpi/src/
Dgroup.cpp45 bool operator==(const group& g1, const group& g2) in operator ==()
53 group operator|(const group& g1, const group& g2) in operator |()
61 group operator&(const group& g1, const group& g2) in operator &()
69 group operator-(const group& g1, const group& g2) in operator -()
/third_party/boost/libs/geometry/test/algorithms/set_operations/intersection/
Dtest_intersection.hpp62 G1 const& g1, G2 const& g2, in check_result()
172 G1 const& g1, G2 const& g2, in test_intersection()
292 G1 const& g1, G2 const& g2, in test_intersection()
313 G2 g2; in test_one() local
377 Geometry2 g2; in test_point_output() local
/third_party/boost/libs/geometry/test/
Dto_svg.hpp203 inline void geom_to_svg(G1 const& g1, G2 const& g2, in geom_to_svg()
228 inline void geom_to_svg(G1 const& g1, G2 const& g2, std::string const& filename) in geom_to_svg()
255 G2 g2; in geom_to_svg() local
309 inline void to_svg(G1 const& g1, G2 const& g2, std::string const& filename, bool sort = true, bool … in to_svg()
406 G2 g2; in to_svg() local
/third_party/typescript/tests/cases/conformance/es6/yieldExpressions/
DgeneratorTypeCheck29.ts2 function* g2(): Iterator<Iterable<(x: string) => number>> { generator
DgeneratorTypeCheck31.ts2 function* g2(): Iterator<() => Iterable<(x: string) => number>> { generator
DgeneratorTypeCheck30.ts2 function* g2(): Iterator<Iterable<(x: string) => number>> { generator
/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/
DgenericClassWithObjectTypeArgsAndConstraints.ts37 var g2: G2<D>; variable
57 var g2: G2<D>; variable
/third_party/boost/libs/phoenix/test/boost_bind_compatibility/
Dbind_stdcall_mf_test.cpp49 int __stdcall g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2() function
102 bind(&X::g2, &x, 1, 2)(); in member_function_test() local
103 bind(&X::g2, x, 1, 2)(); in member_function_test() local
104 bind(&X::g2, ref(x), 1, 2)(); in member_function_test() local
Dbind_void_mf_test.cpp55 int g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2() function
105 bind<void>(&X::g2, &x, 1, 2)(); in member_function_test() local
106 bind<void>(&X::g2, x, 1, 2)(); in member_function_test() local
107 bind<void>(&X::g2, ref(x), 1, 2)(); in member_function_test() local
Dbind_fastcall_mf_test.cpp49 void __fastcall g2(int a1, int a2) const { g1(a1); g1(a2); } in g2() function
100 bind(&X::g2, &x, 1, 2)(); in member_function_test() local
101 bind(&X::g2, x, 1, 2)(); in member_function_test() local
102 bind(&X::g2, ref(x), 1, 2)(); in member_function_test() local
Dbind_mf2_test.cpp47 int g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2() function
98 bind(&X::g2, &x, 1, 2 )(); in member_function_test() local
99 bind(&X::g2, x, 1, 2 )(); in member_function_test() local
100 bind(&X::g2, ref(x), 1, 2 )(); in member_function_test() local
Dbind_cdecl_mf_test.cpp29 int __cdecl g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2() function
80 bind(&X::g2, &x, 1, 2)(); in member_function_test() local
81 bind(&X::g2, x, 1, 2)(); in member_function_test() local
82 bind(&X::g2, ref(x), 1, 2)(); in member_function_test() local
/third_party/boost/libs/bind/test/
Dbind_cdecl_mf_test.cpp48 int __cdecl g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2() function
98 bind(&X::g2, &x, 1, 2)(); in member_function_test() local
99 bind(&X::g2, x, 1, 2)(); in member_function_test() local
100 bind(&X::g2, ref(x), 1, 2)(); in member_function_test() local
Dbind_noexcept_mf_test.cpp39 int g2(int a1, int a2) const noexcept { g1(a1); g1(a2); return 0; } in g2() function
87 boost::bind(&X::g2, &x, 1, 2)(); in member_function_test() local
88 boost::bind(&X::g2, x, 1, 2)(); in member_function_test() local
89 boost::bind(&X::g2, boost::ref(x), 1, 2)(); in member_function_test() local
Dbind_stdcall_mf_test.cpp48 int __stdcall g2(int a1, int a2) const { g1(a1); g1(a2); return 0; } in g2() function
98 bind(&X::g2, &x, 1, 2)(); in member_function_test() local
99 bind(&X::g2, x, 1, 2)(); in member_function_test() local
100 bind(&X::g2, ref(x), 1, 2)(); in member_function_test() local
/third_party/boost/libs/geometry/test/algorithms/disjoint/
Dtest_disjoint.hpp55 G2 const& g2, in check_disjoint()
85 G2 g2; in test_disjoint() local

123456789