/external/v8/src/compiler/ |
D | types.cc | 618 Type* Type::Intersect(Type* type1, Type* type2, Zone* zone) { in Intersect() argument 620 if (type1->IsBitset() && type2->IsBitset()) { in Intersect() 621 return BitsetType::New(type1->AsBitset() & type2->AsBitset()); in Intersect() 625 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect() 626 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect() 629 if (type1->Is(type2)) return type1; in Intersect() 630 if (type2->Is(type1)) return type2; in Intersect() 636 if (type1->Is(type2)) { in Intersect() 637 type2 = Any(); in Intersect() 638 } else if (type2->Is(type1)) { in Intersect() [all …]
|
/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 67 Type2: R_MIPS_SUB 73 Type2: R_MIPS_SUB 91 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() function 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/ast/ |
D | ast-types.cc | 732 AstType* AstType::Intersect(AstType* type1, AstType* type2, Zone* zone) { in Intersect() argument 734 if (type1->IsBitset() && type2->IsBitset()) { in Intersect() 735 return AstBitsetType::New(type1->AsBitset() & type2->AsBitset()); in Intersect() 739 if (type1->IsNone() || type2->IsAny()) return type1; // Shortcut. in Intersect() 740 if (type2->IsNone() || type1->IsAny()) return type2; // Shortcut. in Intersect() 743 if (type1->Is(type2)) return type1; in Intersect() 744 if (type2->Is(type1)) return type2; in Intersect() 753 type1->Representation() & type2->Representation(); in Intersect() 759 if (type1->SemanticIs(type2)) { in Intersect() 760 type2 = Any(); in Intersect() [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/curl/lib/vauth/ |
D | ntlm.c | 258 unsigned char *type2 = NULL; in Curl_auth_decode_ntlm_type2_message() local 272 result = Curl_base64_decode(type2msg, &type2, &type2_len); in Curl_auth_decode_ntlm_type2_message() 278 if(!type2) { in Curl_auth_decode_ntlm_type2_message() 286 (memcmp(type2, NTLMSSP_SIGNATURE, 8) != 0) || in Curl_auth_decode_ntlm_type2_message() 287 (memcmp(type2 + 8, type2_marker, sizeof(type2_marker)) != 0)) { in Curl_auth_decode_ntlm_type2_message() 289 free(type2); in Curl_auth_decode_ntlm_type2_message() 294 ntlm->flags = Curl_read32_le(&type2[20]); in Curl_auth_decode_ntlm_type2_message() 295 memcpy(ntlm->nonce, &type2[24], 8); in Curl_auth_decode_ntlm_type2_message() 298 result = ntlm_decode_type2_target(data, type2, type2_len, ntlm); in Curl_auth_decode_ntlm_type2_message() 300 free(type2); in Curl_auth_decode_ntlm_type2_message() [all …]
|
D | ntlm_sspi.c | 170 unsigned char *type2 = NULL; in Curl_auth_decode_ntlm_type2_message() local 179 result = Curl_base64_decode(type2msg, &type2, &type2_len); in Curl_auth_decode_ntlm_type2_message() 185 if(!type2) { in Curl_auth_decode_ntlm_type2_message() 192 ntlm->input_token = type2; in Curl_auth_decode_ntlm_type2_message()
|
/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/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
|
D | canonical-expr-type.cpp | 43 typedef T __attribute__((ext_vector_type(M))) type2; typedef 47 void f0(type2);
|
/external/libchrome/base/containers/ |
D | hash_tables.h | 32 template <typename Type1, typename Type2> 33 struct hash<std::pair<Type1, Type2>> { 34 std::size_t operator()(std::pair<Type1, Type2> value) const {
|
/external/libxml2/ |
D | xmlregexp.c | 2246 * @type2: an atom type 2254 xmlFACompareAtomTypes(xmlRegAtomType type1, xmlRegAtomType type2) { in xmlFACompareAtomTypes() argument 2262 if ((type2 == XML_REGEXP_EPSILON) || in xmlFACompareAtomTypes() 2263 (type2 == XML_REGEXP_CHARVAL) || in xmlFACompareAtomTypes() 2264 (type2 == XML_REGEXP_RANGES) || in xmlFACompareAtomTypes() 2265 (type2 == XML_REGEXP_SUBREG) || in xmlFACompareAtomTypes() 2266 (type2 == XML_REGEXP_STRING) || in xmlFACompareAtomTypes() 2267 (type2 == XML_REGEXP_ANYCHAR)) in xmlFACompareAtomTypes() 2270 if (type1 == type2) return(1); in xmlFACompareAtomTypes() 2272 /* simplify subsequent compares by making sure type1 < type2 */ in xmlFACompareAtomTypes() [all …]
|
/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/libchrome/base/ |
D | hash.h | 109 template <typename Type1, typename Type2> 110 struct IntPairHash<std::pair<Type1, Type2>> { 111 size_t operator()(std::pair<Type1, Type2> value) const {
|
/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/javassist/src/main/javassist/compiler/ |
D | CodeGen.java | 1003 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/ |
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/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | config.hpp | 56 # define ASIO_MOVE_CAST2(type1, type2) static_cast<type1, type2&&> argument 75 # define ASIO_MOVE_CAST2(type1, type2) static_cast<const type1, type2&> argument
|
/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
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | lcssa-crash.ll | 6 %type1 = type { %type2 } 7 %type2 = type { [0 x i8*], i8**, i32, i32, i32 }
|