Variable: vhdl-02-functions

vhdl-02-functions is a variable defined in vhdl-mode.el.gz.

Value

Large value
("now"
 "resolved"
 "rising_edge"
 "falling_edge"
 "read"
 "readline"
 "hread"
 "oread"
 "write"
 "writeline"
 "hwrite"
 "owrite"
 "endfile"
 "resize"
 "is_X"
 "std_match"
 "shift_left"
 "shift_right"
 "rotate_left"
 "rotate_right"
 "to_unsigned"
 "to_signed"
 "to_integer"
 "to_stdLogicVector"
 "to_stdULogic"
 "to_stdULogicVector"
 "to_bit"
 "to_bitVector"
 "to_X01"
 "to_X01Z"
 "to_UX01"
 "to_01"
 "conv_unsigned"
 "conv_signed"
 "conv_integer"
 "conv_std_logic_vector"
 "shl"
 "shr"
 "ext"
 "sxt"
 "deallocate")

Documentation

List of VHDL'02 standardized functions.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defconst vhdl-02-functions
  '(
    "now" "resolved" "rising_edge" "falling_edge"
    "read" "readline" "hread" "oread" "write" "writeline" "hwrite" "owrite"
    "endfile"
    "resize" "is_X" "std_match"
    "shift_left" "shift_right" "rotate_left" "rotate_right"
    "to_unsigned" "to_signed" "to_integer"
    "to_stdLogicVector" "to_stdULogic" "to_stdULogicVector"
    "to_bit" "to_bitVector" "to_X01" "to_X01Z" "to_UX01" "to_01"
    "conv_unsigned" "conv_signed" "conv_integer" "conv_std_logic_vector"
    "shl" "shr" "ext" "sxt"
    "deallocate"
    )
  "List of VHDL'02 standardized functions.")