HomeSort by relevance Sort by last modified time
    Searched full:myint (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/mesa3d/src/compiler/glsl/tests/warnings/
012-modassign.vert 7 int myInt;
9 myInt %= undefined;
10 myInt %= defined;
  /frameworks/compile/slang/tests/P_root_graphics/
root_graphics.rs 4 typedef int myInt;
6 myInt root(void) {
  /frameworks/compile/slang/tests/P_root_graphics_13/
root_graphics_13.rs 5 typedef int myInt;
7 myInt root(myInt launchID) {
  /external/annotation-tools/scene-lib/src/annotations/toys/
FancyAnnotation.java 4 int myInt();
  /external/python/cpython2/Lib/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/python/cpython3/Lib/ctypes/test/
test_simplesubclasses.py 4 class MyInt(c_int):
6 if type(other) != MyInt:
13 self.assertEqual(MyInt(3), MyInt(3))
14 self.assertNotEqual(MyInt(42), MyInt(43))
33 cb = CFUNCTYPE(None, MyInt)(func)
36 self.assertEqual(type(args[-1]), MyInt)
45 _fields_ = [("x", MyInt)]
47 self.assertEqual(X().x, MyInt())
    [all...]
  /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...]
  /system/chre/util/tests/
unique_ptr_test.cc 32 UniquePtr<Value> myInt = MakeUnique<Value>(0xcafe);
33 ASSERT_FALSE(myInt.isNull());
34 EXPECT_EQ(myInt.get()->value, 0xcafe);
35 EXPECT_EQ(myInt->value, 0xcafe);
36 EXPECT_EQ((*myInt).value, 0xcafe);
37 EXPECT_EQ(myInt[0].value, 0xcafe);
56 UniquePtr<Value> myInt = MakeUnique<Value>(0xcafe);
57 ASSERT_FALSE(myInt.isNull());
58 Value *value = myInt.get();
60 UniquePtr<Value> moved(std::move(myInt));
    [all...]
optional_test.cc 26 Optional<int> myInt;
27 EXPECT_FALSE(myInt.has_value());
31 Optional<int> myInt(0x1337);
32 EXPECT_TRUE(myInt.has_value());
33 EXPECT_EQ(*myInt, 0x1337);
37 Optional<int> myInt(std::move(0x1337));
38 EXPECT_TRUE(myInt.has_value());
39 EXPECT_EQ(*myInt, 0x1337);
43 Optional<int> myInt;
44 EXPECT_FALSE(myInt.has_value())
    [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"
  /prebuilts/go/darwin-x86/test/fixedbugs/bug504.dir/
a.go 7 type MyInt = int
b.go 9 func F() a.MyInt {
  /prebuilts/go/linux-x86/test/fixedbugs/bug504.dir/
a.go 7 type MyInt = int
b.go 9 func F() a.MyInt {
  /frameworks/layoutlib/create/tests/mock_data/mock_android/dummy/
InnerTest.java 58 MyIntEnum(int myInt) {
59 this.myInt = myInt;
61 final int myInt;
  /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...]
  /external/clang/unittests/Tooling/
QualTypeNamesTest.cpp 65 "A::B::Template0<A::B::C::MyInt, A::B::AnotherClass>";
68 "A::B::Template0<A::B::Template1<A::B::C::MyInt, A::B::AnotherClass>, "
73 "A::B::Template1<int, long>, A::B::C::MyInt>";
78 Visitor.ExpectedQualTypeNames["CheckG"] = "A::B::C::MyInt";
88 Visitor.ExpectedQualTypeNames["CheckL"] = "A::B::C::MyInt";
103 " typedef int MyInt;"
111 " void Function1(Template0<C::MyInt,\n"
113 " void Function2(Template0<Template1<C::MyInt, AnotherClass>,\n"
120 " B::C::MyInt > CheckE;\n"
122 " BC::MyInt CheckL;\n
    [all...]

Completed in 581 milliseconds

1 2 3 4 5