/external/v8/test/cctest/ |
D | test-types.cc | 114 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/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/ |
D | Joint.java | 40 org.jbox2d.dynamics.joints.JointType type2 = joint.getType(); in getType() local 41 if (type2 == org.jbox2d.dynamics.joints.JointType.DISTANCE) return JointType.DistanceJoint; in getType() 42 if (type2 == org.jbox2d.dynamics.joints.JointType.FRICTION) return JointType.FrictionJoint; in getType() 43 if (type2 == org.jbox2d.dynamics.joints.JointType.GEAR) return JointType.GearJoint; in getType() 44 if (type2 == org.jbox2d.dynamics.joints.JointType.MOUSE) return JointType.MouseJoint; in getType() 45 if (type2 == org.jbox2d.dynamics.joints.JointType.PRISMATIC) return JointType.PrismaticJoint; in getType() 46 if (type2 == org.jbox2d.dynamics.joints.JointType.PULLEY) return JointType.PulleyJoint; in getType() 47 if (type2 == org.jbox2d.dynamics.joints.JointType.REVOLUTE) return JointType.RevoluteJoint; in getType() 48 if (type2 == org.jbox2d.dynamics.joints.JointType.ROPE) return JointType.RopeJoint; in getType() 49 if (type2 == org.jbox2d.dynamics.joints.JointType.UNKNOWN) return JointType.Unknown; in getType() [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() 57 } else if (type1.isArray() && type2.isArray()) { in mergeType() 60 type2.getComponentType()); in mergeType() 77 } else if (type1.isIntlike() && type2.isIntlike()) { in mergeType()
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/Contacts/ |
D | b2Contact.cpp | 52 b2Shape::Type type1, b2Shape::Type type2) in AddType() argument 55 b2Assert(0 <= type2 && type2 < b2Shape::e_typeCount); in AddType() 57 s_registers[type1][type2].createFcn = createFcn; in AddType() 58 s_registers[type1][type2].destroyFcn = destoryFcn; in AddType() 59 s_registers[type1][type2].primary = true; in AddType() 61 if (type1 != type2) in AddType() 63 s_registers[type2][type1].createFcn = createFcn; in AddType() 64 s_registers[type2][type1].destroyFcn = destoryFcn; in AddType() 65 s_registers[type2][type1].primary = false; in AddType() 78 b2Shape::Type type2 = fixtureB->GetType(); in Create() local [all …]
|
/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/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/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 | 750 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/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/curl/lib/ |
D | curl_ntlm_msgs.c | 252 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/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/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
D | ImplicitTest.java | 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/ |
D | instantiate-exception-spec-cxx11.cpp | 86 base(const typename T::type2 &); 95 struct type2 { struct 102 typedef type2<types> type2; typedef
|
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 | canonical-expr-type.cpp | 43 typedef T __attribute__((ext_vector_type(M))) type2; typedef 47 void f0(type2);
|
D | instantiate-declref.cpp | 58 typedef struct { T z; } type2; in foo() typedef 59 type2 t3 = { s1.x }; in foo()
|
/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/opencv3/modules/core/src/ |
D | precomp.hpp | 117 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/libxml2/ |
D | xmlregexp.c | 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() 2268 if (type1 > type2) { in xmlFACompareAtomTypes() 2270 type1 = type2; in xmlFACompareAtomTypes() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | mangle-subst.cpp | 90 typedef int type2; typedef 94 typename X<T>::template Y<T>::type f(typename X<T>::template Y<T>::type2) { return 0; } in f() argument
|
/external/dexmaker/src/dx/java/com/android/dx/rop/type/ |
D | StdTypeList.java | 198 public static StdTypeList make(Type type0, Type type1, Type type2) { in make() argument 202 result.set(2, type2); in make() 215 public static StdTypeList make(Type type0, Type type1, Type type2, in make() argument 220 result.set(2, type2); in make()
|
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
D | ClassWriter.java | 1235 int getMergedType(final int type1, final int type2) { in getMergedType() argument 1237 key2.longVal = type1 | (((long) type2) << 32); in getMergedType() 1238 key2.hashCode = 0x7FFFFFFF & (TYPE_MERGED + type1 + type2); in getMergedType() 1242 String u = typeTable[type2].strVal1; in getMergedType() 1264 protected String getCommonSuperClass(final String type1, final String type2) in getCommonSuperClass() argument 1269 d = Class.forName(type2.replace('/', '.')); in getCommonSuperClass() 1277 return type2; in getCommonSuperClass()
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | lcssa-crash.ll | 6 %type1 = type { %type2 } 7 %type2 = type { [0 x i8*], i8**, i32, i32, i32 }
|
/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/javassist/src/main/javassist/bytecode/analysis/ |
D | MultiType.java | 188 private Map mergeMultiInterfaces(MultiType type1, MultiType type2) { in mergeMultiInterfaces() argument 190 Map map2 = getAllMultiInterfaces(type2); in mergeMultiInterfaces()
|