Searched refs:type2 (Results 1 - 25 of 58) sorted by relevance

123

/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/dexmaker/src/dx/java/com/android/dx/cf/code/
H A DMerger.java40 Type type2 = ft2.getType();
42 if (type1 == type2) {
44 } else if (type1.isReference() && type2.isReference()) {
50 return type2;
51 } else if (type2 == Type.KNOWN_NULL) {
53 * The same as above, but this time it's type2 that's
57 } else if (type1.isArray() && type2.isArray()) {
60 type2.getComponentType());
77 } else if (type1.isIntlike() && type2.isIntlike()) {
/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/clang/test/SemaTemplate/
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 Dcanonical-expr-type.cpp43 typedef T __attribute__((ext_vector_type(M))) type2; typedef in struct:X2
47 void f0(type2);
H A Dinstantiate-exception-spec-cxx11.cpp86 base(const typename T::type2 &);
95 struct type2 { struct in namespace:core_19754_example
102 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::__anon2731
59 type2 t3 = { s1.x };
/external/v8/test/cctest/
H A Dtest-types.cc354 bool Equal(TypeHandle type1, TypeHandle type2) { argument
356 type1->Equals(type2) &&
357 this->IsBitset(type1) == this->IsBitset(type2) &&
358 this->IsUnion(type1) == this->IsUnion(type2) &&
359 type1->NumClasses() == type2->NumClasses() &&
360 type1->NumConstants() == type2->NumConstants() &&
362 this->AsBitset(type1) == this->AsBitset(type2)) &&
365 this->Length(this->AsUnion(type2)));
368 void CheckEqual(TypeHandle type1, TypeHandle type2) { argument
369 CHECK(Equal(type1, type2));
372 CheckSub(TypeHandle type1, TypeHandle type2) argument
380 CheckUnordered(TypeHandle type1, TypeHandle type2) argument
388 CheckOverlap(TypeHandle type1, TypeHandle type2) argument
393 CheckDisjoint(TypeHandle type1, TypeHandle type2) argument
421 TypeHandle type2 = *it2; local
432 TypeHandle type2 = *it2; local
443 TypeHandle type2 = *it2; local
454 TypeHandle type2 = *it2; local
468 TypeHandle type2 = *it2; local
501 TypeHandle type2 = T.Class(map2); local
528 TypeHandle type2 = T.Constant(value2); local
614 TypeHandle type2 = T.Range(min2, max2); local
641 TypeHandle type2 = T.Random(); local
655 TypeHandle type2 = T.Random(); local
672 TypeHandle type2 = T.Random(); local
698 TypeHandle type2 = T.Random(); local
819 TypeHandle type2 = *it2; local
830 TypeHandle type2 = *it2; local
853 TypeHandle type2 = *it2; local
864 TypeHandle type2 = *it2; local
910 TypeHandle type2 = *it2; local
921 TypeHandle type2 = *it2; local
965 TypeHandle type2 = T.Range(min2, max2); local
980 TypeHandle type2 = T.Context(outer2); local
991 TypeHandle type2 = T.Array1(element2); local
1004 TypeHandle type2 = T.Function0(result2, receiver2); local
1014 TypeHandle type2 = *j; local
1131 TypeHandle type2 = *it2; local
1143 TypeHandle type2 = *it2; local
1153 TypeHandle type2 = *it2; local
1271 TypeHandle type2 = *it2; local
1280 TypeHandle type2 = *it2; local
1290 TypeHandle type2 = *it2; local
1300 TypeHandle type2 = *it2; local
1438 TypeHandle type2 = *it2; local
1468 TypeHandle type2 = *it2; local
1479 TypeHandle type2 = *it2; local
1528 TypeHandle type2 = *it2; local
1679 TypeHandle type2 = *it2; local
1724 TypeHandle type2 = *it2; local
1929 TypeHandle2 type2 = T2.template Convert<Type>(type1); local
1939 TypeHandle type2 = *it2; local
[all...]
/external/clang/test/CodeGenCXX/
H A Dmangle-subst.cpp90 typedef int type2; typedef in struct:ManglePrefix::X::Y
94 typename X<T>::template Y<T>::type f(typename X<T>::template Y<T>::type2) { return 0; }
H A Dtype_visibility.cpp139 namespace type2 { namespace
/external/javassist/src/main/javassist/compiler/ast/
H A DIntConst.java55 int type2 = right.type;
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant)
60 && type2 == TokenId.CharConstant)
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
H A DImplicitTest.java194 ASN1Implicit type2 = new ASN1Implicit(2, type1);
213 assertTrue(Arrays.equals(array, (byte[]) type2
217 assertTrue(Arrays.equals(primitiveEncoding, type2.encode(array)));
221 type2.decode(constructedEncoding);
/external/v8/src/
H A Dtypes.cc610 TypeHandle type1, TypeHandle type2, Region* region) {
611 bitset bits = type1->BitsetGlb() & type2->BitsetGlb();
615 if (type1->IsBitset() && type2->IsBitset()) {
620 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut.
621 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut.
624 if (type1->Is(type2)) return type1;
625 if (type2->Is(type1)) return type2;
629 int size2 = type2
609 Intersect( TypeHandle type1, TypeHandle type2, Region* region) argument
739 Union( TypeHandle type1, TypeHandle type2, Region* region) argument
[all...]
/external/google-breakpad/src/third_party/lss/
H A Dlinux_syscall_support.h1683 #define _syscall2(type,name,type1,arg1,type2,arg2) \
1684 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
1690 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \
1691 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
1698 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \
1699 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4) { \
1706 #define _syscall5(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
1708 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
1724 #define _syscall6(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4, \
1726 type LSS_NAME(name)(type1 arg1, type2 arg
[all...]
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/
H A Dresult_of.pass.cpp73 using type2 = std::result_of_t<decltype(&wat::foo)(wat)>;
74 static_assert(std::is_same<type2, void>::value, "");
/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/libxml2/
H A Dxmlregexp.c2241 * @type2: an atom type
2249 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { argument
2257 if ((type2 == XML_REGEXP_EPSILON) ||
2258 (type2 == XML_REGEXP_CHARVAL) ||
2259 (type2 == XML_REGEXP_RANGES) ||
2260 (type2 == XML_REGEXP_SUBREG) ||
2261 (type2 == XML_REGEXP_STRING) ||
2262 (type2 == XML_REGEXP_ANYCHAR))
2265 if (type1 == type2) return(1);
2267 /* simplify subsequent compares by making sure type1 < type2 */
[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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangParser.m335 LangParser_type_return * type2 = nil ;
354 type2 = [self type];
359 [stream_type addElement:[type2 getTree]];
/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/javassist/src/main/javassist/compiler/
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/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMixedItemSection.java58 ItemType type2 = item2.itemType();
59 return type1.compareTo(type2);
/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/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

Completed in 896 milliseconds

123