Examples of VerilogParameterElement


Examples of net.sourceforge.veditor.parser.verilog.VerilogOutlineElementFactory.VerilogParameterElement

            //add signals
            VerilogSignalElement signal = (VerilogSignalElement) child;
            matchList.add(new VerilogCompletionProposal(signal, offset, replace.length()))
          }else if (element instanceof VerilogParameterElement) {
            //add parameter
            VerilogParameterElement parameter = (VerilogParameterElement) element;
            matchList.add(new VerilogCompletionProposal(parameter, offset, replace.length()));
          }         
        }
       
      }else if (element instanceof VerilogTaskElement) {
View Full Code Here

Examples of net.sourceforge.veditor.parser.verilog.VerilogOutlineElementFactory.VerilogParameterElement

     
      ArrayList<VerilogParameterElement> parameters=new ArrayList<VerilogParameterElement>();
      ArrayList<VerilogPortElement> ports=new ArrayList<VerilogPortElement>();
      for(OutlineElement child : module.getChildren()){
        if (child instanceof VerilogParameterElement) {
          VerilogParameterElement p = (VerilogParameterElement) child;

          // localparam is not included parameter list
          if (!p.isLocal())
            parameters.add(p);           
        }
        if (child instanceof VerilogPortElement) {
          VerilogPortElement p = (VerilogPortElement) child;
          ports.add(p);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.