HomeSort by relevance Sort by last modified time
    Searched refs:Types (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/gtest/test/
gtest-typed-test2_test.cc 43 testing::Types<std::vector<int> >);
gtest-typed-test_test.cc 87 using testing::Types;
92 typedef Types<char, int> TwoTypes;
142 // Types<...> type list.
143 TYPED_TEST_CASE(TypedTest2, Types<int>);
157 typedef Types<int, long> NumericTypes;
171 using testing::Types;
267 typedef Types<short, long> MyTwoTypes;
310 // can be either a single type or a Types<...> type list.
312 INSTANTIATE_TYPED_TEST_CASE_P(Int, TypedTestP2, Types<int>);
316 INSTANTIATE_TYPED_TEST_CASE_P(Double, TypedTestP2, Types<double>)
    [all...]
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/protobuf/gtest/test/
gtest-typed-test2_test.cc 43 testing::Types<std::vector<int> >);
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...]
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/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 512 String tableNamePattern, String types[])
528 if (types == null || types.length == 0) {
533 for (int i = 0; i < types.length; i++) {
536 sb.append(SQLite.Shell.sql_quote(types[i].toLowerCase()));
623 int types[] = { local
624 Types.VARCHAR, Types.VARCHAR, Types.VARCHAR,
625 Types.VARCHAR, Types.SMALLINT, Types.VARCHAR
693 int types[] = { local
713 int types[] = { local
756 int types[] = { local
847 int types[] = { local
881 int types[] = { local
1047 int types[] = { local
1073 int types[] = { local
1119 int types[] = { local
1149 int types[] = { local
1298 int types[] = { local
    [all...]
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...]
  /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() {
  /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/emma/core/java12/com/vladium/emma/
IAppConstants.java 12 import com.vladium.jcd.lib.Types;
32 String APP_PACKAGE = Types.getClassPackageName (IAppConstants.class);
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
Types.java 21 public class Types {
23 public static Type[] getClonedTypeArray(ListOfTypes types) {
24 return types.getResolvedTypes().clone();
  /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);
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/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...]
  /libcore/luni/src/test/java/tests/java/sql/
DatabaseMetaDataTest.java 40 import java.sql.Types;
215 assertEquals("Incorrect data type", java.sql.Types.INTEGER, rs.getInt("DATA_TYPE"));
1384 int[] types = { Types.ARRAY, Types.BIGINT, Types.BINARY, Types.BIT, local
    [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...]
  /external/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>
  /ndk/sources/android/stlport/stlport/stl/config/
_apple.h 31 # include <Types.h>
34 # include <Types.h>

Completed in 1175 milliseconds

1 2 3