Home
last modified time | relevance | path

Searched refs:IsAssignableFrom (Results 1 – 13 of 13) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
DTypeExtensions.cs52 internal static bool IsAssignableFrom(this Type target, Type c) in IsAssignableFrom() method in Google.Protobuf.Compatibility.TypeExtensions
54 return target.GetTypeInfo().IsAssignableFrom(c.GetTypeInfo()); in IsAssignableFrom()
/external/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Compatibility/
DTypeExtensionsTest.cs63 public void IsAssignableFrom(Type target, Type argument, bool expected) in IsAssignableFrom() method in Google.Protobuf.Compatibility.TypeExtensionsTest
65 Assert.AreEqual(expected, TypeExtensions.IsAssignableFrom(target, argument)); in IsAssignableFrom()
/external/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/
DTypeExtensionsTest.cs63 public void IsAssignableFrom(Type target, Type argument, bool expected) in IsAssignableFrom() method in Google.Protobuf.Compatibility.TypeExtensionsTest
65 Assert.AreEqual(expected, TypeExtensions.IsAssignableFrom(target, argument)); in IsAssignableFrom()
/external/protobuf/csharp/src/Google.Protobuf.JsonDump/
DProgram.cs59 if (!typeof(IMessage).GetTypeInfo().IsAssignableFrom(type)) in Main()
/external/protobuf/csharp/src/Google.Protobuf.Benchmarks/
DSerializationConfig.cs50 .Where(t => typeof(IMessage).IsAssignableFrom(t))
/external/v8/src/torque/
Dparameter-difference.h65 } else if (IsAssignableFrom(to, from)) { in AddParameter()
Dimplementation-visitor.cc2006 if (IsAssignableFrom(left, right)) { in GetCommonType()
2008 } else if (IsAssignableFrom(right, left)) { in GetCommonType()
3027 } else if (IsAssignableFrom(destination_type, source.type())) { in GenerateImplicitConvert()
3130 if (!IsAssignableFrom(TypeOracle::GetObjectType(), current)) return false; in DEFINE_CONTEXTUAL_VARIABLE()
3132 if (!IsAssignableFrom(*i++, current)) return false; in DEFINE_CONTEXTUAL_VARIABLE()
Dtypes.h892 bool IsAssignableFrom(const Type* to, const Type* from);
Dtypes.cc1029 bool IsAssignableFrom(const Type* to, const Type* from) { in IsAssignableFrom() function
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DTreeRewriter.cs69 if (typeof(CommonTree).IsAssignableFrom(typeof(TTree))) { in ApplyOnce()
/external/oj-libjdwp/src/share/back/
DeventFilter.c413 if (!JNI_FUNC_PTR(env,IsAssignableFrom)(env, clazz, in eventFilterRestricted_passesFilter()
638 if (!JNI_FUNC_PTR(env,IsAssignableFrom)(env, clazz, in eventFilter_predictFiltering()
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DMapField.cs92 if (typeof(IDeepCloneable<TValue>).IsAssignableFrom(typeof(TValue))) in Clone()
/external/oj-libjdwp/src/share/javavm/export/
Djni.h238 jboolean (JNICALL *IsAssignableFrom)
810 jboolean IsAssignableFrom(jclass sub, jclass sup) { in IsAssignableFrom() function
811 return functions->IsAssignableFrom(this, sub, sup); in IsAssignableFrom()