HomeSort by relevance Sort by last modified time
    Searched refs:Types (Results 51 - 75 of 274) sorted by null

1 23 4 5 6 7 8 91011

  /libcore/libart/src/main/java/java/lang/reflect/
Method.java 40 import libcore.reflect.Types;
63 // This is necessary for methods that have covariant return types.
150 * Returns the exception types as an array of {@code Class} instances. If
168 * types of this method. If the method was declared with no parameters, an
171 * @return the parameter types
207 * one method's return types is assignable to the other.
232 * Returns the parameter types as an array of {@code Type} instances, in
236 * @return the parameter types
247 return Types.getTypeArray(getMethodOrConstructorGenericInfo().genericParameterTypes, false);
258 * Returns the exception types as an array of {@code Type} instances. I
    [all...]
AbstractMethod.java 41 import libcore.reflect.Types;
132 * Returns an array of {@code Class} objects associated with the parameter types of this
136 * @return the parameter types
159 return Types.getTypeArray(getMethodOrConstructorGenericInfo().genericParameterTypes, false);
163 return Types.getTypeArray(getMethodOrConstructorGenericInfo().genericExceptionTypes, false);
262 Types.appendGenericType(sb, info.formalTypeParameters[i]);
272 Types.appendTypeName(sb, declaringClass);
275 Types.appendGenericType(sb, Types.getType(info.genericReturnType));
278 Types.appendTypeName(sb, declaringClass)
    [all...]
Constructor.java 40 import libcore.reflect.Types;
100 * Returns the exception types as an array of {@code Class} instances. If
111 * parameter types of this constructor. If the constructor was declared with
151 * Returns the generic parameter types as an array of {@code Type}
155 * @return the parameter types
170 * Returns the exception types as an array of {@code Type} instances. If
174 * @return an array of generic exception types
233 result.append(Types.getSignature(parameterType));
297 * <li>parameter types, separated by ',' (if any)
299 * <li>'throws' plus exception types, separated by ',' (if any
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p1-0x.cpp 3 // Metafunction to extract the Nth type from a set of types.
4 template<unsigned N, typename ...Types> struct get_nth_type;
82 template<typename ...Types> struct tuple { };
84 template<typename ...Types>
85 void pack_not_at_end(tuple<Types...>, Types... values, int);
  /external/gtest/test/
gtest_nc.cc 123 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
142 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
163 INSTANTIATE_TYPED_TEST_CASE_P(My, BarTest, testing::Types<int>);
179 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
182 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<double>);
gtest_xml_output_unittest_.cc 48 using ::testing::Types;
151 typedef Types<int, long> TypedTestTypes;
161 typedef Types<int, long> TypeParameterizedTestCaseTypes;
  /external/protobuf/gtest/test/
gtest_nc.cc 123 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
142 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
163 INSTANTIATE_TYPED_TEST_CASE_P(My, BarTest, testing::Types<int>);
179 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
182 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<double>);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p4.cpp 3 template<typename... Types> struct tuple;
151 template<typename ...Types>
153 typedef tuple<Types& ...> types; typedef in struct:tuple_of_refs
157 tuple_of_refs<int&, float&>::types *t_int_ref_float_ref_2 = t_int_ref_float_ref;
159 template<typename ...Types>
161 typedef tuple<typename Types::type...> types; typedef in struct:extract_nested_types
165 extract_nested_types<identity<int>, identity<float> >::types *t_int_float_2
178 template<typename ...Types>
    [all...]
metafunctions.cpp 240 template<typename R, typename ...Types>
241 struct Arity<R(Types...)> {
242 static const unsigned value = sizeof...(Types);
245 template<typename R, typename ...Types>
246 struct Arity<R(Types......)> {
247 static const unsigned value = sizeof...(Types);
266 template<template<typename ...> class TT, typename ...Types>
267 struct replace_with_int<TT<Types...>> {
268 typedef TT<typename replace_with_int<Types>::type...> type;
  /dalvik/hit/src/com/android/hit/
ClassInstance.java 47 private void resolve(State state, ClassObj isa, int[] types,
51 final int N = types.length;
59 int type = types[i];
60 int size = Types.getTypeSize(type);
62 if (type == Types.OBJECT) {
108 int[] types = isa.mFieldTypes; local
111 final int N = types.length;
119 int type = types[i];
120 int size = Types.getTypeSize(type);
122 if (type == Types.OBJECT)
159 int[] types = isa.mFieldTypes; local
    [all...]
Types.java 19 public class Types {
  /external/open-vcdiff/gtest/include/gtest/
gtest-typed-test.h 37 // Typed (aka type-driven) tests repeat the same test for types in a
38 // list. You must know which types you want to test with when writing
54 // Next, associate a list of types with the test case, which will be
57 typedef testing::Types<char, int, unsigned int> MyTypes;
61 // directly without Types<...>:
91 // different types any number of times, in any number of translation
132 // Finally, you are free to instantiate the pattern with the types you
140 typedef testing::Types<char, int, unsigned int> MyTypes;
144 // directly without Types<...>:
162 #define TYPED_TEST_CASE(CaseName, Types) \
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-typed-test.h 37 // Typed (aka type-driven) tests repeat the same test for types in a
38 // list. You must know which types you want to test with when writing
54 // Next, associate a list of types with the test case, which will be
57 typedef testing::Types<char, int, unsigned int> MyTypes;
61 // directly without Types<...>:
91 // different types any number of times, in any number of translation
132 // Finally, you are free to instantiate the pattern with the types you
140 typedef testing::Types<char, int, unsigned int> MyTypes;
144 // directly without Types<...>:
162 #define TYPED_TEST_CASE(CaseName, Types) \
    [all...]
  /external/chromium/testing/gtest/test/
gtest_xml_output_unittest_.cc 48 using ::testing::Types;
151 typedef Types<int, long> TypedTestTypes;
161 typedef Types<int, long> TypeParameterizedTestCaseTypes;
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataTest.java 36 import java.sql.Types;
204 assertEquals("Incorrect data type", java.sql.Types.INTEGER, rs.getInt("DATA_TYPE"));
926 // these types are OK
929 fail("Incorrect SQL state types");
1183 int[] types = { Types.ARRAY, Types.BIGINT, Types.BINARY, Types.BIT, local
    [all...]
  /external/chromium/testing/gtest/samples/
sample6_unittest.cc 73 // types) in the base interface, for example.
79 using testing::Types;
81 // Google Test offers two ways for reusing tests for different types.
83 // already know *all* the types you are gonna exercise when you write
93 // The list of types we want to test.
94 typedef Types<OnTheFlyPrimeTable, PreCalculatedPrimeTable> Implementations;
142 using testing::Types;
144 // Sometimes, however, you don't yet know all the types that you want
206 // any real test yet as you haven't said which types you want to run
210 // it with a list of types. Usually the test pattern will be define
    [all...]
  /external/chromium_org/testing/gtest/samples/
sample6_unittest.cc 73 // types) in the base interface, for example.
79 using testing::Types;
81 // Google Test offers two ways for reusing tests for different types.
83 // already know *all* the types you are gonna exercise when you write
93 // The list of types we want to test.
94 typedef Types<OnTheFlyPrimeTable, PreCalculatedPrimeTable> Implementations;
142 using testing::Types;
144 // Sometimes, however, you don't yet know all the types that you want
206 // any real test yet as you haven't said which types you want to run
210 // it with a list of types. Usually the test pattern will be define
    [all...]
  /external/gtest/samples/
sample6_unittest.cc 73 // types) in the base interface, for example.
79 using testing::Types;
81 // Google Test offers two ways for reusing tests for different types.
83 // already know *all* the types you are gonna exercise when you write
93 // The list of types we want to test.
94 typedef Types<OnTheFlyPrimeTable, PreCalculatedPrimeTable> Implementations;
142 using testing::Types;
144 // Sometimes, however, you don't yet know all the types that you want
206 // any real test yet as you haven't said which types you want to run
210 // it with a list of types. Usually the test pattern will be define
    [all...]
  /external/protobuf/gtest/samples/
sample6_unittest.cc 73 // types) in the base interface, for example.
79 using testing::Types;
81 // Google Test offers two ways for reusing tests for different types.
83 // already know *all* the types you are gonna exercise when you write
93 // The list of types we want to test.
94 typedef Types<OnTheFlyPrimeTable, PreCalculatedPrimeTable> Implementations;
142 using testing::Types;
144 // Sometimes, however, you don't yet know all the types that you want
206 // any real test yet as you haven't said which types you want to run
210 // it with a list of types. Usually the test pattern will be define
    [all...]
  /ndk/sources/third_party/googletest/googletest/samples/
sample6_unittest.cc 73 // types) in the base interface, for example.
79 using testing::Types;
81 // Google Test offers two ways for reusing tests for different types.
83 // already know *all* the types you are gonna exercise when you write
93 // The list of types we want to test.
94 typedef Types<OnTheFlyPrimeTable, PreCalculatedPrimeTable> Implementations;
142 using testing::Types;
144 // Sometimes, however, you don't yet know all the types that you want
206 // any real test yet as you haven't said which types you want to run
210 // it with a list of types. Usually the test pattern will be define
    [all...]
  /external/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>

Completed in 1136 milliseconds

1 23 4 5 6 7 8 91011