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

12 3 4 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
factory.swg 81 %define %factory(Method,Types...)
84 %formacro(%_factory_dispatch, Types)
  /libcore/luni/src/main/java/java/sql/
Types.java 21 * A class which defines constants used to identify generic SQL types, also
22 * called JDBC types. The type constant values are equivalent to those defined
25 public class Types {
30 private Types() {
  /external/chromium_org/cc/trees/
occlusion_tracker_unittest.cc 169 template <typename Types> class OcclusionTrackerTest : public testing::Test {
177 Types::DestroyLayer(&root_);
184 typename Types::HostType* GetHost();
186 typename Types::ContentLayerType* CreateRoot(const gfx::Transform& transform,
189 typename Types::ContentLayerPtrType layer(
190 Types::CreateContentLayer(GetHost()));
191 typename Types::ContentLayerType* layer_ptr = layer.get();
195 root_ = Types::PassLayerPtr(&layer);
202 typename Types::LayerType* CreateLayer(typename Types::LayerType* parent
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 25 case Types.SMALLINT: return "java.lang.Short";
26 case Types.INTEGER: return "java.lang.Integer";
27 case Types.REAL:
28 case Types.DOUBLE: return "java.lang.Double";
29 case Types.FLOAT: return "java.lang.Float";
30 case Types.BIGINT: return "java.lang.Long";
31 case Types.DATE: return "java.sql.Date";
32 case Types.TIME: return "java.sql.Time";
33 case Types.TIMESTAMP: return "java.sql.Timestamp";
34 case Types.BINARY
    [all...]
TableResultX.java 3 import java.sql.Types;
13 sql_type[i] = Types.VARCHAR;
21 sql_type[i] = Types.VARCHAR;
30 this.types = tr.types;
34 sql_type[i] = Types.VARCHAR;
36 if (tr.types != null) {
37 for (int i = 0; i < tr.types.length; i++) {
38 sql_type[i] = JDBCDatabaseMetaData.mapSqlType(tr.types[i]);
43 void sql_types(int types[]) {
    [all...]
  /build/tools/droiddoc/test/stubs/expected/com/android/stubs/
Types.java 2 public class Types
15 protected Types() { throw new RuntimeException("Stub!"); }
  /build/tools/droiddoc/test/stubs/src/com/android/stubs/
Types.java 19 public class Types {
39 public Types() {
  /external/deqp/modules/gles2/functional/
es2fLifetimeTests.cpp 53 MovePtr<Types> m_types;
61 m_types = MovePtr<Types>(new ES2Types(ltCtx));
  /external/emma/core/java12/com/vladium/emma/
IAppConstants.java 12 import com.vladium.jcd.lib.Types;
32 String APP_PACKAGE = Types.getClassPackageName (IAppConstants.class);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p9-0x.cpp 4 // Metafunction to extract the Nth type from a set of types.
5 template<unsigned N, typename ...Types> struct get_nth_type;
47 template<typename ...Types>
50 template<typename ...Types>
51 void accept_tuple(tuple<Types...>);
p3-0x.cpp 19 template<typename ... Types>
20 unsigned_c<count<Types...>::value> f();
  /dalvik/hit/src/com/android/hit/
ArrayInstance.java 38 if (mType != Types.OBJECT) {
46 int idSize = Types.getTypeSize(mType);
93 if (mType != Types.OBJECT) {
101 int idSize = Types.getTypeSize(mType);
131 return Types.getTypeName(mType) + "[" + mNumEntries + "]";
141 if (mType != Types.OBJECT) {
145 int idSize = Types.getTypeSize(mType);
  /external/chromium_org/testing/gtest/test/
gtest-typed-test_test.cc 90 using testing::Types;
95 typedef Types<char, int> TwoTypes;
145 // Types<...> type list.
146 TYPED_TEST_CASE(TypedTest2, Types<int>);
160 typedef Types<int, long> NumericTypes;
174 using testing::Types;
266 typedef Types<short, long> MyTwoTypes;
309 // can be either a single type or a Types<...> type list.
311 INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP2, Types<int>);
315 INSTANTIATE_TYPED_TEST_CASE_P(Double, TypedTestP2, Types<double>)
    [all...]
  /external/gtest/test/
gtest-typed-test_test.cc 89 using testing::Types;
94 typedef Types<char, int> TwoTypes;
144 // Types<...> type list.
145 TYPED_TEST_CASE(TypedTest2, Types<int>);
159 typedef Types<int, long> NumericTypes;
173 using testing::Types;
265 typedef Types<short, long> MyTwoTypes;
308 // can be either a single type or a Types<...> type list.
310 INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP2, Types<int>);
314 INSTANTIATE_TYPED_TEST_CASE_P(Double, TypedTestP2, Types<double>)
    [all...]
  /external/protobuf/gtest/test/
gtest-typed-test_test.cc 89 using testing::Types;
94 typedef Types<char, int> TwoTypes;
144 // Types<...> type list.
145 TYPED_TEST_CASE(TypedTest2, Types<int>);
159 typedef Types<int, long> NumericTypes;
173 using testing::Types;
265 typedef Types<short, long> MyTwoTypes;
308 // can be either a single type or a Types<...> type list.
310 INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP2, Types<int>);
314 INSTANTIATE_TYPED_TEST_CASE_P(Double, TypedTestP2, Types<double>)
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-typed-test_test.cc 89 using testing::Types;
94 typedef Types<char, int> TwoTypes;
144 // Types<...> type list.
145 TYPED_TEST_CASE(TypedTest2, Types<int>);
159 typedef Types<int, long> NumericTypes;
173 using testing::Types;
265 typedef Types<short, long> MyTwoTypes;
308 // can be either a single type or a Types<...> type list.
310 INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP2, Types<int>);
314 INSTANTIATE_TYPED_TEST_CASE_P(Double, TypedTestP2, Types<double>)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 18 template<typename T, typename... Types>
19 array<sizeof...(Types)> make_array1(Types&&... args);
27 template<typename T, typename... Types>
28 int make_array(array<sizeof...(Types)>&, Types... args);
40 template<typename T, typename... Types>
41 static array<sizeof...(Types)> make_array(Types ... args);
multi-level-substitution.cpp 31 template<typename ...Types>
38 struct Inner<tuple<pair<Types, YTypes>...> > {
39 static const unsigned value = sizeof...(Types) - sizeof...(YTypes);
54 template<typename ...Types>
61 struct Inner<tuple<pair<Types, YTypes>...>,
62 unsigned_tuple<sizeof(Types) + sizeof(YTypes)...>> {
82 template<typename ...Types>
89 struct Inner<R(pair<Types, YTypes>...)> {
90 static const unsigned value = sizeof...(Types) - sizeof...(YTypes);
175 template<typename ...Types>
    [all...]
  /external/chromium_org/testing/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 // The 'Types' template argument below must have spaces around i
    [all...]
  /external/chromium_org/third_party/mesa/src/src/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 // The 'Types' template argument below must have spaces around i
    [all...]
  /external/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 // The 'Types' template argument below must have spaces around i
    [all...]
  /external/llvm/utils/unittest/googletest/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 // The 'Types' template argument below must have spaces around i
    [all...]
  /external/mesa3d/src/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 // The 'Types' template argument below must have spaces around i
    [all...]
  /ndk/sources/third_party/googletest/googletest/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 // The 'Types' template argument below must have spaces around i
    [all...]
  /external/clang/test/SemaTemplate/
default-arguments-cxx0x.cpp 46 template <typename... Types>
49 bool = is<Types...>()>

Completed in 664 milliseconds

12 3 4 5 6 7 8 91011>>