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

1 2 34 5 6 7 8 91011

  /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));
  /dalvik/hit/src/com/android/hit/
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/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.
107 /// argument. If 'this' changes, it returns true. If the two types are
115 /// Force this type list to only contain integer types.
118 /// Force this type list to only contain floating point types
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_xml_output_unittest_.cc 151 typedef testing::Types<int, long> TypedTestTypes;
163 typedef testing::Types<int, long> TypeParameterizedTestCaseTypes;
  /external/clang/lib/Driver/
Android.mk 27 Types.cpp \
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/database/
SQLiteCursor.java 14 import java.sql.Types;
147 case Types.DOUBLE:
150 case Types.NUMERIC:
153 case Types.BLOB:
156 case Types.LONGVARCHAR:
159 case Types.NULL:
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 10 template < typename > struct Types;
36 typename Types > class TypeParameterizedTest
40 typedef typename Types::Head Type;
45 typename Types > class TypeParameterizedTestCase
50 TypeParameterizedTest < Fixture, Head, Types >::Register;
90 TypeList < Types < int > >::type >::Register ("Int", "TypedTestP2", 0);
  /libcore/libdvm/src/main/java/java/lang/reflect/
Method.java 42 import libcore.reflect.Types;
76 // this is necessary for methods that have covariant return types.
181 appendGenericType(sb, Types.getType(genericReturnType));
188 appendArrayGenericType(sb, Types.getTypeArray(genericParameterTypes, false));
191 Type[] genericExceptionTypeArray = Types.getTypeArray(genericExceptionTypes, false);
200 * Returns the parameter types as an array of {@code Type} instances, in
204 * @return the parameter types
216 return Types.getTypeArray(genericParameterTypes, true);
220 * Returns the exception types as an array of {@code Type} instances. If
223 * @return an array of generic exception types
    [all...]
Constructor.java 40 import libcore.reflect.Types;
93 * the parameter types of the constructor
95 * the exception types of the constructor
156 appendArrayGenericType(sb, Types.getTypeArray(genericParameterTypes, false));
159 Type[] genericExceptionTypeArray = Types.getTypeArray(genericExceptionTypes, false);
168 * Returns the generic parameter types as an array of {@code Type}
172 * @return the parameter types
184 return Types.getTypeArray(genericParameterTypes, true);
188 * Returns the exception types as an array of {@code Type} instances. If
192 * @return an array of generic exception types
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/internal_api/pub/base/
ModelType.java 11 import com.google.ipc.invalidation.external.client.types.ObjectId;
12 import com.google.protos.ipc.invalidation.Types;
18 * The model types that are synced in Chrome for Android.
74 /** Special type representing all possible types. */
101 return ObjectId.newInstance(Types.ObjectSource.Type.CHROME_SYNC.getNumber(),
114 * Converts string representations of types to sync to {@link ModelType}s.
132 // Drop invalid sync types.
141 * Converts a set of sync types {@link String} to a set of {@link ObjectId}.
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-internal.h 44 #include <sys/types.h>
73 // This allows a user to use his own types in Google Test assertions by
86 // To allow STL containers (and other types that has a << operator
507 // returned for different types. Calling the function twice with the
575 // Types of SetUpTestCase() and TearDownTestCase() functions.
661 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
668 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
671 // 'index' is the index of the test in the type list 'Types'
673 // Types). Valid values for 'index' are [0, N - 1] where N is the
674 // length of Types
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 44 #include <sys/types.h>
73 // This allows a user to use his own types in Google Test assertions by
86 // To allow STL containers (and other types that has a << operator
505 // returned for different types. Calling the function twice with the
573 // Types of SetUpTestCase() and TearDownTestCase() functions.
654 // TypeParameterizedTest<Fixture, TestSel, Types>::Register()
661 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types>
664 // 'index' is the index of the test in the type list 'Types'
666 // Types). Valid values for 'index' are [0, N - 1] where N is the
667 // length of Types
    [all...]
  /external/smali/
README.md 16 - [Types, Methods and Fields wiki page](https://code.google.com/p/smali/wiki/TypesMethodsAndFields)
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_output_unittest_.cc 154 typedef testing::Types<int, long> TypedTestTypes;
166 typedef testing::Types<int, long> TypeParameterizedTestCaseTypes;
gtest_list_tests_unittest_.cc 124 typedef testing::Types<VeryLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooogName, // NOLINT
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 21 import static java.sql.Types.*;
  /external/chromium_org/sync/sessions/
ordered_commit_set.h 78 // Returns all the types that are included in this list.
79 ModelTypeSet Types() const {
123 // The set of types which are included in this particular list.
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
partial-ordering.cpp 5 template<typename ...Types> struct tuple;
example-bind.cpp 205 template<int I, typename IntTuple, typename... Types> struct make_indexes_impl;
207 template<int I, int... Indexes, typename T, typename... Types>
208 struct make_indexes_impl<I, int_tuple<Indexes...>, T, Types...> {
209 typedef typename make_indexes_impl<I+1, int_tuple<Indexes..., I>, Types...>::type type;
217 template<typename... Types>
218 struct make_indexes : make_indexes_impl<0, int_tuple<>, Types...> {
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 5 template<typename ...Types = int> // expected-error{{template parameter pack cannot have a default argument}}
  /external/clang/test/SemaCXX/
crash-lambda-12645424.cpp 10 template<typename... Types> struct type_list;
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
SDL_systimer.c 26 #include <Types.h>
  /libcore/libart/src/main/java/java/lang/reflect/
Field.java 41 import libcore.reflect.Types;
191 Types.appendGenericType(sb, getGenericType());
230 return Types.getSignature(getType());
    [all...]

Completed in 670 milliseconds

1 2 34 5 6 7 8 91011