Package flash.util

Examples of flash.util.IntMap


   */
  IntMap        m_byInt = new IntMap();
  HashMap<Integer, IntMap> m_isolateState = new HashMap<Integer, IntMap> ();

  private IntMap getIsolateState(int isolateId) {
    IntMap isolateState = null;
    if (!m_isolateState.containsKey(isolateId)) {
      isolateState = new IntMap();
      m_isolateState.put(isolateId, isolateState);
    }
    else
      isolateState = m_isolateState.get(isolateId);
    return isolateState;
View Full Code Here


  public DSwfInfo(int index, int isolateId
  { 
    // defaults values of zero
    m_id = 0;
    m_index = index;
    m_source = new IntMap();
    m_path = UNKNOWN;
    m_url = UNKNOWN;
    m_host = UNKNOWN;
    m_port = 0;
    m_swdLoading = true;
View Full Code Here

            tag = new DefineFont3();
        else
            throw new SWFFontNotSupportedException("Cannot build DefineFont for SWF tag code " + code);

        tag.hasLayout = hasLayout;
        glyphEntryMap = new IntMap(100); //Sorted by code point order
      flashType = useFlashType;
    }
View Full Code Here

    }
  }

  private void init()
  {
    actions = new IntMap();
    modules = new IntMap();
    functionNames = new IntMap();
    functionSizes = new IntMap();
    functionLines = new IntMap();
    preciseLines = new IntMap();
    mxml = new HashMap<String, DebugModule>();

    pool = null;
    skipOffsets = new ArrayList<Integer>();
  }
View Full Code Here

    public IntMap lines;
  public IntMap registers;

    public DebugTable()
    {
        lines = new IntMap();
        registers = new IntMap();
    }
View Full Code Here

  public DSwfInfo(int index
  { 
    // defaults values of zero
    m_id = 0;
    m_index = index;
    m_source = new IntMap();
    m_path = UNKNOWN;
    m_url = UNKNOWN;
    m_host = UNKNOWN;
    m_port = 0;
    m_swdLoading = true;
View Full Code Here

TOP

Related Classes of flash.util.IntMap

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.