• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/international/

Lines Matching defs:regexp

220 ;; regexp is not simply "ISO10646-1" because there exists, for
229 (setq x-pixel-size-width-font-regexp
233 (setq vertical-centering-font-regexp
268 (defconst xlfd-regexp-foundry-subnum 0) ; FOUNDRY
269 (defconst xlfd-regexp-family-subnum 1) ; FAMILY_NAME
270 (defconst xlfd-regexp-weight-subnum 2) ; WEIGHT_NAME
271 (defconst xlfd-regexp-slant-subnum 3) ; SLANT
272 (defconst xlfd-regexp-swidth-subnum 4) ; SETWIDTH_NAME
273 (defconst xlfd-regexp-adstyle-subnum 5) ; ADD_STYLE_NAME
274 (defconst xlfd-regexp-pixelsize-subnum 6) ; PIXEL_SIZE
275 (defconst xlfd-regexp-pointsize-subnum 7) ; POINT_SIZE
276 (defconst xlfd-regexp-resx-subnum 8) ; RESOLUTION_X
277 (defconst xlfd-regexp-resy-subnum 9) ; RESOLUTION_Y
278 (defconst xlfd-regexp-spacing-subnum 10) ; SPACING
279 (defconst xlfd-regexp-avgwidth-subnum 11) ; AVERAGE_WIDTH
280 (defconst xlfd-regexp-registry-subnum 12) ; CHARSET_REGISTRY
281 (defconst xlfd-regexp-encoding-subnum 13) ; CHARSET_ENCODING
286 (defconst xlfd-tight-regexp
293 (defconst xlfd-regexp-numeric-subnums
294 (list xlfd-regexp-pixelsize-subnum ;6
295 xlfd-regexp-pointsize-subnum ;7
296 xlfd-regexp-resx-subnum ;8
297 xlfd-regexp-resy-subnum ;9
298 xlfd-regexp-avgwidth-subnum ;11
309 (if (string-match xlfd-tight-regexp pattern)
320 (string-match xlfd-tight-regexp fontname))
334 ;; Replace wild cards in PATTERN by regexp codes.
401 (while (and (null ascii-font) (<= index xlfd-regexp-encoding-subnum))
433 (aset xlfd-fields xlfd-regexp-registry-subnum "iso8859")
434 (aset xlfd-fields xlfd-regexp-encoding-subnum "1")
445 (aref xlfd-fields xlfd-regexp-foundry-subnum)
446 (aref xlfd-fields xlfd-regexp-family-subnum))
448 (aref xlfd-fields xlfd-regexp-registry-subnum)
449 (aref xlfd-fields xlfd-regexp-encoding-subnum)))))
469 (and (string-match xlfd-tight-regexp fontset)
470 (string= (match-string (1+ xlfd-regexp-registry-subnum) fontset)
491 (let ((weight (aref xlfd-fields xlfd-regexp-weight-subnum))
492 (slant (aref xlfd-fields xlfd-regexp-slant-subnum))
493 (swidth (aref xlfd-fields xlfd-regexp-swidth-subnum))
494 (size (aref xlfd-fields xlfd-regexp-pixelsize-subnum))
495 (charset (aref xlfd-fields xlfd-regexp-registry-subnum))
496 (nickname (aref xlfd-fields xlfd-regexp-encoding-subnum))
598 (aset xlfd xlfd-regexp-foundry-subnum nil)
599 (aset xlfd xlfd-regexp-family-subnum nil)
600 (aset xlfd xlfd-regexp-registry-subnum "fontset")
605 (aref resolved-xlfd xlfd-regexp-registry-subnum)
606 (aref resolved-xlfd xlfd-regexp-encoding-subnum)
607 (aref resolved-xlfd xlfd-regexp-pixelsize-subnum))))
608 (aset xlfd xlfd-regexp-encoding-subnum fontset-name)