Home
last modified time | relevance | path

Searched refs:union1 (Results 151 – 175 of 1120) sorted by relevance

12345678910>>...45

/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900119_01.C40 union union1 { union
/dports/databases/percona-toolkit/percona-toolkit-3.3.0/t/pt-visual-explain/samples/
H A Dunion_of_derived_tables.sql16 | NULL | UNION RESULT | <union1,3> | ALL | NULL | NULL | NULL | NULL | …
H A Dunion_of_derived_unions.sql24 | NULL | UNION RESULT | <union1,4> | ALL | NULL | NULL | NULL | NULL | NULL | …
H A Dtoo_many_unions.sql27 | NULL | UNION RESULT | <union1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,...> | ALL | NULL…
H A Dcomplex_select_types.sql22 | NULL | UNION RESULT | <union1,4> | ALL | NULL | NULL | NULL |…
/dports/math/z3/z3-z3-4.8.13/src/test/
H A Ddl_relation.cpp66 relation_union_fn* union1 = ip.mk_union_fn(i1, i2, &i1); in test_interval_relation() local
116 dealloc(union1); in test_interval_relation()
176 relation_union_fn* union1 = br.mk_union_fn(i1, i2, &i1); in test_bound_relation() local
286 dealloc(union1); in test_bound_relation()
/dports/math/py-z3-solver/z3-z3-4.8.10/src/test/
H A Ddl_relation.cpp66 relation_union_fn* union1 = ip.mk_union_fn(i1, i2, &i1); in test_interval_relation() local
116 dealloc(union1); in test_interval_relation()
176 relation_union_fn* union1 = br.mk_union_fn(i1, i2, &i1); in test_bound_relation() local
286 dealloc(union1); in test_bound_relation()
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/stdlib/src/
H A Dsets.erl193 union1(union(S1, S2), Ss);
197 -spec union1(set(E), [set(E)]) -> set(E).
198 union1(S1, [S2|Ss]) -> function
199 union1(union(S1, S2), Ss);
200 union1(S1, []) -> S1. function
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/stdlib/src/
H A Dsets.erl193 union1(union(S1, S2), Ss);
197 -spec union1(set(E), [set(E)]) -> set(E).
198 union1(S1, [S2|Ss]) -> function
199 union1(union(S1, S2), Ss);
200 union1(S1, []) -> S1. function
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/stdlib/src/
H A Dsets.erl193 union1(union(S1, S2), Ss);
197 -spec union1(set(E), [set(E)]) -> set(E).
198 union1(S1, [S2|Ss]) -> function
199 union1(union(S1, S2), Ss);
200 union1(S1, []) -> S1. function
/dports/graphics/ogre3d/ogre-1.11.6/Samples/VolumeCSG/src/
H A DVolumeCSG.cpp80 CSGUnionSource union1(&sphere1, &sphere2); in setupContent() local
81 CSGUnionSource union2(&union1, &sphere3); in setupContent()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Schema/
H A DPreprocessor.cs1336 SetParent(union1, simpleType); in PreprocessSimpleType()
1338 int baseTypeCount = union1.BaseTypes.Count; in PreprocessSimpleType()
1339 if (union1.MemberTypes != null) { in PreprocessSimpleType()
1340 baseTypeCount += union1.MemberTypes.Length; in PreprocessSimpleType()
1341 XmlQualifiedName[] qNames = union1.MemberTypes; in PreprocessSimpleType()
1343 ValidateQNameAttribute(union1, "memberTypes", qNames[i]); in PreprocessSimpleType()
1347 SendValidationEvent(Res.Sch_SimpleTypeUnionNoBase, union1); in PreprocessSimpleType()
1349 for (int i = 0; i < union1.BaseTypes.Count; ++i) { in PreprocessSimpleType()
1350 XmlSchemaSimpleType type = (XmlSchemaSimpleType)union1.BaseTypes[i]; in PreprocessSimpleType()
1351 SetParent(type, union1); in PreprocessSimpleType()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Schema/
H A DPreprocessor.cs1632 SetParent(union1, simpleType); in PreprocessSimpleType()
1634 int baseTypeCount = union1.BaseTypes.Count; in PreprocessSimpleType()
1635 if (union1.MemberTypes != null) in PreprocessSimpleType()
1637 baseTypeCount += union1.MemberTypes.Length; in PreprocessSimpleType()
1638 XmlQualifiedName[] qNames = union1.MemberTypes; in PreprocessSimpleType()
1641 ValidateQNameAttribute(union1, "memberTypes", qNames[i]); in PreprocessSimpleType()
1646 SendValidationEvent(SR.Sch_SimpleTypeUnionNoBase, union1); in PreprocessSimpleType()
1648 for (int i = 0; i < union1.BaseTypes.Count; ++i) in PreprocessSimpleType()
1650 XmlSchemaSimpleType type = (XmlSchemaSimpleType)union1.BaseTypes[i]; in PreprocessSimpleType()
1651 SetParent(type, union1); in PreprocessSimpleType()
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/constants/gen-py3/module/
H A Dtypes.pyx1008 return union1()
1025 return union1(d=value)
1054 __fbthrift_inst = <union1>union1.__new__(union1)
1072 def __hash__(union1 self):
1075 cdef _load_cache(union1 self):
1085 def __copy__(union1 self):
1095 (<union1>other)._cpp_obj,
1111 return "module.union1"
1146 union1 u=None
1185 if isinstance(value, union1):
[all …]
/dports/devel/jna/jna-5.7.0/test/com/sun/jna/
H A DArgumentsMarshalTest.java160 MixedUnion1.ByValue union1, MixedUnion1.ByValue union2, in stringifyMixedUnion1() argument
698 MixedUnion1.ByValue union1 = new MixedUnion1.ByValue(); in testUnionCallstack() local
700 union1.setType("intValue"); in testUnionCallstack()
701 union1.intValue = 5; in testUnionCallstack()
705 lib.stringifyMixedUnion1(buffer, buffer.length, 1, 2, union1, union2, 3, 4); in testUnionCallstack()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/polly/test/Isl/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/polly/test/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/polly/test/Isl/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/polly/test/Isl/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/polly/test/Isl/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/polly/test/Isl/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/Samples/VolumeCSG/src/
H A DVolumeCSG.cpp80 CSGUnionSource union1(&sphere1, &sphere2); in setupContent() local
81 CSGUnionSource union2(&union1, &sphere3); in setupContent()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/polly/test/Isl/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }
/dports/devel/llvm12/llvm-project-12.0.1.src/polly/test/Isl/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }
/dports/devel/llvm13/llvm-project-13.0.1.src/polly/test/Isl/CodeGen/
H A Dhoisted_load_escapes_through_phi.ll14 %struct1 = type { i32, %union1, %struct.2*, i32, i32 }
15 %union1 = type { %struct.2* }

12345678910>>...45