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

1 2 34 5 6 7 8 91011>>

  /libcore/libart/src/main/java/java/lang/reflect/
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));
303 * <li>parameter types, separated by ',' (if any)
305 * <li>'throws' plus exception types, separated by ',' (if any
    [all...]
  /external/clang/lib/Driver/
Android.mk 29 Types.cpp \
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/database/
SQLiteCursor.java 14 import java.sql.Types;
152 case Types.DOUBLE:
155 case Types.NUMERIC:
158 case Types.BLOB:
161 case Types.LONGVARCHAR:
164 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);
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 45 /// when lowered to llvm types. For example unsigned x : 24 gets lowered to
66 /// SCISSOR. If LLVM were updated to read base types (which it probably
76 // member. In additional to the standard member types, there exists a
96 CGRecordLowering(CodeGenTypes &Types, const RecordDecl *D);
108 return llvm::Type::getIntNTy(Types.getLLVMContext(),
114 llvm::Type *Type = llvm::Type::getInt8Ty(Types.getLLVMContext());
121 llvm::Type *Type = Types.ConvertTypeForMem(FD->getType());
128 return Types.getCGRecordLayout(RD).getBaseSubobjectLLVMType();
142 return Types.getCXXABI().isZeroInitializable(MPT);
148 return Types.getCGRecordLayout(RD).isZeroInitializable()
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/internal_api/pub/base/
ModelType.java 10 import com.google.ipc.invalidation.external.client.types.ObjectId;
11 import com.google.protos.ipc.invalidation.Types;
19 * The model types that are synced in Chrome for Android.
75 /** Special type representing all possible types. */
102 return ObjectId.newInstance(Types.ObjectSource.Type.CHROME_SYNC.getNumber(),
115 * Converts string representations of types to sync to {@link ModelType}s.
133 // Drop invalid sync types.
142 * Converts a set of sync types {@link String} to a set of {@link ObjectId}.
  /external/chromium_org/testing/gtest/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/gtest/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/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/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/llvm/unittests/Support/
ErrorOrTest.cpp 44 TEST(ErrorOr, Types) {
50 // Move only types.
  /external/qemu/distrib/sdl-1.2.15/src/timer/macos/
SDL_systimer.c 26 #include <Types.h>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdtypes.h 275 WSD_NAME_LIST *Types;
284 WSD_NAME_LIST *Types;
316 WSD_NAME_LIST *Types;
323 WSD_NAME_LIST *Types;
353 WSD_NAME_LIST *Types;
  /external/deqp/modules/glshared/
glsLifetimeTests.hpp 259 class Types : public ContextWrapper
262 Types (const Context& ctx)
269 virtual ~Types (void) {}
353 class ES2Types : public Types
381 void addTestCases (TestCaseGroup& group, Types& types);
417 using details::Types;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapter.java 18 import com.google.protos.ipc.invalidation.Types;
143 Log.v(TAG, "Received sync tickle for all types.");
151 resolvedSource = Types.ObjectSource.Type.CHROME_SYNC.getNumber();
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
ChromiumSyncAdapterTest.java 14 import com.google.protos.ipc.invalidation.Types;
101 assertEquals(Types.ObjectSource.Type.CHROME_SYNC.getNumber(),

Completed in 777 milliseconds

1 2 34 5 6 7 8 91011>>