Searched defs:type2 (Results 1 - 25 of 45) sorted by relevance

12

/external/clang/test/Sema/
H A Dc11-typedef-redef.c8 typedef int type2; typedef
9 typedef type type2; typedef
10 typedef int type2; typedef
/external/clang/test/SemaTemplate/
H A Dcanonical-expr-type.cpp43 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2
47 void f0(type2);
H A Dms-if-exists.cpp14 typedef Nontemplate::value type2; typedef
27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
H A Dinstantiate-exception-spec-cxx11.cpp79 base(const typename T::type2 &);
88 struct type2 { struct in namespace:core_19754_example
95 typedef type2<types> type2; typedef in struct:core_19754_example::types
H A Dinstantiate-declref.cpp58 typedef struct { T z; } type2; typedef in typeref:struct:N2::Outer2::Inner::__anon18665
59 type2 t3 = { s1.x };
/external/chromium_org/sync/api/
H A Dsync_error_unittest.cc52 ModelType type2 = PREFERENCES; local
53 error.Reset(location2, msg2, type2);
57 EXPECT_EQ(type2, error.model_type());
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
H A DCommonSuperclassTest.java92 String type1, String type2) {
95 TypeProto type2Proto = classPath.getClass(type2);
91 superclassTest(String commonSuperclass, String type1, String type2) argument
/external/clang/test/CodeGenCXX/
H A Dtype_visibility.cpp139 namespace type2 { namespace
/external/chromium_org/content/public/test/
H A Dtest_notification_tracker.cc52 int type2) {
57 bool success = events_[0].type == type1 && events_[1].type == type2;
63 int type2,
70 events_[1].type == type2 &&
51 Check2AndReset(int type1, int type2) argument
62 Check3AndReset(int type1, int type2, int type3) argument
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp108 typedef typename outer_alias::inner::vector<type>::template rebind<type>::other type2; typedef in struct:X6
389 // CHECK: Keyword: "typedef" [108:3 - 108:10] TypedefDecl=type2:108:83 (Definition)
390 // CHECK: Keyword: "typename" [108:11 - 108:19] TypedefDecl=type2:108:83 (Definition)
392 // CHECK: Punctuation: "::" [108:31 - 108:33] TypedefDecl=type2:108:83 (Definition)
394 // CHECK: Punctuation: "::" [108:38 - 108:40] TypedefDecl=type2:108:83 (Definition)
396 // CHECK: Punctuation: "<" [108:46 - 108:47] TypedefDecl=type2:108:83 (Definition)
398 // CHECK: Punctuation: ">" [108:51 - 108:52] TypedefDecl=type2:108:83 (Definition)
399 // CHECK: Punctuation: "::" [108:52 - 108:54] TypedefDecl=type2:108:83 (Definition)
400 // CHECK: Keyword: "template" [108:54 - 108:62] TypedefDecl=type2:108:83 (Definition)
401 // CHECK: Identifier: "rebind" [108:63 - 108:69] TypedefDecl=type2
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-many-arguments.cpp10 struct type2 struct
13 constexpr type2(T a00, T a01, T a02, T a03, T a04, T a05, T a06, T a07, T a08, T a09, function in struct:type2
25 constexpr type3(type2 a0, type2 a1) : my_data{a0, a1} {}
26 type2 my_data[2];
H A Dqualified-id-lookup.cpp67 typedef struct N::f2 type2; typedef in typeref:struct:f2
/external/javassist/src/main/javassist/bytecode/analysis/
H A DMultiType.java188 private Map mergeMultiInterfaces(MultiType type1, MultiType type2) { argument
190 Map map2 = getAllMultiInterfaces(type2);
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dmigration_test.cc37 syncer::ModelType type2) {
38 return syncer::ModelTypeSet(type1, type2);
65 syncer::ModelType type2) {
66 return MakeList(MakeSet(type1), MakeSet(type2));
36 MakeSet(syncer::ModelType type1, syncer::ModelType type2) argument
64 MakeList(syncer::ModelType type1, syncer::ModelType type2) argument
/external/chromium_org/ui/events/gesture_detection/
H A Dtouch_disposition_gesture_filter_unittest.cc83 EventType type2) {
87 gestures[2] = type2;
93 EventType type2,
98 gestures[2] = type2;
81 Gestures(EventType type0, EventType type1, EventType type2) argument
91 Gestures(EventType type0, EventType type1, EventType type2, EventType type3) argument
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DStdTypeList.java195 * @param type2 {@code non-null;} the third element
198 public static StdTypeList make(Type type0, Type type1, Type type2) { argument
202 result.set(2, type2);
211 * @param type2 {@code non-null;} the third element
215 public static StdTypeList make(Type type0, Type type1, Type type2, argument
220 result.set(2, type2);
/external/chromium_org/v8/src/
H A Dtypes.cc589 TypeHandle type1, TypeHandle type2, Region* region) {
591 if (type1->IsBitset() && type2->IsBitset()) {
592 return BitsetType::New(type1->AsBitset() | type2->AsBitset(), region);
596 if (type1->IsAny() || type2->IsNone()) return type1;
597 if (type2->IsAny() || type1->IsNone()) return type2;
600 if (!(type1->IsUnion() || type2->IsUnion())) {
601 if (type1->Is(type2)) return type2;
602 if (type2
588 Union( TypeHandle type1, TypeHandle type2, Region* region) argument
638 Intersect( TypeHandle type1, TypeHandle type2, Region* region) argument
[all...]
H A Dpreparser.h447 bool HasConflict(PropertyKind type1, PropertyKind type2) { argument
448 return (type1 & type2) != 0;
450 bool IsDataDataConflict(PropertyKind type1, PropertyKind type2) { argument
451 return ((type1 & type2) & kValueFlag) != 0;
453 bool IsDataAccessorConflict(PropertyKind type1, PropertyKind type2) { argument
454 return ((type1 ^ type2) & kValueFlag) != 0;
456 bool IsAccessorAccessorConflict(PropertyKind type1, PropertyKind type2) { argument
457 return ((type1 | type2) & kValueFlag) == 0;
/external/javassist/src/main/javassist/compiler/
H A DTypeChecker.java498 int type2 = exprType;
502 insertCast(expr, type1, type2);
535 private void insertCast(BinExpr expr, int type1, int type2) argument
538 if (CodeGen.rightIsStrong(type1, type2))
539 expr.setLeft(new CastExpr(type2, 0, expr.oprand1()));
H A DCodeGen.java1003 int type2 = exprType;
1005 if (type2 == INT || type2 == SHORT
1006 || type2 == CHAR || type2 == BYTE)
1011 convertOprandTypes(type1, type2, expr);
1031 int type2 = exprType;
1033 boolean type2Is2 = is2word(type2, dim2);
1035 = (type2 == CLASS && jvmJavaLangString.equals(className));
1038 convToString(type2, dim
1289 rightIsStrong(int type1, int type2) argument
1305 convertOprandTypes(int type1, int type2, Expr expr) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DClassWriter.java1232 * @param type2 index of an internal name in {@link #typeTable}.
1235 int getMergedType(final int type1, final int type2) { argument
1237 key2.longVal = type1 | (((long) type2) << 32);
1238 key2.hashCode = 0x7FFFFFFF & (TYPE_MERGED + type1 + type2);
1242 String u = typeTable[type2].strVal1;
1260 * @param type2 the internal name of another class.
1264 protected String getCommonSuperClass(final String type1, final String type2) argument
1269 d = Class.forName(type2.replace('/', '.'));
1277 return type2;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c404 SVGA3dShaderRegType type0, type1, type2; local
410 type2 = SVGA3dShaderGetRegType( src2.base.value );
415 (type2 == SVGA3DREG_CONST && src0.base.num != src2.base.num)))
419 (type2 == SVGA3DREG_CONST && src1.base.num != src2.base.num))
425 (type2 == SVGA3DREG_INPUT && src0.base.num != src2.base.num)))
429 (type2 == SVGA3DREG_INPUT && src1.base.num != src2.base.num))
475 SVGA3dShaderRegType type0, type1, type2, type3; local
481 type2 = SVGA3dShaderGetRegType( src2.base.value );
492 (type2 == SVGA3DREG_CONST && src0.base.num != src2.base.num)))
496 (type2
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc365 bool Equal(TypeHandle type1, TypeHandle type2) { argument
367 type1->Is(type2) && type2->Is(type1) &&
368 Rep::IsBitset(type1) == Rep::IsBitset(type2) &&
369 Rep::IsClass(type1) == Rep::IsClass(type2) &&
370 Rep::IsConstant(type1) == Rep::IsConstant(type2) &&
371 Rep::IsContext(type1) == Rep::IsContext(type2) &&
372 Rep::IsArray(type1) == Rep::IsArray(type2) &&
373 Rep::IsFunction(type1) == Rep::IsFunction(type2) &&
374 Rep::IsUnion(type1) == Rep::IsUnion(type2)
388 CheckEqual(TypeHandle type1, TypeHandle type2) argument
392 CheckSub(TypeHandle type1, TypeHandle type2) argument
400 CheckUnordered(TypeHandle type1, TypeHandle type2) argument
408 CheckOverlap(TypeHandle type1, TypeHandle type2, TypeHandle mask) argument
417 CheckDisjoint(TypeHandle type1, TypeHandle type2, TypeHandle mask) argument
440 TypeHandle type2 = *it2; local
451 TypeHandle type2 = *it2; local
462 TypeHandle type2 = *it2; local
473 TypeHandle type2 = *it2; local
487 TypeHandle type2 = *it2; local
519 TypeHandle type2 = T.Class(map2); local
546 TypeHandle type2 = T.Constant(value2); local
610 TypeHandle type2 = T.Random(); local
624 TypeHandle type2 = T.Random(); local
641 TypeHandle type2 = T.Random(); local
667 TypeHandle type2 = T.Random(); local
825 TypeHandle type2 = *it2; local
836 TypeHandle type2 = *it2; local
988 TypeHandle type2 = *it2; local
1000 TypeHandle type2 = *it2; local
1010 TypeHandle type2 = *it2; local
1148 TypeHandle type2 = *it2; local
1157 TypeHandle type2 = *it2; local
1167 TypeHandle type2 = *it2; local
1177 TypeHandle type2 = *it2; local
1315 TypeHandle type2 = *it2; local
1327 TypeHandle type2 = *it2; local
1342 TypeHandle type2 = *it2; local
1353 TypeHandle type2 = *it2; local
1366 TypeHandle type2 = *it2; local
1380 TypeHandle type2 = *it2; local
1393 TypeHandle type2 = *it2; local
1543 TypeHandle type2 = *it2; local
1556 TypeHandle type2 = *it2; local
1571 TypeHandle type2 = *it2; local
1582 TypeHandle type2 = *it2; local
1595 TypeHandle type2 = *it2; local
1609 TypeHandle type2 = *it2; local
1623 TypeHandle type2 = *it2; local
1736 TypeHandle type2 = *it2; local
1756 TypeHandle type2 = *it2; local
1775 TypeHandle2 type2 = T2.template Convert<Type>(type1); local
1785 TypeHandle type2 = *it2; local
[all...]
/external/lldb/source/Symbol/
H A DClangASTContext.cpp1079 ClangASTType type2,
1083 if (ast != type2.GetASTContext())
1086 if (type1.GetOpaqueQualType() == type2.GetOpaqueQualType())
1090 QualType type2_qual = type2.GetQualType();
1078 AreTypesSame(ClangASTType type1, ClangASTType type2, bool ignore_qualifiers) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c404 SVGA3dShaderRegType type0, type1, type2; local
410 type2 = SVGA3dShaderGetRegType( src2.base.value );
415 (type2 == SVGA3DREG_CONST && src0.base.num != src2.base.num)))
419 (type2 == SVGA3DREG_CONST && src1.base.num != src2.base.num))
425 (type2 == SVGA3DREG_INPUT && src0.base.num != src2.base.num)))
429 (type2 == SVGA3DREG_INPUT && src1.base.num != src2.base.num))
475 SVGA3dShaderRegType type0, type1, type2, type3; local
481 type2 = SVGA3dShaderGetRegType( src2.base.value );
492 (type2 == SVGA3DREG_CONST && src0.base.num != src2.base.num)))
496 (type2
[all...]

Completed in 849 milliseconds

12