Searched refs:TypeList (Results 26 - 50 of 81) sorted by relevance

1234

/external/lldb/source/Symbol/
H A DSymbolFile.cpp77 TypeList *
/external/clang/include/clang/ASTMatchers/
H A DASTMatchersMacros.h180 /// You can't pass something like \c TypeList<Foo, Bar> to a macro, because it
182 /// \c void(TypeList<Foo, Bar>), which works thanks to the parenthesis.
184 /// extract the TypeList object.
185 #define AST_POLYMORPHIC_SUPPORTED_TYPES_1(t1) void(internal::TypeList<t1>)
187 void(internal::TypeList<t1, t2>)
189 void(internal::TypeList<t1, t2, t3>)
191 void(internal::TypeList<t1, t2, t3, t4>)
193 void(internal::TypeList<t1, t2, t3, internal::TypeList<t4, t5> >)
H A DASTMatchersInternal.h783 struct TypeList { struct in namespace:clang::ast_matchers::internal
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;
803 struct TypeList<TypeList<Sub1, Sub2, Sub3, Sub4>, T2, T3, struct in namespace:clang::ast_matchers::internal
804 T4> : public TypeList<Sub1,
805 typename TypeList<Sub2, Sub3, Sub4>::self,
806 typename TypeList<T2, T3, T4>::self> {};
812 struct TypeList<TypeLis struct in namespace:clang::ast_matchers::internal
[all...]
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest-typed-test.h166 typedef ::testing::internal::TypeList< Types >::type \
254 ::testing::internal::TypeList< Types >::type>::Register(\
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
H A Dgtest-typed-test.h166 typedef ::testing::internal::TypeList< Types >::type \
254 ::testing::internal::TypeList< Types >::type>::Register(\
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDefsSection.java22 import com.android.dx.rop.type.TypeList;
177 TypeList interfaces = c.getInterfaces();
H A DEncodedMethod.java23 import com.android.dx.rop.type.TypeList;
55 DalvCode code, TypeList throwsList) {
H A DClassDefItem.java30 import com.android.dx.rop.type.TypeList;
89 CstType superclass, TypeList interfaces, CstString sourceFile) {
196 TypeList list = interfaces.getList();
254 public TypeList getInterfaces() {
H A DCodeItem.java32 import com.android.dx.rop.type.TypeList;
67 private final TypeList throwsList;
86 TypeList throwsList) {
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DInsn.java21 import com.android.dx.rop.type.TypeList;
205 public abstract TypeList getCatches();
H A DRops.java27 import com.android.dx.rop.type.TypeList;
1122 public static Rop ropFor(int opcode, TypeBearer dest, TypeList sources,
1344 public static Rop opIfEq(TypeList types) {
1356 public static Rop opIfNe(TypeList types) {
1368 public static Rop opIfLt(TypeList types) {
1379 public static Rop opIfGe(TypeList types) {
1390 public static Rop opIfGt(TypeList types) {
1401 public static Rop opIfLe(TypeList types) {
1417 private static Rop pickIf(TypeList types, Rop intZ, Rop objZ, Rop intInt,
1461 public static Rop opAdd(TypeList type
[all...]
H A DBasicBlockList.java20 import com.android.dx.rop.type.TypeList;
260 TypeList catches1 = block1.getExceptionHandlerTypes();
261 TypeList catches2 = block2.getExceptionHandlerTypes();
H A DRegisterSpecList.java20 import com.android.dx.rop.type.TypeList;
29 extends FixedSizeList implements TypeList {
124 public TypeList withAddedType(Type type) {
/external/gtest/include/gtest/
H A Dgtest-typed-test.h166 typedef ::testing::internal::TypeList< Types >::type \
254 ::testing::internal::TypeList< Types >::type>::Register(\
/external/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h103 FindTypes (const lldb_private::SymbolContext& sc,const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types);
108 lldb_private::TypeList &type_list);
H A DSymbolFileSymtab.cpp23 #include "lldb/Symbol/TypeList.h"
64 SymbolFileSymtab::GetTypes (SymbolContextScope *sc_scope, uint32_t type_mask, lldb_private::TypeList &type_list)
389 lldb_private::TypeList& types)
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-typed-test.h166 typedef ::testing::internal::TypeList< Types >::type \
257 ::testing::internal::TypeList< Types >::type>::Register(\
/external/mesa3d/src/gtest/include/gtest/
H A Dgtest-typed-test.h166 typedef ::testing::internal::TypeList< Types >::type \
254 ::testing::internal::TypeList< Types >::type>::Register(\
/external/protobuf/gtest/include/gtest/
H A Dgtest-typed-test.h163 typedef ::testing::internal::TypeList<Types>::type \
248 ::testing::internal::TypeList<Types>::type>::Register(\
/external/llvm/utils/TableGen/
H A DCodeGenTarget.cpp493 ListInit *TypeList = R->getValueAsListInit("RetTypes"); local
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);
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DTypeId.java125 return new MethodId<T, Void>(this, VOID, "<init>", new TypeList(parameters));
129 return new MethodId<T, R>(this, returnType, name, new TypeList(parameters));
H A DDexMaker.java234 declaration.interfaces = new TypeList(interfaces);
406 private TypeList interfaces;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.h122 virtual uint32_t FindTypes (const lldb_private::SymbolContext& sc, const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, bool append, uint32_t max_matches, lldb_private::TypeList& types);
123 virtual lldb_private::TypeList *
127 lldb_private::TypeList &type_list);
367 lldb_private::TypeList* type_list,
447 uint32_t FindTypes(std::vector<dw_offset_t> die_offsets, uint32_t max_matches, lldb_private::TypeList& types);
/external/lldb/source/API/
H A DSBCompileUnit.cpp175 TypeList type_list;
/external/lldb/include/lldb/Symbol/
H A DType.h121 TypeList*
483 Append (const lldb_private::TypeList &type_list);

Completed in 447 milliseconds

1234