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

1 2

  /external/lldb/include/lldb/Symbol/
TypeList.h 1 //===-- TypeList.h ----------------------------------------------*- C++ -*-===//
19 class TypeList
25 TypeList();
28 ~TypeList();
39 TypeList
83 DISALLOW_COPY_AND_ASSIGN (TypeList);
  /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/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/src/dx/java/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/src/main/java/com/google/dexmaker/
TypeList.java 27 final class TypeList {
31 TypeList(TypeId<?>[] types) {
47 return o instanceof TypeList && Arrays.equals(((TypeList) o).types, types);
  /libcore/dex/src/main/java/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) {
37 @Override public int compareTo(TypeList other) {
  /external/lldb/source/Symbol/
TypeList.cpp 1 //===-- TypeList.cpp --------------------------------------------*- C++ -*-===//
35 #include "lldb/Symbol/TypeList.h"
41 TypeList::TypeList() :
49 TypeList::~TypeList()
54 TypeList::Insert (const TypeSP& type_sp)
63 TypeList::InsertUnique (const TypeSP& type_sp)
84 //TypeList::FindType(lldb::user_id_t uid)
95 //TypeList
    [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> {
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 41 typedef std::vector<Type*> TypeList;
48 TypeList Types;
137 const TypeList &getTypes() const { return Types; }
BitcodeWriter.cpp 323 const ValueEnumerator::TypeList &TypeList = VE.getTypes();
380 TypeVals.push_back(TypeList.size());
385 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
386 Type *T = TypeList[i];
    [all...]
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 493 ListInit *TypeList = R->getValueAsListInit("RetTypes");
494 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
495 Record *TyEl = TypeList->getElementAsRecord(i);
527 TypeList = R->getValueAsListInit("ParamTypes");
528 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
529 Record *TyEl = TypeList->getElementAsRecord(i);
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 43 typedef std::vector<llvm::Type*> TypeList;
50 TypeList Types;
135 const TypeList &getTypes() const { return Types; }
BitcodeWriter.cpp 161 const llvm_2_9::ValueEnumerator::TypeList &TypeList = VE.getTypes();
175 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
176 Type *T = TypeList[i];
234 const llvm_2_9::ValueEnumerator::TypeList &TypeList = VE.getTypes();
302 TypeVals.push_back(TypeList.size());
307 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
308 Type *T = TypeList[i];
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.h 43 typedef std::vector<llvm::Type*> TypeList;
50 TypeList Types;
135 const TypeList &getTypes() const { return Types; }
BitcodeWriter.cpp 185 const llvm_2_9_func::ValueEnumerator::TypeList &TypeList = VE.getTypes();
242 TypeVals.push_back(TypeList.size());
247 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
248 Type *T = TypeList[i];
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.h 43 typedef std::vector<llvm::Type*> TypeList;
50 TypeList Types;
135 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/chromium_org/testing/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 783 struct TypeList {
786 typedef TypeList<T1, T2, T3, T4> self;
793 /// This type is used to do recursion. TypeList<>/EmptyTypeList indicates the
795 typedef typename TypeList<T2, T3, T4>::self tail;
800 /// First element is a typelist. Pop its first element.
803 struct TypeList<TypeList<Sub1, Sub2, Sub3, Sub4>, T2, T3,
804 T4> : public TypeList<Sub1,
805 typename TypeList<Sub2, Sub3, Sub4>::self,
806 typename TypeList<T2, T3, T4>::self> {}
    [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 83 typedef std::vector<Type*> TypeList;
    [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 3976 milliseconds

1 2