Home
last modified time | relevance | path

Searched refs:my_int (Results 1 – 12 of 12) sorted by relevance

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
Dapply.pass.cpp214 static int my_int = 42; variable
222 int & f(index<2>) { return static_cast<int &>(my_int); } in f()
223 int const & f(index<3>) { return static_cast<int const &>(my_int); } in f()
224 int volatile & f(index<4>) { return static_cast<int volatile &>(my_int); } in f()
225 int const volatile & f(index<5>) { return static_cast<int const volatile &>(my_int); } in f()
227 int && f(index<6>) { return static_cast<int &&>(my_int); } in f()
228 int const && f(index<7>) { return static_cast<int const &&>(my_int); } in f()
229 int volatile && f(index<8>) { return static_cast<int volatile &&>(my_int); } in f()
230 int const volatile && f(index<9>) { return static_cast<int const volatile &&>(my_int); } in f()
232 int * f(index<10>) { return static_cast<int *>(&my_int); } in f()
[all …]
/external/clang/test/SemaCXX/
Dc99-variable-length-array.cpp107 typedef int my_int; typedef
108 struct A { typedef int my_int; }; typedef
111 typedef typename T::my_int my_int; typedef
114 my_int a[M]; // expected-warning{{variable length arrays are a C99 feature}} in f0()
/external/python/cpython2/Lib/ctypes/test/
Dtest_arrays.py128 class my_int(c_int): class
131 t1 = my_int * 1
132 t2 = my_int * 1
/external/python/cpython3/Lib/ctypes/test/
Dtest_arrays.py127 class my_int(c_int): class
130 t1 = my_int * 1
131 t2 = my_int * 1
/external/clang/test/PCH/
Dempty-with-headers.c14 typedef int my_int; typedef
/external/python/cpython3/Lib/test/
Dtest_index.py65 my_int = MyInt(7)
66 direct_index = my_int.__index__()
67 operator_index = operator.index(my_int)
Dtest_int.py429 my_int = MyInt(7)
430 self.assertEqual(my_int, 7)
431 self.assertEqual(int(my_int), 42)
/external/v8/tools/clang/plugins/tests/
Dipc.cpp269 typedef const my_int_base my_int; in TestWriteParamArgument() typedef
270 typedef my_int& my_int_ref; in TestWriteParamArgument()
/external/protobuf/python/google/protobuf/internal/
Dtest_util.py349 message.my_int = 1
365 message.my_int = 1 # Field 1.
Dtext_format_test.py513 message.my_int = 101
/external/protobuf/src/google/protobuf/
Dunittest_proto3.proto248 int64 my_int = 1; field
Dunittest.proto513 optional int64 my_int = 1; field