/external/v8/test/cctest/ |
D | test-types.cc | 252 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/ |
D | Merger.java | 40 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/ |
D | elf-mips64-rel.yaml | 20 # 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/ |
D | constexpr-many-arguments.cpp | 10 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/ |
D | linux_syscall_support.h | 1683 #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/ |
D | types.cc | 610 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/ |
D | SkScript.cpp | 1258 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/ |
D | es3pStateChangeCallTests.cpp | 97 #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/ |
D | c11-typedef-redef.c | 8 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/ |
D | es2pStateChangeCallTests.cpp | 97 #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/ |
D | ms-if-exists.cpp | 14 typedef Nontemplate::value type2; in __if_exists() typedef 27 X<int>::type2 i2; // expected-error{{no type named 'type2' in 'X<int>'}}
|
D | instantiate-exception-spec-cxx11.cpp | 86 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/ |
D | ImplicitTest.java | 189 * 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/ |
D | annotate-nested-name-specifier.cpp | 108 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/ |
D | phFriNfc_MapTools.h | 46 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/ |
D | IntConst.java | 55 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/ |
D | main.cpp | 27 typedef Type1 Type2; // should show as hex typedef 28 typedef Type2 Type3; // should show as char 89 Type2 T2ILookHex = 12; in main()
|
/external/libxml2/ |
D | xmlregexp.c | 2241 * @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/ |
D | integer-literal-printing.cpp | 7 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/ |
D | arc-type-traits.mm | 13 #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/ |
D | StdTypeList.java | 195 * @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/ |
D | readme.txt | 94 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/ |
D | lcssa-crash.ll | 6 %type1 = type { %type2 } 7 %type2 = type { [0 x i8*], i8**, i32, i32, i32 }
|
/external/llvm/test/DebugInfo/ |
D | tu-composite.ll | 19 ; 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/ |
D | NEWS | 52 * 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
|