Searched refs:objectType (Results 1 - 25 of 45) 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/chromium_org/third_party/closure_compiler/runner/src/org/chromium/closure/compiler/
H A DChromeCodingConvention.java50 FunctionType getterType, ObjectType objectType) {
51 super.applySingletonGetter(functionType, getterType, objectType);
54 functionType.defineDeclaredProperty("instance_", objectType,
49 applySingletonGetter(FunctionType functionType, FunctionType getterType, ObjectType objectType) argument
/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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLPlugInElement.cpp527 ObjectContentType objectType = document().frame()->loader().client()->objectContentType(url, mimeType, shouldPreferPlugInsForImages()); local
530 useFallback = objectType == ObjectContentNone && hasFallback;
531 return objectType == ObjectContentNone || objectType == ObjectContentNetscapePlugin || objectType == ObjectContentOtherPlugin;
/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.java630 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
632 visitAnyVerificationType(clazz, method, codeAttribute, offset, objectType);
684 public void visitStackObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) argument
686 visitObjectType(clazz, method, codeAttribute, offset, objectType);
739 public void visitVariablesObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) argument
741 visitObjectType(clazz, method, codeAttribute, offset, objectType);
/external/chromium_org/third_party/qunit/src/
H A Dqunit.js393 return QUnit.objectType( obj ) === type;
396 objectType: function( obj ) {
1637 } else if ( QUnit.objectType( expected ) === "regexp" ) {
1641 } else if ( QUnit.objectType( expected ) === "string" ) {
1692 var prop = QUnit.objectType( o );
1694 if ( QUnit.objectType( callbacks[ prop ] ) === "function" ) {
1742 return QUnit.objectType( b ) === "date" && a.valueOf() === b.valueOf();
1746 return QUnit.objectType( b ) === "regexp" &&
1769 if ( QUnit.objectType( b ) !== "array" ) {
1881 QUnit.objectType(
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolRemapper.java548 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
550 objectType.u2classIndex =
551 remapConstantIndex(objectType.u2classIndex);
H A DConstantPoolShrinker.java402 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
404 markConstant(clazz, objectType.u2classIndex);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassWriter.java682 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
684 dataOutput.writeShort(objectType.u2classIndex);
H A DProgramClassReader.java684 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
686 objectType.u2classIndex = dataInput.readUnsignedShort();
/external/proguard/src/proguard/shrink/
H A DUsageMarker.java862 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
864 markConstant(clazz, objectType.u2classIndex);
/external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
H A Dqunit.js376 } else if (QUnit.objectType(expected) === "regexp") {
570 return QUnit.objectType( obj ) == type;
573 objectType: function( obj ) {
966 var prop = QUnit.objectType(o);
968 if (QUnit.objectType(callbacks[prop]) === "function") {
1002 return QUnit.objectType(b) === "date" && a.valueOf() === b.valueOf();
1006 return QUnit.objectType(b) === "regexp" &&
1027 if ( ! (QUnit.objectType(b) === "array")) {
1105 } else if (a === null || b === null || typeof a === "undefined" || typeof b === "undefined" || QUnit.objectType(a) !== QUnit.objectType(
[all...]
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java962 TypeId<Instance> objectType = TypeId.get(Instance.class);
963 FieldId<Instance, V> fieldId = objectType.getField(valueType, fieldName);
964 MethodId<?, V> methodId = GENERATED.getMethod(valueType, "call", objectType, valueType);
966 Local<Instance> localInstance = code.getParameter(0, objectType);
1045 TypeId<Static> objectType = TypeId.get(Static.class);
1046 FieldId<Static, V> fieldId = objectType.getField(valueType, fieldName);
/external/clang/lib/Sema/
H A DSemaExprMember.cpp780 QualType objectType = baseObjectExpr->getType(); local
782 if (const PointerType *ptr = objectType->getAs<PointerType>()) {
784 objectType = ptr->getPointeeType();
788 baseQuals = objectType.getQualifiers();
H A DSemaAccess.cpp1568 QualType objectType) {
1573 DeclAccessPair::make(decl, access), objectType);
1566 isSpecialMemberAccessibleForDeletion(CXXMethodDecl *decl, AccessSpecifier access, QualType objectType) argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp240 static void getObjectParameter(const v8::FunctionCallbackInfo<v8::Value>& info, ObjectType objectType, ExceptionState& exceptionState) argument
258 switch (objectType) {
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java840 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType) argument
842 ps.print("[a:" + clazz.getClassName(objectType.u2classIndex) + "]");

Completed in 650 milliseconds

12