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

1 2 3

  /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) {
  /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/libchrome/base/
bind_helpers.h 571 struct TypeList {};
579 struct DropTypeListItemImpl<n, TypeList<T, List...>>
580 : DropTypeListItemImpl<n - 1, TypeList<List...>> {};
583 struct DropTypeListItemImpl<0, TypeList<T, List...>> {
584 using Type = TypeList<T, List...>;
588 struct DropTypeListItemImpl<0, TypeList<>> {
589 using Type = TypeList<>;
592 // A type-level function that drops |n| list item from given TypeList.
602 struct TakeTypeListItemImpl<n, TypeList<T, List...>, Accum...>
603 : TakeTypeListItemImpl<n - 1, TypeList<List...>, Accum..., T> {}
    [all...]
  /external/libweave/third_party/chromium/base/
bind_helpers.h 510 struct TypeList {};
518 struct DropTypeListItemImpl<n, TypeList<T, List...>>
519 : DropTypeListItemImpl<n - 1, TypeList<List...>> {};
522 struct DropTypeListItemImpl<0, TypeList<T, List...>> {
523 using Type = TypeList<T, List...>;
527 struct DropTypeListItemImpl<0, TypeList<>> {
528 using Type = TypeList<>;
531 // A type-level function that drops |n| list item from given TypeList.
541 struct TakeTypeListItemImpl<n, TypeList<T, List...>, Accum...>
542 : TakeTypeListItemImpl<n - 1, TypeList<List...>, Accum..., T> {}
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 44 typedef std::vector<Type*> TypeList;
54 TypeList Types;
165 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);
  /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; }
  /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...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-type-util.h     [all...]

Completed in 2039 milliseconds

1 2 3