/external/chromium_org/tools/gyp/test/mac/archs/ |
header.h | 1 typedef int MyInt;
|
/external/chromium_org/tools/gyp/test/mac/prefixheader/ |
header.h | 1 typedef int MyInt;
|
file.c | 0 MyInt f() { return 0; }
|
file.cc | 0 MyInt f() { return 0; }
|
/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...] |
/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; 75 // CHECK-NEXT: [indexDeclaration]: kind: typedef | name: MyInt 80 // CHECK-NEXT: [indexEntityReference]: kind: typedef | name: MyInt 85 // CHECK-NEXT: [indexEntityReference]: kind: typedef | name: MyInt 105 // CHECK-NEXT: [indexDeclaration]: kind: typedef | name: MyInt | USR: c:index-refs.cpp@593@SP>1#T@TS>#t0.0#I@T@MyInt | {{.*}} | loc: 51:15 | semantic-container: [TS:50:8] | lexical-container: [TS:50:8] 108 [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...] |
/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}}
|
/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,)))
|
test_cmath.py | 169 class MyInt(object): 212 self.assertRaises(TypeError, f, MyInt())
|
pickletester.py | 115 class myint(int): class in inherits:int 434 x = myint(4) [all...] |
test_descr.py | [all...] |
/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,)))
|
test_cmath.py | 169 class MyInt(object): 212 self.assertRaises(TypeError, f, MyInt())
|
pickletester.py | 115 class myint(int): class in inherits:int 434 x = myint(4) [all...] |
test_descr.py | [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
CollectionsTest.java | 69 return -((MyInt) o1).compareTo((MyInt) o2); 73 return ((MyInt) o1).compareTo((MyInt) o2); 198 Integer myInt; 205 myInt = new Integer(counter); 206 normalCountingMap.put(myInt, myInt); 209 myInt = new Integer(counter + mapSize); 210 offsetCountingMap.put(myInt, myInt) [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
CollectionsTest.java | 80 myobjArray[i] = new MyInt(i); 86 return -((MyInt) o1).compareTo((MyInt) o2); 90 return ((MyInt) o1).compareTo((MyInt) o2); 215 Integer myInt; 222 myInt = new Integer(counter); 223 normalCountingMap.put(myInt, myInt); 226 myInt = new Integer(counter + mapSize) [all...] |