Home
last modified time | relevance | path

Searched refs:ET (Results 1 – 25 of 4317) sorted by relevance

12345678910>>...173

/dports/lang/python-legacy/Python-2.7.18/Lib/test/
H A Dtest_xml_etree.py29 ET = None variable
239 self.assertEqual(ET.XML, ET.fromstring)
240 self.assertEqual(ET.PI, ET.ProcessingInstruction)
241 self.assertEqual(ET.XMLParser, ET.XMLTreeBuilder)
875 elem = ET.Element(ET.QName("{uri}tag"))
877 elem = ET.Element(ET.QName("uri", "tag"))
879 elem = ET.Element(ET.QName("uri", "tag"))
1372 self.assertEqual(ET.tostring(ET.XML(ET.tostring(e))),
2569 tree = ET.ElementTree(ET.XML('''<site />'''))
2575 tree = ET.ElementTree(ET.XML('''<site />'''))
[all …]
/dports/lang/python27/Python-2.7.18/Lib/test/
H A Dtest_xml_etree.py29 ET = None variable
239 self.assertEqual(ET.XML, ET.fromstring)
240 self.assertEqual(ET.PI, ET.ProcessingInstruction)
241 self.assertEqual(ET.XMLParser, ET.XMLTreeBuilder)
875 elem = ET.Element(ET.QName("{uri}tag"))
877 elem = ET.Element(ET.QName("uri", "tag"))
879 elem = ET.Element(ET.QName("uri", "tag"))
1372 self.assertEqual(ET.tostring(ET.XML(ET.tostring(e))),
2569 tree = ET.ElementTree(ET.XML('''<site />'''))
2575 tree = ET.ElementTree(ET.XML('''<site />'''))
[all …]
/dports/math/cgal/CGAL-5.3/include/CGAL/
H A DLazy_exact_nt.h222 template <typename ET, typename ET1 = ET, typename ET2 = ET>
284 template <typename ET, typename ET1 = ET, typename ET2 = ET> \
351 typedef typename Base::ET ET; // undocumented typedef
1140 CGAL_DEFINE_COERCION_TRAITS_FROM_TO_TEM(ET,Lazy_exact_nt<ET>,class ET)
1241 : public CGAL::cpp98::binary_function<Lazy_exact_nt<ET>,Lazy_exact_nt<ET>,Lazy_exact_nt<ET> > {
1243 Lazy_exact_nt<ET> operator()( const Lazy_exact_nt<ET>& x, const Lazy_exact_nt<ET>& y) const
1259 : public CGAL::cpp98::binary_function<Lazy_exact_nt<ET>,Lazy_exact_nt<ET>,Lazy_exact_nt<ET> > {
1261 Lazy_exact_nt<ET> operator()( const Lazy_exact_nt<ET>& x, const Lazy_exact_nt<ET>& y) const
1297 ET e;
1314 struct NT_converter < Lazy_exact_nt<ET>, ET >
[all …]
H A DQP_solution.h41 template <typename ET>
44 template <typename ET>
47 template <typename ET>
50 template <typename ET>
65 template <class ET>
70 typedef CGAL::Creator_2< ET, ET, Quotient<ET> >
76 typedef std::function< Quotient<ET>(const ET&) >
265 typedef ET_ ET; typedef
522 ET et0; // 0
734 return CGAL::Quotient<ET>(ET(0), ET(1)); in normalize()
[all …]
/dports/math/blaze/blaze-3.8/blaze/math/expressions/
H A DDMatDetExpr.h151 using ET = ElementType_t<MT>; in det4x4() local
155 const ET tmp1( A(2,2)*A(3,3) - A(2,3)*A(3,2) ); in det4x4()
189 using ET = ElementType_t<MT>; in det5x5() local
243 using ET = ElementType_t<MT>; in det6x6() local
329 using ET = ElementType_t<MT>; in detNxN() local
348 return ET(0); in detNxN()
351 ET determinant = ET(1); in detNxN()
386 using ET = ElementType_t<MT>; in det() local
395 return ET(0); in det()
399 return ET(1); in det()
[all …]
/dports/science/gramps/gramps-5.1.4/gramps/plugins/export/test/
H A Dexportvcard_test.py29 import xml.etree.ElementTree as ET namespace
63 ET.register_namespace("", namespace)
64 self.database = ET.XML(strng)
72 print(ET.tostring(input_doc))
197 events = ET.Element('events')
209 events = ET.Element('events')
219 events = ET.Element('events')
230 events = ET.Element('events')
242 events = ET.Element('events')
288 events = ET.Element('events')
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/StdLib/LibC/Time/
H A DTimeEfi.c29 IN EFI_TIME *ET, in Efi2Tm() argument
36 BT->tm_mday = ET->Day; in Efi2Tm()
37 BT->tm_hour = ET->Hour; in Efi2Tm()
38 BT->tm_min = ET->Minute; in Efi2Tm()
39 BT->tm_sec = ET->Second; in Efi2Tm()
43 BT->tm_Nano = ET->Nanosecond; in Efi2Tm()
70 OUT EFI_TIME *ET in Tm2Efi() argument
100 EFI_TIME *ET = NULL; in Time2Efi() local
105 if(ET != NULL) { in Time2Efi()
106 Tm2Efi(IT, ET); in Time2Efi()
[all …]
/dports/math/cgal/CGAL-5.3/include/CGAL/QP_solver/
H A DQP_solution_impl.h25 template <typename ET>
82 template <typename ET>
121 template <typename ET>
358 ET obj = d * ET(p.get_c0()); // d * c_0 in is_value_correct()
383 ET et2(2); in is_value_correct()
445 ET lambda_b(0); in is_infeasible_3()
466 ET lambda_b(0); in is_infeasible_3()
474 ET sum(0); in is_infeasible_3()
564 ET cw(0); in is_unbounded_3()
588 ET wdw(0); in is_unbounded_3()
[all …]
/dports/lang/python37/Python-3.7.12/Lib/test/
H A Dtest_xml_etree.py29 ET = None variable
266 self.assertEqual(ET.XML, ET.fromstring)
267 self.assertEqual(ET.PI, ET.ProcessingInstruction)
917 elem = ET.Element(ET.QName("{uri}tag"))
919 elem = ET.Element(ET.QName("uri", "tag"))
921 elem = ET.Element(ET.QName("uri", "tag"))
1579 self.assertEqual(ET.tostring(ET.XML(ET.tostring(e))),
2952 tree = ET.ElementTree(ET.XML('''<site />'''))
2959 tree = ET.ElementTree(ET.XML('''<site />'''))
2968 tree = ET.ElementTree(ET.XML('''<site />'''))
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/devel/wasi-compiler-rt11/compiler-rt-11.0.1.src/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp91 ErrorType ET; in handleTypeMismatchImpl() local
114 switch (ET) { in handleTypeMismatchImpl()
292 ErrorType ET; in handleDivremOverflowImpl() local
305 switch (ET) { in handleDivremOverflowImpl()
337 ErrorType ET; in handleShiftOutOfBoundsImpl() local
506 Diag(Loc, DL_Error, ET, in handleFloatCastOverflow()
529 ErrorType ET = in handleLoadInvalidValue() local
537 Diag(Loc, DL_Error, ET, in handleLoadInvalidValue()
599 Diag(Loc, DL_Error, ET, in handleImplicitConversion()
629 Diag(Loc, DL_Error, ET, in handleInvalidBuiltin()
[all …]
/dports/graphics/opencv/opencv-4.5.3/modules/photo/src/
H A Dfast_nlmeans_denoising_invoker_commons.hpp61 template <typename ET, int n> struct pixelInfo_<Vec<ET, n> >
102 template <typename ET> struct calcDist_<Vec<ET, 2> >
104 static inline int f(const Vec<ET, 2> a, const Vec<ET, 2> b) in f()
110 template <typename ET> struct calcDist_<Vec<ET, 3> >
112 static inline int f(const Vec<ET, 3> a, const Vec<ET, 3> b) in f()
121 template <typename ET> struct calcDist_<Vec<ET, 4> >
123 static inline int f(const Vec<ET, 4> a, const Vec<ET, 4> b) in f()
203 template <typename ET> struct calcDist_<Vec<ET, 2> >
205 static inline int f(const Vec<ET, 2> a, const Vec<ET, 2> b) in f()
211 template <typename ET> struct calcDist_<Vec<ET, 3> >
[all …]
/dports/lang/python310/Python-3.10.1/Lib/test/
H A Dtest_xml_etree.py39 ET = None variable
284 self.assertEqual(ET.XML, ET.fromstring)
285 self.assertEqual(ET.PI, ET.ProcessingInstruction)
1201 elem = ET.Element(ET.QName("{uri}tag"))
1203 elem = ET.Element(ET.QName("uri", "tag"))
1205 elem = ET.Element(ET.QName("uri", "tag"))
2079 self.assertEqual(ET.tostring(ET.XML(ET.tostring(e))),
3200 b = ET.TreeBuilder(pi_factory=ET.PI)
3705 tree = ET.ElementTree(ET.XML('''<site />'''))
3712 tree = ET.ElementTree(ET.XML('''<site />'''))
[all …]
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest_xml_etree.py39 ET = None variable
284 self.assertEqual(ET.XML, ET.fromstring)
285 self.assertEqual(ET.PI, ET.ProcessingInstruction)
1201 elem = ET.Element(ET.QName("{uri}tag"))
1203 elem = ET.Element(ET.QName("uri", "tag"))
1205 elem = ET.Element(ET.QName("uri", "tag"))
2079 self.assertEqual(ET.tostring(ET.XML(ET.tostring(e))),
3200 b = ET.TreeBuilder(pi_factory=ET.PI)
3705 tree = ET.ElementTree(ET.XML('''<site />'''))
3712 tree = ET.ElementTree(ET.XML('''<site />'''))
[all …]
/dports/lang/python39/Python-3.9.9/Lib/test/
H A Dtest_xml_etree.py34 ET = None variable
266 self.assertEqual(ET.XML, ET.fromstring)
267 self.assertEqual(ET.PI, ET.ProcessingInstruction)
1183 elem = ET.Element(ET.QName("{uri}tag"))
1185 elem = ET.Element(ET.QName("uri", "tag"))
1187 elem = ET.Element(ET.QName("uri", "tag"))
2055 self.assertEqual(ET.tostring(ET.XML(ET.tostring(e))),
3141 b = ET.TreeBuilder(pi_factory=ET.PI)
3646 tree = ET.ElementTree(ET.XML('''<site />'''))
3653 tree = ET.ElementTree(ET.XML('''<site />'''))
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Lib/test/
H A Dtest_xml_etree.py34 ET = None variable
271 self.assertEqual(ET.XML, ET.fromstring)
272 self.assertEqual(ET.PI, ET.ProcessingInstruction)
1074 elem = ET.Element(ET.QName("{uri}tag"))
1076 elem = ET.Element(ET.QName("uri", "tag"))
1078 elem = ET.Element(ET.QName("uri", "tag"))
1864 self.assertEqual(ET.tostring(ET.XML(ET.tostring(e))),
2950 b = ET.TreeBuilder(pi_factory=ET.PI)
3455 tree = ET.ElementTree(ET.XML('''<site />'''))
3462 tree = ET.ElementTree(ET.XML('''<site />'''))
[all …]
/dports/lang/python-tools/Python-3.8.12/Lib/test/
H A Dtest_xml_etree.py34 ET = None variable
271 self.assertEqual(ET.XML, ET.fromstring)
272 self.assertEqual(ET.PI, ET.ProcessingInstruction)
1074 elem = ET.Element(ET.QName("{uri}tag"))
1076 elem = ET.Element(ET.QName("uri", "tag"))
1078 elem = ET.Element(ET.QName("uri", "tag"))
1864 self.assertEqual(ET.tostring(ET.XML(ET.tostring(e))),
2950 b = ET.TreeBuilder(pi_factory=ET.PI)
3455 tree = ET.ElementTree(ET.XML('''<site />'''))
3462 tree = ET.ElementTree(ET.XML('''<site />'''))
[all …]

12345678910>>...173