13 references to GetPredefType
Microsoft.CSharp (13)
Microsoft\CSharp\RuntimeBinder\Semantics\Conversion.cs (1)
705
PredefinedType aggPredefType = aggCur.
GetPredefType
();
Microsoft\CSharp\RuntimeBinder\Semantics\ExplicitConversion.cs (2)
429
!(aggDest.IsPredefined() && aggDest.
GetPredefType
() == PredefinedType.PT_CHAR))
616
PredefinedType ptDest = aggDest.
GetPredefType
();
Microsoft\CSharp\RuntimeBinder\Semantics\ImplicitConversion.cs (2)
646
aggTypeSrc.OwningAggregate.
GetPredefType
() != PredefinedType.PT_BOOL &&
675
PredefinedType ptSrc = aggSrc.
GetPredefType
();
Microsoft\CSharp\RuntimeBinder\Semantics\Types\AggregateType.cs (7)
223
return OwningAggregate.
GetPredefType
();
230
return agg.IsPredefined() && agg.
GetPredefType
() == pt;
240
return agg.IsPredefined() && PredefinedTypeFacts.IsSimpleType(agg.
GetPredefType
());
249
return agg.IsPredefined() ? PredefinedTypeFacts.IsSimpleType(agg.
GetPredefType
()) : agg.IsEnum();
260
PredefinedType pt = agg.
GetPredefType
();
273
return agg.IsPredefined() && PredefinedTypeFacts.IsNumericType(agg.
GetPredefType
());
360
return sym.IsPredefined() ? PredefinedTypeFacts.GetFundType(sym.
GetPredefType
()) : FUNDTYPE.FT_STRUCT;
Microsoft\CSharp\RuntimeBinder\Semantics\Types\PredefinedTypes.cs (1)
46
type.IsPredefined() ? GetNiceName(type.
GetPredefType
()) : null;