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

1 2

  /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) {
  /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 39 typedef std::vector<Type*> TypeList;
46 TypeList Types;
131 const TypeList &getTypes() const { return Types; }
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 464 ListInit *TypeList = R->getValueAsListInit("RetTypes");
465 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
466 Record *TyEl = TypeList->getElementAsRecord(i);
498 TypeList = R->getValueAsListInit("ParamTypes");
499 for (unsigned i = 0, e = TypeList->getSize(); i != e; ++i) {
500 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; }
BitcodeWriter.cpp 190 const llvm_3_2::ValueEnumerator::TypeList &TypeList = VE.getTypes();
247 TypeVals.push_back(TypeList.size());
252 for (unsigned i = 0, e = TypeList.size(); i != e; ++i) {
253 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/chromium/testing/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /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 742 /// and to the "typedef TypeList<...> tail" below. Nothing else is needed.
746 struct TypeList {
752 /// This type is used to do recursion. TypeList<>/EmptyTypeList indicates the
754 typedef TypeList<T2, T3, T4, T5, T6, T7, T8> tail;
765 template <> template <typename T> struct TypeList<>::ContainsSuperOf {
770 typedef TypeList<> EmptyTypeList;
775 typedef TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc,
789 typedef TypeList<Decl, Stmt, NestedNameSpecifier, NestedNameSpecifierLoc,
    [all...]
  /external/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 82 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/open-vcdiff/gtest/include/gtest/internal/
gtest-type-util.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-type-util.h     [all...]

Completed in 2482 milliseconds

1 2