Home
last modified time | relevance | path

Searched refs:TypeA (Results 1 – 5 of 5) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
DIterablesTest.java287 private static class TypeA {}
289 private static class HasBoth extends TypeA implements TypeB {}
294 Iterable<TypeA> alist = Lists
295 .newArrayList(new TypeA(), new TypeA(), hasBoth, new TypeA());
/external/chromium/base/
Dtuple.h85 typedef A TypeA;
96 typedef A TypeA;
112 typedef A TypeA;
131 typedef A TypeA;
153 typedef A TypeA;
178 typedef A TypeA;
206 typedef A TypeA;
238 typedef A TypeA;
/external/libnfc-nxp/inc/
DphNfcHalTypes.h933 unsigned int TypeA:1; member
/external/chromium_org/base/
Dtuple.h82 typedef A TypeA;
93 typedef A TypeA;
109 typedef A TypeA;
128 typedef A TypeA;
150 typedef A TypeA;
175 typedef A TypeA;
203 typedef A TypeA;
235 typedef A TypeA;
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp784 TypeMatcher TypeA = hasDeclaration(recordDecl(hasName("A"))); in TEST() local
786 EXPECT_TRUE(matches("class A { public: A *a; };", TypeA)); in TEST()
787 EXPECT_TRUE(notMatches("class A {};", TypeA)); in TEST()
793 EXPECT_TRUE(notMatches("class A {};", TypeA)); in TEST()