HomeSort by relevance Sort by last modified time
    Searched defs:TypeList (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
TypeList.java 21 public class TypeList implements RawDexObject {
54 * Returns if this TypeList comes before the provided TypeList, considering the legal
57 public boolean comesBefore(TypeList other) {
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeList.java 22 public interface TypeList {
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
  /dalvik/dx/src/com/android/dex/
TypeList.java 21 public final class TypeList implements Comparable<TypeList> {
23 public static final TypeList EMPTY = new TypeList(null, Dex.EMPTY_SHORT_ARRAY);
28 public TypeList(Dex dex, short[] types) {
38 public int compareTo(TypeList other) {
  /dalvik/dx/src/com/android/dx/rop/type/
TypeList.java 22 public interface TypeList {
25 * {@code TypeList} interface itself doesn't provide any
68 public TypeList withAddedType(Type type);
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
TypeList.java 27 final class TypeList {
31 TypeList(TypeId<?>[] types) {
48 return o instanceof TypeList && Arrays.equals(((TypeList) o).types, types);
  /external/libchrome/base/
bind_helpers.h 307 struct TypeList {};
315 struct DropTypeListItemImpl<n, TypeList<T, List...>>
316 : DropTypeListItemImpl<n - 1, TypeList<List...>> {};
319 struct DropTypeListItemImpl<0, TypeList<T, List...>> {
320 using Type = TypeList<T, List...>;
324 struct DropTypeListItemImpl<0, TypeList<>> {
325 using Type = TypeList<>;
328 // A type-level function that drops |n| list item from given TypeList.
338 struct TakeTypeListItemImpl<n, TypeList<T, List...>, Accum...>
339 : TakeTypeListItemImpl<n - 1, TypeList<List...>, Accum..., T> {}
    [all...]
  /external/libcxx/test/support/
poisoned_hash_helper.hpp 23 template <class ...Args> struct TypeList;
52 using LibraryHashTypes = TypeList<
210 struct TypeList<First, Rest...> {
214 return TypeList<Rest...>::template assertTrait<Trait, Expect>();
220 TypeList<Rest...>::template applyTrait<Trait>();
225 struct TypeList<> {
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
ValueEnumerator.h 38 typedef std::vector<Type*> TypeList;
45 TypeList Types;
116 const TypeList &getTypes() const { return Types; }
BitcodeWriter.cpp 192 const ValueEnumerator::TypeList &TypeList = VE.getTypes();
249 TypeVals.push_back(TypeList.size());
254 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
255 Type *T = TypeList[i];
    [all...]
  /frameworks/native/services/sensorservice/
traits.h 30 struct TypeList {
36 #define TYPELIST_1(T1) TypeList<T1, NullType>
37 #define TYPELIST_2(T1, T2) TypeList<T1, TYPELIST_1(T2)>
38 #define TYPELIST_3(T1, T2, T3) TypeList<T1, TYPELIST_2(T2, T3)>
39 #define TYPELIST_4(T1, T2, T3, T4) TypeList<T1, TYPELIST_3(T2, T3, T4)>
51 struct IndexOf<TypeList<T, Tail>, T> {
56 struct IndexOf<TypeList<Head, Tail>, T> {
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
poisoned_hash_helper.hpp 23 template <class ...Args> struct TypeList;
52 using LibraryHashTypes = TypeList<
210 struct TypeList<First, Rest...> {
214 return TypeList<Rest...>::template assertTrait<Trait, Expect>();
220 TypeList<Rest...>::template applyTrait<Trait>();
225 struct TypeList<> {
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 46 typedef std::vector<Type*> TypeList;
56 TypeList Types;
205 const TypeList &getTypes() const { return Types; }
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 498 ListInit *TypeList = R->getValueAsListInit("RetTypes");
499 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) {
500 Record *TyEl = TypeList->getElementAsRecord(i);
532 TypeList = R->getValueAsListInit("ParamTypes");
533 for (unsigned i = 0, e = TypeList->size(); i != e; ++i) {
534 Record *TyEl = TypeList->getElementAsRecord(i);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
CodeGenTarget.cpp 405 ListInit *TypeList = R->getValueAsListInit("RetTypes");
406 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
407 Record *TyEl = TypeList->getElementAsRecord(i);
439 TypeList = R->getValueAsListInit("ParamTypes");
440 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
441 Record *TyEl = TypeList->getElementAsRecord(i);
CodeGenRegisters.cpp 266 std::vector<Record*> TypeList = R->getValueAsListOfDefs("RegTypes");
267 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
268 Record *Type = TypeList[i];
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 45 typedef std::vector<llvm::Type*> TypeList;
52 TypeList Types;
155 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 45 typedef std::vector<llvm::Type*> TypeList;
52 TypeList Types;
155 const TypeList &getTypes() const { return Types; }
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.h 46 typedef std::vector<llvm::Type*> TypeList;
55 TypeList Types;
158 const TypeList &getTypes() const { return Types; }
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 31 template < typename T > struct TypeList
86 TypeList < int >::type >::Register ("Int", "TypedTestP1", 0);
90 TypeList < Types < int > >::type >::Register ("Int", "TypedTestP2", 0);
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/googletest/googletest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-type-util.h     [all...]

Completed in 2329 milliseconds

1 2 3 4 5