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);
  /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/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 44 typedef std::vector<Type*> TypeList;
54 TypeList Types;
164 const TypeList &getTypes() const { return Types; }
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 486 ListInit *TypeList = R->getValueAsListInit("RetTypes");
487 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
488 Record *TyEl = TypeList->getElementAsRecord(i);
520 TypeList = R->getValueAsListInit("ParamTypes");
521 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
522 Record *TyEl = TypeList->getElementAsRecord(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; }
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];
214 const llvm_2_9::ValueEnumerator::TypeList &TypeList = VE.getTypes();
255 TypeVals.push_back(TypeList.size());
260 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
261 Type *T = TypeList[i];
    [all...]
  /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; }
BitcodeWriter.cpp 185 const llvm_2_9_func::ValueEnumerator::TypeList &TypeList = VE.getTypes();
240 TypeVals.push_back(TypeList.size());
245 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
246 Type *T = TypeList[i];
    [all...]
  /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; }
BitcodeWriter.cpp 185 const llvm_3_2::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...]
  /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/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h     [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 84 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 1167 milliseconds

1 2