Examples of VerilogPortElement


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

      if (element instanceof VerilogModuleElement) {
        VerilogModuleElement module = (VerilogModuleElement) element;
        for(OutlineElement child: module.getChildren()){         
          if (child instanceof VerilogPortElement && child.getName().startsWith(replace)) {
            //add ports
            VerilogPortElement port = (VerilogPortElement) child;
            matchList.add(new VerilogCompletionProposal(port, offset, replace.length()));
           
          }else if (child instanceof VerilogSignalElement && child.getName().startsWith(replace)) {
            //add signals
            VerilogSignalElement signal = (VerilogSignalElement) child;
View Full Code Here

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

          // localparam is not included parameter list
          if (!p.isLocal())
            parameters.add(p);           
        }
        if (child instanceof VerilogPortElement) {
          VerilogPortElement p = (VerilogPortElement) child;
          ports.add(p);
        }
      }
             
      isParams = isParams && (parameters.size() > 0);
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.