Home
last modified time | relevance | path

Searched refs:IsValueType (Results 1 – 6 of 6) sorted by relevance

/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DDictionaryExtensions.cs61 if ( typeof( TValue ).IsValueType ) in get()
74 if ( typeof( TValue ).IsValueType ) in get()
86 if ( typeof( TValue ).IsValueType ) in get()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DDictionaryExtensions.cs60 if (typeof(TValue).IsValueType) in get()
72 if (typeof(TValue).IsValueType) in get()
83 if (typeof(TValue).IsValueType) in get()
/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
DTypeExtensions.cs52 internal static bool IsValueType(this Type target) in IsValueType() method in Google.Protobuf.Compatibility.TypeExtensions
54 return target.GetTypeInfo().IsValueType; in IsValueType()
/external/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/
DTypeExtensionsTest.cs66 public void IsValueType(Type type, bool expected) in IsValueType() method in Google.Protobuf.Compatibility.TypeExtensionsTest
68 Assert.AreEqual(expected, TypeExtensions.IsValueType(type)); in IsValueType()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DFieldCodecTest.cs165 if (typeof(T).IsValueType) in TestDefaultValue()
/external/protobuf/csharp/src/Google.Protobuf/
DFieldCodec.cs350 …private static readonly bool TypeSupportsPacking = typeof(T).IsValueType() && Nullable.GetUnderlyi…