Searched refs:MyInt (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/ctypes/test/ |
D | test_simplesubclasses.py | 4 class MyInt(c_int): class 6 if type(other) != MyInt: 15 self.assertEqual(MyInt(3), MyInt(3)) 16 self.assertNotEqual(MyInt(42), MyInt(43)) 35 cb = CFUNCTYPE(None, MyInt)(func) 38 self.assertEqual(type(args[-1]), MyInt) 47 _fields_ = [("x", MyInt)] 49 self.assertEqual(X().x, MyInt()) 52 s.x = MyInt(42) 54 self.assertEqual(s.x, MyInt(42))
|
/external/clang/test/Index/ |
D | index-refs.cpp | 4 typedef int MyInt; typedef 11 NS::MyInt NS::gx = EnumVal; 14 NS::MyInt x; in foo() 51 typedef int MyInt; typedef
|
D | index-suppress-refs.m | 5 TYPEDEF(MyInt); 7 MyInt gx; 28 // CHECK-NEXT: [indexDeclaration]: kind: typedef | name: MyInt
|
/external/clang/test/Sema/ |
D | uninit-variables.c | 199 typedef int MyInt; typedef 200 MyInt test26() { in test26() 201 MyInt x; // expected-note{{initialize the variable 'x' to silence this warning}} in test26()
|
/external/python/cpython2/Lib/test/ |
D | test_abc.py | 190 class MyInt(int): class 192 self.assertTrue(issubclass(MyInt, A)) 193 self.assertTrue(issubclass(MyInt, (A,)))
|
D | test_cmath.py | 169 class MyInt(object): class 212 self.assertRaises(TypeError, f, MyInt())
|
D | pickletester.py | 1240 for c in (MyInt, MyLong, MyStr, MyTuple): 1602 class MyInt(int): class 1629 myclasses = [MyInt, MyLong, MyFloat,
|
D | test_descr.py | 3571 class MyInt(int): class 3573 m = MyInt(42)
|
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/ |
D | UnittestProto3.cs | 3055 public long MyInt { property in Google.Protobuf.TestProtos.TestFieldOrderings 3094 if (MyInt != other.MyInt) return false; in Equals() 3103 if (MyInt != 0L) hash ^= MyInt.GetHashCode(); in GetHashCode() 3114 if (MyInt != 0L) { in WriteTo() 3116 output.WriteInt64(MyInt); in WriteTo() 3137 if (MyInt != 0L) { in CalculateSize() 3138 size += 1 + pb::CodedOutputStream.ComputeInt64Size(MyInt); in CalculateSize() 3156 if (other.MyInt != 0L) { in MergeFrom() 3157 MyInt = other.MyInt; in MergeFrom() 3178 MyInt = input.ReadInt64(); in MergeFrom()
|