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

1 23 4 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/php/
factory.i 102 %define %factory(Method,Types...)
105 %formacro(%_factory_dispatch, Types)
  /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/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>);
  /libcore/libart/src/main/java/java/lang/reflect/
AbstractMethod.java 41 import libcore.reflect.Types;
140 * Returns an array of {@code Class} objects associated with the parameter types of this
144 * @return the parameter types
167 return Types.getTypeArray(getMethodOrConstructorGenericInfo().genericParameterTypes, false);
171 return Types.getTypeArray(getMethodOrConstructorGenericInfo().genericExceptionTypes, false);
270 Types.appendGenericType(sb, info.formalTypeParameters[i]);
280 Types.appendTypeName(sb, declaringClass);
283 Types.appendGenericType(sb, Types.getType(info.genericReturnType));
286 Types.appendTypeName(sb, declaringClass)
    [all...]
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...]
  /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 {
ClassObj.java 52 int[] types = mStaticFieldTypes; local
53 final int N = types.length;
62 int type = types[i];
63 int size = Types.getTypeSize(type);
65 if (type == Types.OBJECT) {
139 public final void setFieldTypes(int[] types) {
140 mFieldTypes = types;
147 public final void setStaticFieldTypes(int[] types) {
148 mStaticFieldTypes = types;
194 int[] types = mStaticFieldTypes local
    [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...]
  /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_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/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>
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 48 CodeGen::CodeGenTypes &Types = CGM.getTypes();
51 IntTy = Types.ConvertType(Ctx.IntTy);
52 SizeTy = Types.ConvertType(Ctx.getSizeType());
54 CharPtrTy = llvm::PointerType::getUnqual(Types.ConvertType(Ctx.CharTy));
55 VoidPtrTy = cast<llvm::PointerType>(Types.ConvertType(Ctx.VoidPtrTy));
  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 1 //===-- SITypeRewriter.cpp - Remove unwanted types ------------------------===//
20 /// - Having v1* types complicates the legalizer and we can easily replace
105 SmallVector <Type*, 8> Types;
113 Types.push_back(v4i32);
124 Types.push_back(ElementTy);
130 Types.push_back(Arg->getType());
139 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 41 /// The existing MVT iAny, fAny and vAny types suffice to represent
42 /// arbitrary integer, floating-point, and vector types, so only an unknown
46 /// of types. It is used during type inference because register classes can
47 /// have multiple possible types and we don't know which one they get until
53 /// Vector has multiple constrained types: (e.g. v4i32 + v4f32) it is one
54 /// of those types only.
92 /// types.
111 /// argument. If 'this' changes, it returns true. If the two types are
119 /// Force this type list to only contain integer types.
122 /// Force this type list to only contain floating point types
    [all...]

Completed in 1554 milliseconds

1 23 4 5 6 7 8 91011>>