Lines Matching refs:t1
74 Type t1 = val1.GetType(); in compareData()
76 if (t1.IsArray) in compareData()
81 else if (t1 == typeof(string)) in compareData()
86 else if (t1.GetInterfaces().Length > 0 && ! t1.IsValueType) in compareData()
91 else if ( ! t1.IsValueType) in compareData()
95 else if (t1 == typeof(Any)) in compareData()
101 else if (t1.IsValueType) in compareData()
117 Type t1 = ar1.GetType(); in compareSequence()
121 && ar1.Length == ar2.Length && t1.GetElementType() == t2.GetElementType())) in compareSequence()
126 Type elemType = t1.GetElementType(); in compareSequence()
142 Type t1 = val1.GetType(); in compareStruct()
144 if (t1 != t2) in compareStruct()
146 FieldInfo[] fields = t1.GetFields(); in compareStruct()