Package tv.porst.swfretools.parser.structures

Examples of tv.porst.swfretools.parser.structures.EncodedU30


public final class AS3AstypeParser {

  public static AS3Astype parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {

    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Astype(opcode, index);
  }
View Full Code Here


public final class AS3CallproplexParser {

  public static AS3Callproplex parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {

    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");
    final EncodedU30 argCount = EncodedU30Parser.parse(parser, fieldName + "::arg_count");

    return new AS3Callproplex(opcode, index, argCount);
  }
View Full Code Here

*/
public final class AS3FindpropertyParser {

  public static AS3Findproperty parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Findproperty(opcode, index);
  }
View Full Code Here

*/
public final class AS3PushdoubleParser {

  public static AS3Pushdouble parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Pushdouble(opcode, index);
  }
View Full Code Here

*/
public final class AS3DeclocaliParser {

  public static AS3Declocali parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Declocali(opcode, index);
  }
View Full Code Here

public final class AS3CallpropertyParser {

  public static AS3Callproperty parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {

    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");
    final EncodedU30 argCount = EncodedU30Parser.parse(parser, fieldName + "::arg_count");

    return new AS3Callproperty(opcode, index, argCount);
  }
View Full Code Here

*/
public final class AS3DeletepropertyParser {

  public static AS3Deleteproperty parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Deleteproperty(opcode, index);
  }
View Full Code Here

*/
public final class AS3PushshortParser {

  public static AS3Pushshort parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Pushshort(opcode, index);
  }
View Full Code Here

*/
public final class AS3GetlocalParser {

  public static AS3Getlocal parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Getlocal(opcode, index);
  }
View Full Code Here

*/
public final class AS3GetsuperParser {

  public static AS3Getsuper parse(final SWFBinaryParser parser, final String fieldName) throws SWFParserException {
    final UINT8 opcode = parseUINT8(parser, 0x00006, fieldName + "::opcode");
    final EncodedU30 index = EncodedU30Parser.parse(parser, fieldName + "::index");

    return new AS3Getsuper(opcode, index);
  }
View Full Code Here

TOP

Related Classes of tv.porst.swfretools.parser.structures.EncodedU30

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.