HomeSort by relevance Sort by last modified time
    Searched refs:MyInt (Results 1 - 25 of 42) sorted by null

1 2

  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_simplesubclasses.py 4 class MyInt(c_int):
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())
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_simplesubclasses.py 4 class MyInt(c_int):
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())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_simplesubclasses.py 4 class MyInt(c_int):
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())
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_simplesubclasses.py 4 class MyInt(c_int):
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())
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug494.go 13 type MyInt int
15 var c MyInt
17 func (c *MyInt) S(i int) {
18 *c = MyInt(i)
21 func (c *MyInt) V() int {
bug201.go 17 type MyInt int
19 func (MyInt) m(*T1) {}
33 var i interface{} = MyInt(0)
issue4776.go 9 type MyInt int32 // ERROR "package statement must be first|package clause"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug494.go 13 type MyInt int
15 var c MyInt
17 func (c *MyInt) S(i int) {
18 *c = MyInt(i)
21 func (c *MyInt) V() int {
bug201.go 17 type MyInt int
19 func (MyInt) m(*T1) {}
33 var i interface{} = MyInt(0)
issue4776.go 9 type MyInt int32 // ERROR "package statement must be first|package clause"
  /external/clang/test/Index/
index-refs.cpp 4 typedef int MyInt;
11 NS::MyInt NS::gx = EnumVal;
14 NS::MyInt x;
51 typedef int MyInt;
77 // CHECK-NEXT: [indexDeclaration]: kind: typedef | name: MyInt
82 // CHECK-NEXT: [indexEntityReference]: kind: typedef | name: MyInt
87 // CHECK-NEXT: [indexEntityReference]: kind: typedef | name: MyInt
107 // CHECK-NEXT: [indexDeclaration]: kind: typedef | name: MyInt | USR: c:index-refs.cpp@SP>1#T@TS>#t0.0#I@T@MyInt | {{.*}} | loc: 51:15 | semantic-container: [TS:50:8] | lexical-container: [TS:50:8]
110 [indexDeclaration]: kind: typedef | name: MyInt | USR: c:index-refs.cpp@593@S@TS>#I@T@MyInt | {{.*}} | loc: 51:15 | semantic-container: [TS:50:8] (…)
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
interface.go 16 type MyInt int
19 var j MyInt
interface2.go 45 type MyInt int
46 var x MyInt = 7
  /prebuilts/go/linux-x86/doc/progs/
interface.go 16 type MyInt int
19 var j MyInt
interface2.go 45 type MyInt int
46 var x MyInt = 7
  /prebuilts/go/darwin-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 19 ConversionConst = MyInt(5)
42 type myInt int
44 type MyInt int
100 func (myInt) privateTypeMethod() {}
101 func (myInt) CapitalMethodUnexportedType() {}
  /prebuilts/go/linux-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 19 ConversionConst = MyInt(5)
42 type myInt int
44 type MyInt int
100 func (myInt) privateTypeMethod() {}
101 func (myInt) CapitalMethodUnexportedType() {}
  /external/clang/test/Sema/
uninit-variables.c 199 typedef int MyInt;
200 MyInt test26() {
201 MyInt x; // expected-note{{initialize the variable 'x' to silence this warning}}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_abc.py 190 class MyInt(int):
192 self.assertTrue(issubclass(MyInt, A))
193 self.assertTrue(issubclass(MyInt, (A,)))
test_cmath.py 169 class MyInt(object):
212 self.assertRaises(TypeError, f, MyInt())
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_abc.py 190 class MyInt(int):
192 self.assertTrue(issubclass(MyInt, A))
193 self.assertTrue(issubclass(MyInt, (A,)))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_abc.py 190 class MyInt(int):
192 self.assertTrue(issubclass(MyInt, A))
193 self.assertTrue(issubclass(MyInt, (A,)))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_abc.py 190 class MyInt(int):
192 self.assertTrue(issubclass(MyInt, A))
193 self.assertTrue(issubclass(MyInt, (A,)))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_abc.py 190 class MyInt(int):
192 self.assertTrue(issubclass(MyInt, A))
193 self.assertTrue(issubclass(MyInt, (A,)))
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CollectionsTest.java 79 return -((MyInt) o1).compareTo((MyInt) o2);
83 return ((MyInt) o1).compareTo((MyInt) o2);
208 Integer myInt;
215 myInt = new Integer(i);
216 normalCountingMap.put(myInt, myInt);
219 myInt = new Integer(i + mapSize);
220 offsetCountingMap.put(myInt, myInt)
    [all...]

Completed in 924 milliseconds

1 2