Home
last modified time | relevance | path

Searched refs:objectType (Results 1 – 22 of 22) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/utils/
DObjectPool.java39 private final Class objectType; field in ObjectPool
52 objectType = type; in ObjectPool()
65 objectType = ObjectFactory.findProviderClass( in ObjectPool()
85 objectType = type; in ObjectPool()
95 objectType = null; in ObjectPool()
136 return objectType.newInstance(); in getInstance()
/external/javassist/src/main/javassist/
DCtField.java537 public static Initializer byNew(CtClass objectType) { in byNew() argument
539 i.objectType = objectType; in byNew()
564 public static Initializer byNew(CtClass objectType, in byNew() argument
567 i.objectType = objectType; in byNew()
594 public static Initializer byNewWithParams(CtClass objectType) { in byNewWithParams() argument
596 i.objectType = objectType; in byNewWithParams()
624 public static Initializer byNewWithParams(CtClass objectType, in byNewWithParams() argument
627 i.objectType = objectType; in byNewWithParams()
656 i.objectType = methodClass; in byCall()
691 i.objectType = methodClass; in byCall()
[all …]
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
DVerificationTypeVisitor.java41 …z clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType); in visitObjectType() argument
51 …thod method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType); in visitStackObjectType() argument
61 …thod method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType); in visitVariablesObjectType() argument
/external/webkit/Source/WebCore/loader/
DSubframeLoader.cpp316 …ObjectContentType objectType = m_frame->loader()->client()->objectContentType(url, mimeType, shoul… in shouldUsePlugin() local
319 useFallback = objectType == ObjectContentNone && hasFallback; in shouldUsePlugin()
320 …return objectType == ObjectContentNone || objectType == ObjectContentNetscapePlugin || objectType in shouldUsePlugin()
/external/proguard/src/proguard/classfile/util/
DSimplifiedVisitor.java606 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType() argument
608 visitAnyVerificationType(clazz, method, codeAttribute, offset, objectType); in visitObjectType()
660 …zz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) in visitStackObjectType() argument
662 visitObjectType(clazz, method, codeAttribute, offset, objectType); in visitStackObjectType()
715 …zz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) in visitVariablesObjectType() argument
717 visitObjectType(clazz, method, codeAttribute, offset, objectType); in visitVariablesObjectType()
/external/javassist/src/main/javassist/bytecode/analysis/
DExecutor.java708 Type objectType = resolveClassInfo(constPool.getFieldrefClassName(index)); in evalGetField() local
709 verifyAssignable(objectType, simplePop(frame)); in evalGetField()
724 Type objectType = resolveClassInfo(classInfo); in evalInvokeIntfMethod() local
725 verifyAssignable(objectType, simplePop(frame)); in evalInvokeIntfMethod()
741 Type objectType = resolveClassInfo(constPool.getMethodrefClassName(index)); in evalInvokeMethod() local
742 verifyAssignable(objectType, simplePop(frame)); in evalInvokeMethod()
854 Type objectType = resolveClassInfo(constPool.getFieldrefClassName(index)); in evalPutField() local
855 verifyAssignable(objectType, simplePop(frame)); in evalPutField()
/external/proguard/src/proguard/classfile/editor/
DConstantPoolRemapper.java503 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType() argument
505 objectType.u2classIndex = in visitObjectType()
506 remapConstantIndex(objectType.u2classIndex); in visitObjectType()
/external/replicaisland/src/com/replica/replicaisland/
DHitReactionComponent.java335 …public final void setSpawnOnDealHit(int hitType, GameObjectType objectType, boolean alignToVictimX, in setSpawnOnDealHit() argument
337 mSpawnOnDealHitObjectType = objectType; in setSpawnOnDealHit()
/external/emma/core/java12/com/vladium/jcd/lib/
DTypes.java666 void objectType () throws IOException in objectType() method in Types.methodDescriptorCompiler
695 objectType (); in fieldType()
/external/proguard/src/proguard/shrink/
DUsageMarker.java736 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType() argument
738 markConstant(clazz, objectType.u2classIndex); in visitObjectType()
/external/proguard/src/proguard/classfile/io/
DProgramClassWriter.java637 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType() argument
639 dataOutput.writeShort(objectType.u2classIndex); in visitObjectType()
DProgramClassReader.java632 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType() argument
634 objectType.u2classIndex = dataInput.readUnsignedShort(); in visitObjectType()
/external/clang/lib/Sema/
DSemaExprMember.cpp735 QualType objectType = baseObjectExpr->getType(); in BuildAnonymousStructUnionMemberReference() local
737 if (const PointerType *ptr = objectType->getAs<PointerType>()) { in BuildAnonymousStructUnionMemberReference()
739 objectType = ptr->getPointeeType(); in BuildAnonymousStructUnionMemberReference()
743 baseQuals = objectType.getQualifiers(); in BuildAnonymousStructUnionMemberReference()
DSemaStmt.cpp1128 const ObjCObjectType *objectType = pointerType->getObjectType(); in ActOnObjCForCollectionOperand() local
1129 ObjCInterfaceDecl *iface = objectType->getInterface(); in ActOnObjCForCollectionOperand()
1134 RequireCompleteType(forLoc, QualType(objectType, 0), in ActOnObjCForCollectionOperand()
1141 } else if (iface || !objectType->qual_empty()) { in ActOnObjCForCollectionOperand()
DSemaAccess.cpp1521 QualType objectType) { in isSpecialMemberAccessibleForDeletion() argument
1526 DeclAccessPair::make(decl, access), objectType); in isSpecialMemberAccessibleForDeletion()
DSemaOverload.cpp10374 QualType objectType = op->getLHS()->getType(); in BuildCallToMemberFunction() local
10376 objectType = objectType->castAs<PointerType>()->getPointeeType(); in BuildCallToMemberFunction()
10377 Qualifiers objectQuals = objectType.getQualifiers(); in BuildCallToMemberFunction()
/external/webkit/Source/WebCore/bindings/js/
DJSWebGLRenderingContextCustom.cpp134 …ic JSValue getObjectParameter(JSWebGLRenderingContext* obj, ExecState* exec, ObjectType objectType) in getObjectParameter() argument
148 switch (objectType) { in getObjectParameter()
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java961 TypeId<Instance> objectType = TypeId.get(Instance.class); in instanceSwapMethod() local
962 FieldId<Instance, V> fieldId = objectType.getField(valueType, fieldName); in instanceSwapMethod()
963 MethodId<?, V> methodId = GENERATED.getMethod(valueType, "call", objectType, valueType); in instanceSwapMethod()
965 Local<Instance> localInstance = code.getParameter(0, objectType); in instanceSwapMethod()
1044 TypeId<Static> objectType = TypeId.get(Static.class); in staticSwapMethod() local
1045 FieldId<Static, V> fieldId = objectType.getField(valueType, fieldName); in staticSwapMethod()
/external/proguard/src/proguard/classfile/visitor/
DClassPrinter.java782 …ectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) in visitObjectType() argument
784 ps.print("[a:" + clazz.getClassName(objectType.u2classIndex) + "]"); in visitObjectType()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8WebGLRenderingContextCustom.cpp187 static v8::Handle<v8::Value> getObjectParameter(const v8::Arguments& args, ObjectType objectType) in getObjectParameter() argument
199 switch (objectType) { in getObjectParameter()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp1956 QualType objectType = pointerOperand->getType() in emitPointerArithmetic() local
1960 = CGF.CGM.getSize(CGF.getContext().getTypeSizeInChars(objectType)); in emitPointerArithmetic()
/external/clang/include/clang/Sema/
DSema.h4211 QualType objectType = QualType());
4231 QualType objectType);