Home
last modified time | relevance | path

Searched refs:type_b (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/utilities/
H A Dtype_comparators.py26 if type_a is type_b:
30 if is_non_null_type(type_a) and is_non_null_type(type_b):
35 if is_list_type(type_a) and is_list_type(type_b):
109 if type_a is type_b:
114 if is_abstract_type(type_b):
117 type_b = cast(GraphQLAbstractType, type_b)
119 schema.is_sub_type(type_b, type_)
123 return schema.is_sub_type(type_a, type_b)
125 if is_abstract_type(type_b):
127 type_b = cast(GraphQLAbstractType, type_b)
[all …]
/dports/devel/boost-docs/boost_1_72_0/libs/bimap/test/
H A Dtest_mutant.cpp35 typedef int type_b; typedef
38 const type_b value_b = 3;
43 type_b b;
49 typedef type_b second_type;
51 type_b second;
57 typedef type_b first_type;
59 type_b first;
67 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
69 type_b b;
/dports/devel/boost-python-libs/boost_1_72_0/libs/bimap/test/
H A Dtest_mutant.cpp35 typedef int type_b; typedef
38 const type_b value_b = 3;
43 type_b b;
49 typedef type_b second_type;
51 type_b second;
57 typedef type_b first_type;
59 type_b first;
67 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
69 type_b b;
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/libs/bimap/test/
H A Dtest_mutant.cpp35 typedef int type_b; typedef
38 const type_b value_b = 3;
43 type_b b;
49 typedef type_b second_type;
51 type_b second;
57 typedef type_b first_type;
59 type_b first;
67 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
69 type_b b;
/dports/databases/percona57-server/boost_1_59_0/libs/bimap/test/
H A Dtest_mutant.cpp35 typedef int type_b; typedef
38 const type_b value_b = 3;
43 type_b b;
49 typedef type_b second_type;
51 type_b second;
57 typedef type_b first_type;
59 type_b first;
67 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
69 type_b b;
/dports/databases/xtrabackup/boost_1_59_0/libs/bimap/test/
H A Dtest_mutant.cpp35 typedef int type_b; typedef
38 const type_b value_b = 3;
43 type_b b;
49 typedef type_b second_type;
51 type_b second;
57 typedef type_b first_type;
59 type_b first;
67 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
69 type_b b;
/dports/databases/percona57-client/boost_1_59_0/libs/bimap/test/
H A Dtest_mutant.cpp35 typedef int type_b; typedef
38 const type_b value_b = 3;
43 type_b b;
49 typedef type_b second_type;
51 type_b second;
57 typedef type_b first_type;
59 type_b first;
67 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
69 type_b b;
/dports/devel/boost-libs/boost_1_72_0/libs/bimap/test/
H A Dtest_mutant.cpp35 typedef int type_b; typedef
38 const type_b value_b = 3;
43 type_b b;
49 typedef type_b second_type;
51 type_b second;
57 typedef type_b first_type;
59 type_b first;
67 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
69 type_b b;
/dports/databases/mysqlwsrep57-server/boost_1_59_0/libs/bimap/test/
H A Dtest_mutant.cpp35 typedef int type_b; typedef
38 const type_b value_b = 3;
43 type_b b;
49 typedef type_b second_type;
51 type_b second;
57 typedef type_b first_type;
59 type_b first;
67 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
69 type_b b;
/dports/devel/hyperscan/boost_1_75_0/libs/bimap/test/
H A Dtest_mutant.cpp34 typedef int type_b; typedef
37 const type_b value_b = 3;
42 type_b b;
48 typedef type_b second_type;
50 type_b second;
56 typedef type_b first_type;
58 type_b first;
66 MutantData(type_a ap, type_b bp) : a(ap), b(bp) {} in MutantData()
68 type_b b;
/dports/games/quakeforge/quakeforge-0.7.2/tools/qfcc/source/
H A Dopcodes.c61 hash = ROTL (~op->type_a, 8) + ROTL (~op->type_b, 16) in get_hash()
74 && (opa->type_b == opb->type_b) in compare()
106 search_op.type_b = op_b ? op_b->type : ev_invalid; in opcode_find()
117 && check_operand_type (sop->type_b, search_op.type_b) in opcode_find()
157 if (mop->type_b == ev_integer) in opcode_init()
158 mop->type_b = ev_float; in opcode_init()
163 if (mop->type_a == ev_void || mop->type_b == ev_void in opcode_init()
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/utils/
H A Dtype_comparators.py18 def is_equal_type(type_a, type_b): argument
19 if type_a is type_b:
22 if isinstance(type_a, GraphQLNonNull) and isinstance(type_b, GraphQLNonNull):
23 return is_equal_type(type_a.of_type, type_b.of_type)
25 if isinstance(type_a, GraphQLList) and isinstance(type_b, GraphQLList):
26 return is_equal_type(type_a.of_type, type_b.of_type)
/dports/games/libretro-quicknes/QuickNES_Core-901248a/nes_emu/
H A DMapper_Vrc2_4.cpp45 template <bool type_a, bool type_b>
50 if (type_a && type_b) // mapper 21 in Mapper_VRC2_4()
56 else if (!type_a && type_b) // mapper 22 in Mapper_VRC2_4()
62 else if (!type_a && !type_b) // mapper 23 in Mapper_VRC2_4()
68 else if (type_a && !type_b) // mapper 25 in Mapper_VRC2_4()
220 template <bool type_a, bool type_b>
221 void Mapper_VRC2_4<type_a, type_b>::write_irq( nes_time_t time, in write_irq()
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/lang/gnat_util/gcc-6-20180516/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-decltype2.C6 struct type_b struct
8 type_b(type_a p);
21 static type_b b;
25 type_b type_e::b = {{[](){decltype(function_c(type_e::d))::dummy();}}};

12345678910>>...19