Home
last modified time | relevance | path

Searched refs:otherT (Results 1 – 25 of 41) sorted by relevance

12

/dports/textproc/zorba/zorba-2.7.0/src/store/api/
H A Ditem_handle.h97 template <class otherT> ItemHandle<otherT> cast() const in cast()
99 return ItemHandle<otherT> (static_cast<otherT *>(p)); in cast()
102 template <class otherT> operator ItemHandle<otherT> ()
104 return cast<otherT>();
107 template <class otherT> operator const ItemHandle<otherT> () const
109 return cast<otherT>();
128 template <class otherT> ItemHandle& operator=(const otherT* rhs)
135 p = static_cast<T*>(const_cast<otherT*>(rhs));
148 template <class otherT> ItemHandle& operator=(const ItemHandle<otherT>& rhs)
153 template <class otherT> ItemHandle& transfer(ItemHandle<otherT>& rhs) in transfer()
[all …]
/dports/textproc/zorba/zorba-2.7.0/src/zorbatypes/
H A Drchandle.h232 template <class otherT> rchandle<otherT> cast() const in cast()
234 return rchandle<otherT> (static_cast<otherT *> (p)); in cast()
237 template <class otherT> rchandle<otherT> dyn_cast() const in dyn_cast()
239 return rchandle<otherT> (dynamic_cast<otherT *> (p)); in dyn_cast()
242 template <class otherT> operator rchandle<otherT> ()
244 return cast<otherT> ();
247 template <class otherT> operator const rchandle<otherT> () const
263 template <class otherT> rchandle& operator=(const otherT* rhs)
279 template <class otherT> rchandle& operator=(rchandle<otherT> const& rhs)
284 template <class otherT> rchandle& transfer(rchandle<otherT>& rhs) in transfer()
[all …]
/dports/textproc/zorba/zorba-2.7.0/include/zorba/
H A Dsmart_ptr.h60 template <class otherT> SmartPtr&
61 assign (const SmartPtr<otherT>& rhs) { in assign()
106 template <class otherT> SmartPtr& operator=(SmartPtr<otherT> const& rhs) {
/dports/print/scribus-devel/scribus-1.5.7/codegen/cheetah/Cheetah/Tests/
H A DUnicode.py36 otherT = Template.compile(source="Other template with |$v|")
37 other = otherT()
51 otherT = Template.compile(source="Other template with |$v|")
52 other = otherT()
67 otherT = Template.compile(source="Other template with |$v|")
68 other = otherT()
/dports/devel/py-cheetah3/Cheetah3-3.2.6/Cheetah/Tests/
H A DUnicode.py51 otherT = Template.compile(source="Other template with |$v|")
52 other = otherT()
67 otherT = Template.compile(source="Other template with |$v|")
68 other = otherT()
83 otherT = Template.compile(source="Other template with |$v|")
84 other = otherT()
/dports/devel/rkcommon/rkcommon-1.8.0/rkcommon/math/
H A Dbox.ih103 #define MAKE_BOX_CONSTRUCTORS_uv_2T_fromVec2(univary, Tabb, otherT) \
104 inline univary box2##Tabb make_box2##Tabb(const univary vec2##otherT lower, \
105 const univary vec2##otherT upper) \
115 #define MAKE_BOX_CONSTRUCTORS_uv_2T_fromBox2(univary, Tabb, otherT) \
116 inline univary box2##Tabb make_box2##Tabb(const univary box2##otherT other) \
159 #define MAKE_BOX_CONSTRUCTORS_uv_3T_fromVec3(univary, Tabb, otherT) \
160 inline univary box3##Tabb make_box3##Tabb(const univary vec3##otherT lower, \
161 const univary vec3##otherT upper) \
173 #define MAKE_BOX_CONSTRUCTORS_uv_3T_fromBox3(univary, Tabb, otherT) \
174 inline univary box3##Tabb make_box3##Tabb(const univary box3##otherT other) \
/dports/editors/libreoffice/libreoffice-7.2.6.2/compilerplugins/clang/
H A Dunsignedcompare.cxx151 auto const otherT = other->IgnoreImpCasts()->getType(); in VisitBinaryOperator() local
152 if (!isUnsignedIntegerType(otherT)) in VisitBinaryOperator()
163 << castFromT << castToT << (orderTypes(castToT, castFromT) + 1) << otherT in VisitBinaryOperator()
/dports/net/bosh-cli/bosh-cli-5.5.0/ui/table/
H A Dvalues.go102 otherT := other.(ValueTime).T
104 case t.T.Equal(otherT):
106 case t.T.Before(otherT):
/dports/devel/awless/awless-0.1.11/vendor/github.com/wallix/triplestore/
H A Drdf.go76 otherT, ok := other.(*triple)
80 return t.key() == otherT.key()
/dports/devel/capnproto/capnproto-0.9.0/doc/_posts/
H A D2015-03-02-security-advisory-and-integer-overflow-protection.md89 template <uint64_t otherMax, typename otherT>
91 decltype(T() + otherT())>
92 operator+(const Guarded<otherMax, otherT>& other) const {
97 decltype(T() + otherT())>(
/dports/devel/capnproto080/capnproto-0.8.0/doc/_posts/
H A D2015-03-02-security-advisory-and-integer-overflow-protection.md89 template <uint64_t otherMax, typename otherT>
91 decltype(T() + otherT())>
92 operator+(const Guarded<otherMax, otherT>& other) const {
97 decltype(T() + otherT())>(
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/utils/
H A DNucleotideUnitTest.java272 final boolean otherT = other.includes(Nucleotide.T); in testIncludes()
276 && (thisT == otherT || thisT); in testIncludes()
300 final boolean otherT = other.includes(Nucleotide.T); in testIntersects()
306 Assert.assertEquals(intersect.includes(Nucleotide.T), thisT && otherT); in testIntersects() local
/dports/misc/openvdb/openvdb-9.0.0/openvdb/openvdb/points/
H A DAttributeArray.h1988 …const TypedAttributeArray<ValueType_, Codec_>* const otherT = dynamic_cast<const TypedAttributeArr…
1989 if(!otherT) return false;
1990 if(this->mSize != otherT->mSize ||
1991 this->mStrideOrTotalSize != otherT->mStrideOrTotalSize ||
1992 this->mIsUniform != otherT->mIsUniform ||
1996 otherT->doLoad();
1998 const StorageType *target = this->data(), *source = otherT->data();
/dports/devel/capnproto/capnproto-0.9.0/c++/src/kj/
H A Dunits.h647 template <uint64_t otherMax, typename otherT> \
648 inline constexpr Bounded<newMax, decltype(T() op otherT())> \
649 operator op(const Bounded<otherMax, otherT>& other) const { \
650 return Bounded<newMax, decltype(T() op otherT())>(value op other.value, unsafe); \
/dports/devel/capnproto080/capnproto-0.8.0/c++/src/kj/
H A Dunits.h641 template <uint64_t otherMax, typename otherT> \
642 inline constexpr Bounded<newMax, decltype(T() op otherT())> \
643 operator op(const Bounded<otherMax, otherT>& other) const { \
644 return Bounded<newMax, decltype(T() op otherT())>(value op other.value, unsafe); \
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2022 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2023 this->data = otherT->data; in fooExT()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2019 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2020 this->data = otherT->data; in fooExT()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2019 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2020 this->data = otherT->data; in fooExT()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2020 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2021 this->data = otherT->data; in fooExT()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2019 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2020 this->data = otherT->data; in fooExT()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2019 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2020 this->data = otherT->data; in fooExT()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2019 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2020 this->data = otherT->data; in fooExT()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2019 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2020 this->data = otherT->data; in fooExT()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2019 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2020 this->data = otherT->data; in fooExT()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp2021 void fooExT(CellDelayed<T2> *otherT) EXCLUSIVE_LOCKS_REQUIRED(mu_, otherT->mu_) { in fooExT() argument
2022 this->data = otherT->data; in fooExT()

12