Lines Matching full:font
8 (defvar llvm-font-lock-keywords
11 '(";.*" . font-lock-comment-face)
13 '("%[-a-zA-Z$\._][-a-zA-Z$\._0-9]*" . font-lock-variable-name-face)
15 '("[-a-zA-Z$\._0-9]+:" . font-lock-variable-name-face)
17 '("\"[^\"]+\"" . font-lock-string-face)
19 '("%[-]?[0-9]+" . font-lock-variable-name-face)
21 `(,(regexp-opt '("void" "i[0-9]+" "float" "double" "type" "label" "opaque") 'words) . font-lock-type-face)
23 '("\\b[-]?[0-9]+\\b" . font-lock-preprocessor-face)
25 '("\\b[-+]?[0-9]+\.[0-9]*\([eE][-+]?[0-9]+\)?\\b" . font-lock-preprocessor-face)
27 '("\\b0x[0-9A-Fa-f]+\\b" . font-lock-preprocessor-face)
33 "pointersize" "volatile" "fastcc" "coldcc" "cc") 'words) . font-lock-keyword-face)
36 "setne" "seteq" "setlt" "setgt" "setle" "setge") 'words) . font-lock-keyword-face)
38 `(,(regexp-opt '("fadd" "fsub" "fmul" "fdiv" "frem") 'words) . font-lock-keyword-face)
40 `(,(regexp-opt '("phi" "tail" "call" "cast" "select" "to" "shl" "shr" "fcmp" "icmp" "vaarg" "vanext") 'words) . font-lock-keyword-face)
42 `(,(regexp-opt '("ret" "br" "switch" "invoke" "unwind" "unreachable") 'words) . font-lock-keyword-face)
44 `(,(regexp-opt '("malloc" "alloca" "free" "load" "store" "getelementptr") 'words) . font-lock-keyword-face)
117 (make-local-variable 'font-lock-defaults)
121 font-lock-defaults `(llvm-font-lock-keywords))