HomeSort by relevance Sort by last modified time
    Searched refs:objectType (Results 1 - 25 of 39) sorted by null

1 2

  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectPool.java 39 private final Class objectType;
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/
CtField.java 535 * @param objectType the class instantiated for the initial value.
537 public static Initializer byNew(CtClass objectType) {
539 i.objectType = objectType;
560 * @param objectType the class instantiated for the initial value.
564 public static Initializer byNew(CtClass objectType,
567 i.objectType = objectType;
589 * @param objectType the class instantiated for the initial value.
594 public static Initializer byNewWithParams(CtClass objectType) {
    [all...]
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
VerificationTypeVisitor.java 41 public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType);
51 public void visitStackObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType);
61 public void visitVariablesObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType);
  /dalvik/vm/
Exception.h 228 extern "C" void dvmThrowArrayStoreExceptionIncompatibleElement(ClassObject* objectType, ClassObject* arrayType);
250 void dvmThrowArrayStoreExceptionIncompatibleArrayElement(s4 index, ClassObject* objectType,
Exception.cpp     [all...]
  /external/webkit/Source/WebCore/loader/
SubframeLoader.cpp 316 ObjectContentType objectType = m_frame->loader()->client()->objectContentType(url, mimeType, shouldPreferPlugInsForImages);
319 useFallback = objectType == ObjectContentNone && hasFallback;
320 return objectType == ObjectContentNone || objectType == ObjectContentNetscapePlugin || objectType == ObjectContentOtherPlugin;
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 708 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));
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ConstantPoolRemapper.java 503 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
505 objectType.u2classIndex =
506 remapConstantIndex(objectType.u2classIndex);
  /frameworks/av/media/libstagefright/rtsp/
APacketSource.cpp 263 unsigned long objectType;
264 if (GetAttribute(params, "objectType", &val)) {
267 objectType = strtoul(s, &end, 10);
270 objectType = 0x40; // Audio ISO/IEC 14496-3
308 *dst++ = objectType;
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 666 void objectType () throws IOException
695 objectType ();
  /external/replicaisland/src/com/replica/replicaisland/
HitReactionComponent.java 335 public final void setSpawnOnDealHit(int hitType, GameObjectType objectType, boolean alignToVictimX,
337 mSpawnOnDealHitObjectType = objectType;
  /external/proguard/src/proguard/classfile/util/
SimplifiedVisitor.java 606 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
608 visitAnyVerificationType(clazz, method, codeAttribute, offset, objectType);
660 public void visitStackObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType)
662 visitObjectType(clazz, method, codeAttribute, offset, objectType);
715 public void visitVariablesObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType)
717 visitObjectType(clazz, method, codeAttribute, offset, objectType);
  /external/proguard/src/proguard/classfile/io/
ProgramClassWriter.java 637 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
639 dataOutput.writeShort(objectType.u2classIndex);
ProgramClassReader.java 632 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
634 objectType.u2classIndex = dataInput.readUnsignedShort();
    [all...]
  /external/proguard/src/proguard/shrink/
UsageMarker.java 736 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
738 markConstant(clazz, objectType.u2classIndex);
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java     [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 567 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
570 SemaRef.LookupTemplateName(R, 0, SS, ObjectType, false, MOUS);
727 QualType objectType = baseObjectExpr->getType();
729 if (const PointerType *ptr = objectType->getAs<PointerType>()) {
731 objectType = ptr->getPointeeType();
735 baseQuals = objectType.getQualifiers();
    [all...]
SemaAccess.cpp     [all...]
SemaStmt.cpp     [all...]
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 782 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
784 ps.print("[a:" + clazz.getClassName(objectType.u2classIndex) + "]");
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSWebGLRenderingContextCustom.cpp 130 enum ObjectType {
134 static JSValue getObjectParameter(JSWebGLRenderingContext* obj, ExecState* exec, ObjectType objectType)
148 switch (objectType) {
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebGLRenderingContextCustom.cpp 188 enum ObjectType {
192 static v8::Handle<v8::Value> getObjectParameter(const v8::Arguments& args, ObjectType objectType)
204 switch (objectType) {
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp     [all...]
  /frameworks/av/media/libstagefright/mp4/
FragmentedMP4Parser.cpp     [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 559 milliseconds

1 2