Home
last modified time | relevance | path

Searched refs:pType2 (Results 1 – 16 of 16) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.Reflection.Execution/src/Internal/Reflection/Execution/TypeLoader/
H A DTypeCast.cs398 private static bool AreTypesEquivalentInternal(Type pType1, Type pType2) in AreTypesEquivalentInternal() argument
400 if (!pType1.IsInstantiatedTypeInfo() && !pType2.IsInstantiatedTypeInfo()) in AreTypesEquivalentInternal()
401 return pType1.Equals(pType2); in AreTypesEquivalentInternal()
403 if (pType1.IsGenericType && pType2.IsGenericType) in AreTypesEquivalentInternal()
405 if (!pType1.GetGenericTypeDefinition().Equals(pType2.GetGenericTypeDefinition())) in AreTypesEquivalentInternal()
409 Type[] args2 = pType2.GetGenericArguments(); in AreTypesEquivalentInternal()
421 if (pType1.IsArray && pType2.IsArray) in AreTypesEquivalentInternal()
423 if (pType1.GetArrayRank() != pType2.GetArrayRank()) in AreTypesEquivalentInternal()
429 if (pType1.IsPointer && pType2.IsPointer) in AreTypesEquivalentInternal()
437 private static bool ArePrimitveTypesEquivalentSize(Type pType1, Type pType2) in ArePrimitveTypesEquivalentSize() argument
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/cppu/source/uno/
H A Dprim.hxx142 … typelib_TypeDescriptionReference const * pType1, typelib_TypeDescriptionReference const * pType2 ) in _type_equals() argument
145 return (pType1 == pType2 || in _type_equals()
146 (pType1->eTypeClass == pType2->eTypeClass && in _type_equals()
147 pType1->pTypeName->length == pType2->pTypeName->length && in _type_equals()
148 ::rtl_ustr_compare( pType1->pTypeName->buffer, pType2->pTypeName->buffer ) == 0)); in _type_equals()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/cppu/source/uno/
H A Dprim.hxx143 … typelib_TypeDescriptionReference const * pType1, typelib_TypeDescriptionReference const * pType2 ) in _type_equals() argument
146 return (pType1 == pType2 || in _type_equals()
147 (pType1->eTypeClass == pType2->eTypeClass && in _type_equals()
148 pType1->pTypeName->length == pType2->pTypeName->length && in _type_equals()
149 ::rtl_ustr_compare( pType1->pTypeName->buffer, pType2->pTypeName->buffer ) == 0)); in _type_equals()
/dports/lang/mono/mono-5.10.1.57/external/corert/src/Runtime.Base/src/System/Runtime/
H A DTypeCast.cs925 static unsafe public bool AreTypesEquivalent(EETypePtr pType1, EETypePtr pType2) in AreTypesEquivalent() argument
927 return (AreTypesEquivalentInternal(pType1.ToPointer(), pType2.ToPointer())); in AreTypesEquivalent()
937 internal static unsafe bool AreTypesEquivalentInternal(EEType* pType1, EEType* pType2) in AreTypesEquivalentInternal() argument
939 if (pType1 == pType2) in AreTypesEquivalentInternal()
945 if (pType2->IsCloned) in AreTypesEquivalentInternal()
946 pType2 = pType2->CanonicalEEType; in AreTypesEquivalentInternal()
948 if (pType1 == pType2) in AreTypesEquivalentInternal()
951 if (pType1->IsParameterizedType && pType2->IsParameterizedType) in AreTypesEquivalentInternal()
952 …tInternal(pType1->RelatedParameterType, pType2->RelatedParameterType) && pType1->ParameterizedType… in AreTypesEquivalentInternal()
998 private static unsafe bool ArePrimitveTypesEquivalentSize(EEType* pType1, EEType* pType2) in ArePrimitveTypesEquivalentSize() argument
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/Errors/
H A DErrorHandling.cs124 CType pType2 = null; in Error()
132 pType2 = arg2.pType; in Error()
145 if (sym2 == sym && pType2 == pType && !fMunge) in Error()
/dports/editors/libreoffice/libreoffice-7.2.6.2/stoc/source/invocation_adapterfactory/
H A Diafactory.cxx213 typelib_TypeDescriptionReference * pType2 ) in type_equals() argument
215 return (pType1 == pType2 || in type_equals()
216 (pType1->pTypeName->length == pType2->pTypeName->length && in type_equals()
218 pType1->pTypeName->buffer, pType2->pTypeName->buffer ))); in type_equals()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/stoc/source/invocation_adapterfactory/
H A Diafactory.cxx219 typelib_TypeDescriptionReference * pType2 ) in type_equals() argument
221 return (pType1 == pType2 || in type_equals()
222 (pType1->pTypeName->length == pType2->pTypeName->length && in type_equals()
224 pType1->pTypeName->buffer, pType2->pTypeName->buffer ))); in type_equals()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/Semantics/Symbols/
H A DSymbolLoader.cs208 …rivate static bool AreTypesEqualForConversion(CType pType1, CType pType2) => pType1.Equals(pType2); in AreTypesEqualForConversion() argument
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/core/unocore/
H A Dunofield.cxx632 SwFieldType * pType2 = m_pImpl->m_pDoc->getIDocumentFieldsAccess().GetFieldType( in setPropertyValue() local
635 if(pType2 || in setPropertyValue()
651 pType2 = m_pImpl->m_pDoc->getIDocumentFieldsAccess().InsertFieldType(aType); in setPropertyValue()
652 static_cast<SwUserFieldType*>(pType2)->SetContent(m_pImpl->m_sParam1); in setPropertyValue()
653 static_cast<SwUserFieldType*>(pType2)->SetValue(m_pImpl->m_fParam1); in setPropertyValue()
654 static_cast<SwUserFieldType*>(pType2)->SetType(m_pImpl->m_bParam1 in setPropertyValue()
662 pType2 = m_pImpl->m_pDoc->getIDocumentFieldsAccess().InsertFieldType(aType); in setPropertyValue()
672 pType2 = m_pImpl->m_pDoc->getIDocumentFieldsAccess().InsertFieldType(aType); in setPropertyValue()
678 pType2 = GetFieldType(); in setPropertyValue()
683 if (!pType2) in setPropertyValue()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/core/unocore/
H A Dunofield.cxx646 SwFieldType * pType2 = m_pImpl->m_pDoc->getIDocumentFieldsAccess().GetFieldType( in setPropertyValue() local
649 if(pType2 || in setPropertyValue()
665 pType2 = m_pImpl->m_pDoc->getIDocumentFieldsAccess().InsertFieldType(aType); in setPropertyValue()
666 static_cast<SwUserFieldType*>(pType2)->SetContent(m_pImpl->m_sParam1); in setPropertyValue()
667 static_cast<SwUserFieldType*>(pType2)->SetValue(m_pImpl->m_fParam1); in setPropertyValue()
668 static_cast<SwUserFieldType*>(pType2)->SetType(m_pImpl->m_bParam1 in setPropertyValue()
676 pType2 = m_pImpl->m_pDoc->getIDocumentFieldsAccess().InsertFieldType(aType); in setPropertyValue()
686 pType2 = m_pImpl->m_pDoc->getIDocumentFieldsAccess().InsertFieldType(aType); in setPropertyValue()
692 pType2 = GetFieldType(); in setPropertyValue()
697 if (!pType2) in setPropertyValue()
[all …]
/dports/multimedia/kodi/xbmc-19.3-Matrix/lib/win32/Effects11/
H A DEffect.h1153 …ual(const LPSRUNTIMETYPE &pType1, const LPSRUNTIMETYPE &pType2) { return (pType1->IsEqual(pType2))…
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Runtime/
H A DRuntimeImports.cs310 internal static extern bool AreTypesEquivalent(EETypePtr pType1, EETypePtr pType2); in AreTypesEquivalent() argument
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/
H A DMembersMustExist.AnalyzerData72 … System.Runtime.RuntimeImports.AreTypesEquivalent(System.EETypePtr pType1, System.EETypePtr pType2)
/dports/games/openfodder/openfodder-1.6.0/Source/
H A DFodder.hpp603 std::vector<int16> Tile_FindType(const eTerrainFeature pType, const eTerrainFeature pType2);
H A DFodder.cpp1109 std::vector<int16> cFodder::Tile_FindType(const eTerrainFeature pType, const eTerrainFeature pType2 in Tile_FindType() argument
1121 if ((Type1 == pType && Type2 == pType2) || (Type1 == pType2 || Type2 == pType)) { in Tile_FindType()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/misc/util/
H A DutilTruth.h2582 …line word Abc_TtCheckDecOutOne8( word * t, int * piVar1, int * piVar2, int * pType1, int * pType2 ) in Abc_TtCheckDecOutOne8() argument
2604 *pType2 = Type2; in Abc_TtCheckDecOutOne8()