Searched refs:predicate (Results 76 - 100 of 136) sorted by relevance

123456

/macosx-10.10.1/emacs-93/emacs/lisp/
H A Ddired-x.el1557 (defun dired-mark-sexp (predicate &optional unflag-p)
1586 (message "%s" predicate)
1649 (eval predicate)))
1650 (format "'%s file" predicate))))
H A Dsubr.el2556 (predicate (make-symbol "predicate"))
2558 `(lambda (,string ,predicate ,mode)
2563 ((eq ,mode t) (all-completions ,string (,fun ,string) ,predicate))
2564 ((not ,mode) (try-completion ,string (,fun ,string) ,predicate))
2565 (t (test-completion ,string (,fun ,string) ,predicate)))))))
2602 `(lambda (string predicate mode)
2605 (or (all-completions string ,a predicate)
2606 (all-completions string ,b predicate)))
2608 (or (try-completion string ,a predicate)
[all...]
H A Ddired-aux.el106 (defun dired-compare-directories (dir2 predicate)
112 with empty input at the predicate prompt).
149 predicate))
154 predicate)))
169 (defun dired-file-set-difference (list1 list2 predicate)
192 (not (eval predicate))))))
2115 nil ; predicate
H A Dapropos.el434 (defun apropos-command (pattern &optional do-all var-predicate)
445 satisfy the predicate VAR-PREDICATE.
460 (or var-predicate
474 (unless var-predicate
481 (and var-predicate
482 (funcall var-predicate symbol)
680 (defun apropos-value-internal (predicate symbol function)
681 (if (funcall predicate symbol)
H A Dcomplete.el383 (defvar PC-completion-as-file-name-predicate
430 (defun PC-try-completion (string alist &optional predicate)
432 (let ((result (try-completion string alist predicate)))
445 (pred minibuffer-completion-predicate)
446 (filename (funcall PC-completion-as-file-name-predicate))
499 ;; The base dir for file-completion is passed in `predicate'.
514 ;; The base dir for file-completion is passed in `predicate'.
876 (minibuffer-completion-predicate
927 (minibuffer-completion-predicate "")
H A Dframe.el630 (defun filtered-frame-list (predicate)
635 (unless (funcall predicate (car frames))
H A Dwindow.el157 (defun get-window-with-predicate (predicate &optional minibuf
188 (when (funcall predicate window)
193 (defalias 'some-window 'get-window-with-predicate)
/macosx-10.10.1/emacs-93/emacs/lisp/mh-e/
H A Dmh-acros.el154 (predicate (intern (format "%s-p" struct-name)))
168 (defun ,predicate (arg)
H A Dmh-seq.el710 (defun mh-range-completion-function (string predicate flag)
723 (let ((res (try-completion last-word candidates predicate)))
728 (all-completions last-word candidates predicate))
H A Dmh-utils.el698 (defun mh-folder-completion-function (name predicate flag)
724 predicate)))
733 remainder (mh-sub-folders last-complete t) predicate)))
/macosx-10.10.1/ruby-106/ruby/lib/rexml/parsers/
H A Dxpathparser.rb28 def predicate path method in class:REXML.Parsers.XPathParser
68 when :predicate
114 when :predicate
215 # (axis or @ or <child::>) nodetest predicate >
325 # Filters the supplied nodeset on the predicate(s)
338 parsed << :predicate
/macosx-10.10.1/ruby-106/ruby/test/rexml/
H A Dtest_functions.rb219 predicate = "string(.)=normalize_space('\nCOMMENT \n A \n\n ')"
220 m = REXML::XPath.match(doc, "//comment()[#{predicate}]")
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tclxml/library/
H A Dxpath.tcl57 # The list has the form: {{axis node-test {predicate predicate ...}} ...}
138 set predicate [list = {function position {}} [list number $posn]]
141 set predicate [ParseExpr $locpath leftover2]
147 lappend predicates $predicate
149 return -code error "unexpected text in predicate \"$locpath\""
176 # Parse one expression in a predicate
/macosx-10.10.1/xnu-2782.1.97/libkern/c++/
H A DOSKext.cpp81 const char * predicate,
2855 OSString * predicate = NULL; // do not release local
2932 predicate = _OSKextGetRequestPredicate(mkextPlist);
2933 if (!predicate || !predicate->isEqualTo(kKextRequestPredicateLoad)) {
2937 "Received kext load request with no predicate; skipping.");
7344 OSString * predicate = NULL; // do not release local
7394 predicate = _OSKextGetRequestPredicate(requestDict);
7395 if (!predicate) {
7399 "Recieved kext request from user space with no predicate
8546 OSString * predicate = _OSKextGetRequestPredicate(callbackRecord); local
8704 _OSKextCreateRequest( const char * predicate, OSDictionary ** requestP) argument
[all...]
/macosx-10.10.1/gnutar-453/gnutar/src/
H A Dcreate.c51 bool (*predicate) (const char *name); member in struct:exclusion_tag
59 bool (*predicate) (const char *name))
65 tag->predicate = predicate;
108 && (!tag->predicate || tag->predicate (tagname)))
119 /* Exclusion predicate to test if the named file (usually "CACHEDIR.TAG")
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h270 // the given predicate.
272 inline int CountIf(const Container& c, Predicate predicate) { argument
277 if (predicate(*it))
333 // A predicate that checks the key of a TestProperty against a known key.
/macosx-10.10.1/tcl-105/tcl_ext/tclxml/tcldom/library/
H A Ddomimpl.tcl3640 set predicate [lindex $predicates 0]
3642 switch -- [lindex [lindex $predicate 0] 0] {
3644 switch -- [lindex [lindex $predicate 0] 1] {
3646 if {[lindex $predicate 1] == "="} {
3647 if {[string compare [lindex [lindex $predicate 2] 0] "number"]} {
3650 set posn [lindex [lindex $predicate 2] 1]
3657 return -code error "predicate function \"[lindex [lindex $predicate 0] 1]\" not supported"
3662 return -code error "predicate must be position() function"
3914 foreach predicate
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dadvice.el2050 ;; Don't make this a macro so we can use it as a predicate:
2202 (defun ad-read-advised-function (&optional prompt predicate default)
2213 (if (or (null predicate)
2214 (funcall predicate function))
2218 (let* ((ad-pReDiCaTe predicate)
2223 (if predicate
2227 ;; `predicate' clashed with the `predicate' argument
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-util.el1084 (defun gnus-remove-if (predicate list)
1088 (unless (funcall predicate (car list))
1329 (defun gnus-make-predicate (spec)
1331 SPEC is a predicate specifier that contains stuff like `or', `and',
1333 `(lambda (elem) ,(gnus-make-predicate-1 spec)))
1335 (defun gnus-make-predicate-1 (spec)
1341 `(,(car spec) ,@(mapcar 'gnus-make-predicate-1 (cdr spec)))
1342 (error "Invalid predicate specifier: %s" spec)))))
1354 (defmacro gnus-completing-read-maybe-default (prompt table &optional predicate
1358 `(completing-read ,prompt ,table ,predicate ,requir
[all...]
H A Dmail-source.el87 (const :format "" :value :predicate)
195 (const :format "" :value :predicate)
342 (:predicate identity))
367 (:predicate "UNSEEN UNDELETED")
708 (funcall predicate file)
1010 ;; if predicate is nil, use all uids
1011 (dolist (uid (imap-search (or predicate "1:*") buf))
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/utilLib/
H A Dcspwrap.c3080 CSSM_SELECTION_PREDICATE predicate; local
3100 predicate.DbOperator = CSSM_DB_EQUAL;
3102 predicate.Attribute.Info.AttributeNameFormat =
3104 predicate.Attribute.Info.Label.AttributeName = (char *) "Label";
3105 predicate.Attribute.Info.AttributeFormat = CSSM_DB_ATTRIBUTE_FORMAT_BLOB;
3107 predicate.Attribute.Value = (CSSM_DATA_PTR)keyLabel;
3108 query.SelectionPredicate = &predicate;
/macosx-10.10.1/WTF-7600.1.24/wtf/text/
H A DStringImpl.cpp717 inline PassRef<StringImpl> StringImpl::stripMatchedCharacters(UCharPredicate predicate) argument
726 while (start <= end && predicate(is8Bit() ? m_data8[start] : m_data16[start]))
734 while (end && predicate(is8Bit() ? m_data8[end] : m_data16[end]))
816 inline PassRef<StringImpl> StringImpl::simplifyMatchedCharactersToSpace(UCharPredicate predicate) argument
828 while (from != fromend && predicate(*from)) {
833 while (from != fromend && !predicate(*from))
/macosx-10.10.1/JavaScriptCore-7600.1.17/offlineasm/
H A Dtransform.rb81 if @predicate.resolveSettings(settings).value
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DDeque.h349 inline auto Deque<T, inlineCapacity>::findIf(Predicate&& predicate) -> iterator
353 if (predicate(*it))
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DConstantsContext.h234 // needed in order to store the predicate value for these instructions.
243 unsigned short predicate; member in class:llvm::CompareConstantExpr
246 : ConstantExpr(ty, opc, &Op<0>(), 2), predicate(pred) {
465 // The compare instructions are weird. We have to encode the predicate
467 // the opcode by one hundred. We must decode this to get the predicate.

Completed in 223 milliseconds

123456