Home
last modified time | relevance | path

Searched full:type2 (Results 1 – 25 of 132) sorted by relevance

123456

/external/v8/test/cctest/
Dtest-types.cc252 template<class Type2, class TypeHandle2>
254 return Type::template Convert<Type2>(t, region_); in Convert()
354 bool Equal(TypeHandle type1, TypeHandle type2) { in Equal()
356 type1->Equals(type2) && in Equal()
357 this->IsBitset(type1) == this->IsBitset(type2) && in Equal()
358 this->IsUnion(type1) == this->IsUnion(type2) && in Equal()
359 type1->NumClasses() == type2->NumClasses() && in Equal()
360 type1->NumConstants() == type2->NumConstants() && in Equal()
362 this->AsBitset(type1) == this->AsBitset(type2)) && in Equal()
365 this->Length(this->AsUnion(type2))); in Equal()
[all …]
/external/dexmaker/src/dx/java/com/android/dx/cf/code/
DMerger.java40 Type type2 = ft2.getType(); in mergeType() local
42 if (type1 == type2) { in mergeType()
44 } else if (type1.isReference() && type2.isReference()) { in mergeType()
50 return type2; in mergeType()
51 } else if (type2 == Type.KNOWN_NULL) { in mergeType()
53 * The same as above, but this time it's type2 that's in mergeType()
57 } else if (type1.isArray() && type2.isArray()) { in mergeType()
60 type2.getComponentType()); in mergeType()
77 } else if (type1.isIntlike() && type2.isIntlike()) { in mergeType()
/external/llvm/test/Object/Mips/
Delf-mips64-rel.yaml20 # YAML-NEXT: Type2: R_MIPS_SUB
26 # YAML-NEXT: Type2: R_MIPS_SUB
41 # YAML-NEXT: Type2: R_MIPS_LO16
66 Type2: R_MIPS_SUB
72 Type2: R_MIPS_SUB
90 Type2: R_MIPS_LO16
/external/clang/test/SemaCXX/
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, in type2() argument
25 constexpr type3(type2 a0, type2 a1) : my_data{a0, a1} {} in type3() argument
26 type2 my_data[2];
/external/google-breakpad/src/third_party/lss/
Dlinux_syscall_support.h1683 #define _syscall2(type,name,type1,arg1,type2,arg2) \ argument
1684 type LSS_NAME(name)(type1 arg1,type2 arg2) { \
1690 #define _syscall3(type,name,type1,arg1,type2,arg2,type3,arg3) \ argument
1691 type LSS_NAME(name)(type1 arg1,type2 arg2,type3 arg3) { \
1698 #define _syscall4(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \ argument
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, \ argument
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, \ argument
1726 type LSS_NAME(name)(type1 arg1, type2 arg2, type3 arg3, type4 arg4, \
[all …]
/external/v8/src/
Dtypes.cc610 TypeHandle type1, TypeHandle type2, Region* region) { in Intersect() argument
611 bitset bits = type1->BitsetGlb() & type2->BitsetGlb(); in Intersect()
615 if (type1->IsBitset() && type2->IsBitset()) { in Intersect()
620 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect()
621 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect()
624 if (type1->Is(type2)) return type1; in Intersect()
625 if (type2->Is(type1)) return type2; in Intersect()
629 int size2 = type2->IsUnion() ? type2->AsUnion()->Length() : 1; in Intersect()
643 RangeType* range2 = type2->GetRange(); in Intersect()
652 size = IntersectAux(type1, type2, result, size, region); in Intersect()
[all …]
/external/skia/src/animator/
DSkScript.cpp1258 SkOpType type2; in processOp() local
1259 fTypeStack.pop(&type2); in processOp()
1260 SkOpType type1 = type2; in processOp()
1268 SkTSwap(type1, type2); in processOp()
1285 if (type2 == kObject && (type2 & attributes->fLeftType) == 0) { in processOp()
1287 val.fType = ToDisplayType(type2); in processOp()
1292 type2 = ToOpType(val.fType); in processOp()
1296 if (type1 != type2) { in processOp()
1297 …butes->fLeftType & kString) && attributes->fBias & kTowardsString && ((type1 | type2) & kString)) { in processOp()
1302 if (type2 == kInt || type2 == kScalar) { in processOp()
[all …]
/external/deqp/modules/gles3/performance/
Des3pStateChangeCallTests.cpp97 #define ADD_ARG_CASE3(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2)\ argument
110 const TYPE2 args2[] = ARGS2;\
116 const TYPE2 arg2 = args2[baseNdx%DE_LENGTH_OF_ARRAY(args2)];\
124 #define ADD_ARG_CASE4(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2, TYPE3,… argument
137 const TYPE2 args2[] = ARGS2;\
144 const TYPE2 arg2 = args2[baseNdx%DE_LENGTH_OF_ARRAY(args2)];\
153 #define ADD_ARG_CASE5(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2, TYPE3,… argument
166 const TYPE2 args2[] = ARGS2;\
174 const TYPE2 arg2 = args2[baseNdx%DE_LENGTH_OF_ARRAY(args2)];\
184 #define ADD_ARG_CASE6(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2, TYPE3,… argument
[all …]
/external/clang/test/Sema/
Dc11-typedef-redef.c8 typedef int type2; in f() typedef
9 typedef type type2; in f() typedef
10 typedef int type2; in f() typedef
/external/deqp/modules/gles2/performance/
Des2pStateChangeCallTests.cpp97 #define ADD_ARG_CASE3(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2)\ argument
110 const TYPE2 args2[] = ARGS2;\
116 const TYPE2 arg2 = args2[baseNdx%DE_LENGTH_OF_ARRAY(args2)];\
124 #define ADD_ARG_CASE4(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2, TYPE3,… argument
137 const TYPE2 args2[] = ARGS2;\
144 const TYPE2 arg2 = args2[baseNdx%DE_LENGTH_OF_ARRAY(args2)];\
153 #define ADD_ARG_CASE6(NAME, DESCRIPTION, FUNCNAME, TYPE0, ARGS0, TYPE1, ARGS1, TYPE2, ARGS2, TYPE3,… argument
166 const TYPE2 args2[] = ARGS2;\
175 const TYPE2 arg2 = args2[baseNdx%DE_LENGTH_OF_ARRAY(args2)];\
/external/clang/test/SemaTemplate/
Dms-if-exists.cpp14 typedef Nontemplate::value type2; in __if_exists() typedef
27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
Dinstantiate-exception-spec-cxx11.cpp86 base(const typename T::type2 &);
95 struct type2 { struct
102 typedef type2<types> type2; typedef
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DImplicitTest.java189 * TYPE2 = [2] IMPLICIT TYPE1
194 ASN1Implicit type2 = new ASN1Implicit(2, type1); in testConsecutiveStringTagging() local
213 assertTrue(Arrays.equals(array, (byte[]) type2 in testConsecutiveStringTagging()
217 assertTrue(Arrays.equals(primitiveEncoding, type2.encode(array))); in testConsecutiveStringTagging()
221 type2.decode(constructedEncoding); in testConsecutiveStringTagging()
/external/clang/test/Index/
Dannotate-nested-name-specifier.cpp108 typedef typename outer_alias::inner::vector<type>::template rebind<type>::other type2; typedef
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:108:83 (Definition)
[all …]
/external/libnfc-nxp/src/
DphFriNfc_MapTools.h46 typ1/type2/type3/type4 tags.
65 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/
78 /* Macros to find major and minor TAG : Ex:Type1/Type2/Type3/Type4 version numbers*/
/external/javassist/src/main/javassist/compiler/ast/
DIntConst.java55 int type2 = right.type; in compute0() local
57 if (type1 == TokenId.LongConstant || type2 == TokenId.LongConstant) in compute0()
60 && type2 == TokenId.CharConstant) in compute0()
/external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
Dmain.cpp27 typedef Type1 Type2; // should show as hex typedef
28 typedef Type2 Type3; // should show as char
89 Type2 T2ILookHex = 12; in main()
/external/libxml2/
Dxmlregexp.c2241 * @type2: an atom type
2249 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { in xmlFACompareAtomTypes() argument
2257 if ((type2 == XML_REGEXP_EPSILON) || in xmlFACompareAtomTypes()
2258 (type2 == XML_REGEXP_CHARVAL) || in xmlFACompareAtomTypes()
2259 (type2 == XML_REGEXP_RANGES) || in xmlFACompareAtomTypes()
2260 (type2 == XML_REGEXP_SUBREG) || in xmlFACompareAtomTypes()
2261 (type2 == XML_REGEXP_STRING) || in xmlFACompareAtomTypes()
2262 (type2 == XML_REGEXP_ANYCHAR)) in xmlFACompareAtomTypes()
2265 if (type1 == type2) return(1); in xmlFACompareAtomTypes()
2267 /* simplify subsequent compares by making sure type1 < type2 */ in xmlFACompareAtomTypes()
[all …]
/external/clang/test/Misc/
Dinteger-literal-printing.cpp7 template <unsigned short T> class Type2 {}; class
8 template <unsigned short T> void Function2(Type2<T>& x) {} // expected-note{{candidate function [wi… in Function2()
69 Function2(Type2<42>()); // expected-error{{no matching function for call to 'Function2'}} in Function()
/external/clang/test/SemaObjCXX/
Darc-type-traits.mm13 #define TRAIT_IS_TRUE_2(Trait, Type1, Type2) char JOIN2(Trait,__LINE__)[Trait(Type1, Type2)? 1 : -1]
14 #define TRAIT_IS_FALSE_2(Trait, Type1, Type2) char JOIN2(Trait,__LINE__)[Trait(Type1, Type2)? -1 : …
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DStdTypeList.java195 * @param type2 {@code non-null;} the third element
198 public static StdTypeList make(Type type0, Type type1, Type type2) { in make() argument
202 result.set(2, type2); in make()
211 * @param type2 {@code non-null;} the third element
215 public static StdTypeList make(Type type0, Type type1, Type type2, in make() argument
220 result.set(2, type2); in make()
/external/protobuf/vsprojects/
Dreadme.txt94 C4244 - Conversion from 'type1' to 'type2', possible loss of data.
96 clients of class 'type2'
98 C4305 - 'identifier' : truncation from 'type1' to 'type2'
/external/llvm/test/Transforms/LoopVectorize/
Dlcssa-crash.ll6 %type1 = type { %type2 }
7 %type2 = type { [0 x i8*], i8**, i32, i32, i32 }
/external/llvm/test/DebugInfo/
Dtu-composite.ll19 ; CHECK: [[TYPE2:.*]]: DW_TAG_structure_type
35 ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
39 ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
45 ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
49 ; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
/external/libexif/
DNEWS52 * Added support for writing Pentax and Casio type2 MakerNotes
53 * Improved display of Pentax and Casio type2 MakerNotes
81 * Added support for 2 new types of Pentax makernotes & Casio type2 makernote

123456