HomeSort by: relevance | last modified time | path
    Searched defs:should (Results 1 - 6 of 6) sorted by relevancy

  /xsrc/external/mit/xedit/dist/lisp/modules/progmodes/
python.lsp 52 ;; This should default to T when newline-indent is not NIL.
65 ;; should be working properly.
130 ;; This should be the most common exit point;
145 ;; This should be second most common exit point;
179 (defun python-should-indent (options &aux point start end offset)
187 (return-from python-should-indent))
194 ;; if at bol and should indent only when starting a line
196 (return-from python-should-indent (= point start)))
200 (return-from python-should-indent (gethash :newline-indent options)))
204 (return-from python-should-indent t)
    [all...]
lisp.lsp 73 ;; This should default to T when newline-indent is not NIL.
223 ;; Find a "good" offset to start parsing backwards, so that it should
232 (defun lisp-should-indent (options &aux char point start)
240 (return-from lisp-should-indent))
249 (return-from lisp-should-indent (gethash :newline-indent options)))
252 (and (= point (1+ start)) (return-from lisp-should-indent t))
260 (return-from lisp-should-indent (<= point start)))
262 ;; should not indent
270 (or (lisp-should-indent options) (return-from lisp-indent))
c.lsp 81 ;; This should default to T when newline-indent is not NIL.
169 ;; "\\w+:", but this way should properly handle labels generated
428 ;; XXX this frequently doesn't do what is expected, should redefine
803 ;; Find a "good" offset to start parsing backwards, so that it should
832 (defun c-should-indent (options)
841 (return-from c-should-indent)
856 (return-from c-should-indent)
859 ;; if at bol and should indent only when starting a line
861 (return-from c-should-indent (= point start))
867 (return-from c-should-indent t
    [all...]
perl.lsp 27 ;; syntax/indentation rules, that should work correctly with most
113 ;; This should default to T when newline-indent is not NIL.
295 (defun perl-should-indent (options &aux char point start offset)
303 (return-from perl-should-indent))
310 ;; if at bol and should indent only when starting a line
312 (return-from perl-should-indent (= point start)))
316 (return-from perl-should-indent (gethash :newline-indent options)))
320 (return-from perl-should-indent t))
334 (return-from perl-should-indent t)))
336 ;; if one of these was typed, should check indentatio
    [all...]
  /xsrc/external/mit/xorg-server/dist/composite/
compwindow.c 160 Bool should; local
162 should = pWin->realized && (pWin->drawable.class != InputOnly) &&
168 should = FALSE;
172 if (should != (pWin->redirectDraw != RedirectDrawNone)) {
173 if (should)
184 else if (should) {
234 * "Shouldn't need this as all possible places should be wrapped
463 * (this actually should never be true; pWin is always unmapped)
  /xsrc/external/mit/xorg-server.old/dist/composite/
compwindow.c 151 Bool should; local
153 should = pWin->realized && (pWin->drawable.class != InputOnly) &&
159 should = FALSE;
163 if (should != (pWin->redirectDraw != RedirectDrawNone))
165 if (should)
215 * "Shouldn't need this as all possible places should be wrapped
435 * (this actually should never be true; pWin is always unmapped)

Completed in 11 milliseconds