Searched refs:objectType (Results 1 - 25 of 30) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DObjectPool.java39 private final Class objectType; field in class:ObjectPool
52 objectType = type;
65 objectType = ObjectFactory.findProviderClass(
85 objectType = type;
95 objectType = null;
136 return objectType.newInstance();
165 // if (objectType.isInstance(obj))
/external/javassist/src/main/javassist/
H A DCtField.java535 * @param objectType the class instantiated for the initial value.
537 public static Initializer byNew(CtClass objectType) { argument
539 i.objectType = objectType;
560 * @param objectType the class instantiated for the initial value.
564 public static Initializer byNew(CtClass objectType, argument
567 i.objectType = objectType;
589 * @param objectType the class instantiated for the initial value.
594 public static Initializer byNewWithParams(CtClass objectType) { argument
624 byNewWithParams(CtClass objectType, String[] stringParams) argument
984 CtClass objectType; field in class:CtField.NewInitializer
[all...]
/external/mesa3d/src/mesa/main/
H A Dbufferobj.h153 _mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
156 _mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option);
159 _mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name, GLenum pname, GLint* params);
H A Dbufferobj.c1771 _mesa_ObjectPurgeableAPPLE(GLenum objectType, GLuint name, GLenum option) argument
1796 switch (objectType) {
1809 name, objectType);
1913 _mesa_ObjectUnpurgeableAPPLE(GLenum objectType, GLuint name, GLenum option) argument
1936 switch (objectType) {
1946 name, objectType);
2025 _mesa_GetObjectParameterivAPPLE(GLenum objectType, GLuint name, GLenum pname, argument
2036 switch (objectType) {
2049 name, objectType);
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DVerificationTypeVisitor.java41 public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType); argument
51 public void visitStackObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType); argument
61 public void visitVariablesObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType); argument
/external/javassist/src/main/javassist/bytecode/analysis/
H A DExecutor.java708 Type objectType = resolveClassInfo(constPool.getFieldrefClassName(index));
709 verifyAssignable(objectType, simplePop(frame));
724 Type objectType = resolveClassInfo(classInfo);
725 verifyAssignable(objectType, simplePop(frame));
741 Type objectType = resolveClassInfo(constPool.getMethodrefClassName(index));
742 verifyAssignable(objectType, simplePop(frame));
854 Type objectType = resolveClassInfo(constPool.getFieldrefClassName(index));
855 verifyAssignable(objectType, simplePop(frame));
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java666 void objectType () throws IOException method in class:Types.methodDescriptorCompiler
695 objectType ();
/external/replicaisland/src/com/replica/replicaisland/
H A DHitReactionComponent.java335 public final void setSpawnOnDealHit(int hitType, GameObjectType objectType, boolean alignToVictimX, argument
337 mSpawnOnDealHitObjectType = objectType;
/external/proguard/src/proguard/classfile/util/
H A DSimplifiedVisitor.java712 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
714 visitAnyVerificationType(clazz, method, codeAttribute, offset, objectType);
766 public void visitStackObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) argument
768 visitObjectType(clazz, method, codeAttribute, offset, objectType);
821 public void visitVariablesObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) argument
823 visitObjectType(clazz, method, codeAttribute, offset, objectType);
/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolRemapper.java559 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
561 objectType.u2classIndex =
562 remapConstantIndex(objectType.u2classIndex);
H A DConstantPoolShrinker.java412 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
414 markConstant(clazz, objectType.u2classIndex);
/external/proguard/src/proguard/shrink/
H A DUsageMarker.java883 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
885 markConstant(clazz, objectType.u2classIndex);
/external/clang/lib/Sema/
H A DSemaExprMember.cpp796 QualType objectType = baseObjectExpr->getType(); local
798 if (const PointerType *ptr = objectType->getAs<PointerType>()) {
800 objectType = ptr->getPointeeType();
804 baseQuals = objectType.getQualifiers();
H A DSemaAccess.cpp1568 QualType objectType) {
1573 DeclAccessPair::make(decl, access), objectType);
1566 isSpecialMemberAccessibleForDeletion(CXXMethodDecl *decl, AccessSpecifier access, QualType objectType) argument
H A DSemaStmt.cpp1700 const ObjCObjectType *objectType = pointerType->getObjectType(); local
1701 ObjCInterfaceDecl *iface = objectType->getInterface();
1706 RequireCompleteType(forLoc, QualType(objectType, 0),
1713 } else if (iface || !objectType->qual_empty()) {
H A DSemaOverload.cpp11561 QualType objectType = op->getLHS()->getType();
11563 objectType = objectType->castAs<PointerType>()->getPointeeType();
11564 Qualifiers objectQuals = objectType.getQualifiers();
/external/proguard/src/proguard/classfile/io/
H A DProgramClassWriter.java820 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
822 dataOutput.writeShort(objectType.u2classIndex);
H A DProgramClassReader.java721 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
723 objectType.u2classIndex = dataInput.readUnsignedShort();
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java880 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
882 ps.print("[a:" + clazz.getClassName(objectType.u2classIndex) + "]");
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java972 TypeId<Instance> objectType = TypeId.get(Instance.class);
973 FieldId<Instance, V> fieldId = objectType.getField(valueType, fieldName);
974 MethodId<?, V> methodId = GENERATED.getMethod(valueType, "call", objectType, valueType);
976 Local<Instance> localInstance = code.getParameter(0, objectType);
1055 TypeId<Static> objectType = TypeId.get(Static.class);
1056 FieldId<Static, V> fieldId = objectType.getField(valueType, fieldName);
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp2456 QualType objectType = pointerOperand->getType() local
2460 = CGF.CGM.getSize(CGF.getContext().getTypeSizeInChars(objectType));
/external/clang/include/clang/Sema/
H A DSema.h5192 QualType objectType = QualType());
5213 QualType objectType);
/external/mesa3d/include/GL/
H A Dglext.h12114 GLAPI GLenum APIENTRY glObjectPurgeableAPPLE (GLenum objectType, GLuint name, GLenum option);
12115 GLAPI GLenum APIENTRY glObjectUnpurgeableAPPLE (GLenum objectType, GLuint name, GLenum option);
12116 GLAPI void APIENTRY glGetObjectParameterivAPPLE (GLenum objectType, GLuint name, GLenum pname, GLint *params);
12118 typedef GLenum (APIENTRYP PFNGLOBJECTPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option);
12119 typedef GLenum (APIENTRYP PFNGLOBJECTUNPURGEABLEAPPLEPROC) (GLenum objectType, GLuint name, GLenum option);
12120 typedef void (APIENTRYP PFNGLGETOBJECTPARAMETERIVAPPLEPROC) (GLenum objectType, GLuint name, GLenum pname, GLint *params);

Completed in 1152 milliseconds

12