Home
last modified time | relevance | path

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

1234567

/external/v8/test/cctest/
Dtest-types.cc114 bool Equal(TypeHandle type1, TypeHandle type2) { in Equal()
116 type1->Equals(type2) && in Equal()
117 this->IsBitset(type1) == this->IsBitset(type2) && in Equal()
118 this->IsUnion(type1) == this->IsUnion(type2) && in Equal()
119 type1->NumClasses() == type2->NumClasses() && in Equal()
120 type1->NumConstants() == type2->NumConstants() && in Equal()
122 this->AsBitset(type1) == this->AsBitset(type2)) && in Equal()
125 this->Length(this->AsUnion(type2))); in Equal()
128 void CheckEqual(TypeHandle type1, TypeHandle type2) { in CheckEqual()
129 CHECK(Equal(type1, type2)); in CheckEqual()
[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
67 Type2: R_MIPS_SUB
73 Type2: R_MIPS_SUB
91 Type2: R_MIPS_LO16
/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/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/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/v8/src/
Dtypes.cc750 TypeHandle type1, TypeHandle type2, Region* region) { in Intersect() argument
753 if (type1->IsBitset() && type2->IsBitset()) { in Intersect()
754 return BitsetType::New(type1->AsBitset() & type2->AsBitset(), region); in Intersect()
758 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect()
759 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect()
762 if (type1->Is(type2)) return type1; in Intersect()
763 if (type2->Is(type1)) return type2; in Intersect()
772 type1->Representation() & type2->Representation(); in Intersect()
778 if (type1->SemanticIs(type2->unhandle())) { in Intersect()
779 type2 = Any(region); in Intersect()
[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/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/curl/lib/
Dcurl_ntlm_msgs.c252 unsigned char *type2 = NULL; in Curl_sasl_decode_ntlm_type2_message() local
266 result = Curl_base64_decode(type2msg, &type2, &type2_len); in Curl_sasl_decode_ntlm_type2_message()
272 if(!type2) { in Curl_sasl_decode_ntlm_type2_message()
280 (memcmp(type2, NTLMSSP_SIGNATURE, 8) != 0) || in Curl_sasl_decode_ntlm_type2_message()
281 (memcmp(type2 + 8, type2_marker, sizeof(type2_marker)) != 0)) { in Curl_sasl_decode_ntlm_type2_message()
283 free(type2); in Curl_sasl_decode_ntlm_type2_message()
288 ntlm->flags = Curl_read32_le(&type2[20]); in Curl_sasl_decode_ntlm_type2_message()
289 memcpy(ntlm->nonce, &type2[24], 8); in Curl_sasl_decode_ntlm_type2_message()
292 result = ntlm_decode_type2_target(data, type2, type2_len, ntlm); in Curl_sasl_decode_ntlm_type2_message()
294 free(type2); in Curl_sasl_decode_ntlm_type2_message()
[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/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/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/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/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/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/opencv3/modules/core/src/
Dprecomp.hpp117 typedef T2 type2; typedef
125 typedef T2 type2; typedef
133 typedef T2 type2; typedef
141 typedef T type2; typedef
149 typedef T type2; typedef
/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/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/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/javassist/src/main/javassist/compiler/
DCodeGen.java1003 int type2 = exprType; in atArithBinExpr() local
1005 if (type2 == INT || type2 == SHORT in atArithBinExpr()
1006 || type2 == CHAR || type2 == BYTE) in atArithBinExpr()
1011 convertOprandTypes(type1, type2, expr); in atArithBinExpr()
1031 int type2 = exprType; in atStringConcatExpr() local
1033 boolean type2Is2 = is2word(type2, dim2); in atStringConcatExpr()
1035 = (type2 == CLASS && jvmJavaLangString.equals(className)); in atStringConcatExpr()
1038 convToString(type2, dim2); in atStringConcatExpr()
1052 convToString(type2, dim2); in atStringConcatExpr()
1289 static boolean rightIsStrong(int type1, int type2) { in rightIsStrong() argument
[all …]
/external/llvm/test/DebugInfo/Generic/
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/parameter-framework/asio-1.10.6/include/asio/detail/
Dconfig.hpp56 # define ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&> argument
75 # define ASIO_MOVE_CAST2(type1, type2) static_cast<const type1, type2&> argument

1234567