Searched refs:score (Results 126 - 150 of 209) sorted by relevance

123456789

/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dgnus-uu.el645 (defun gnus-uu-mark-over (&optional score)
646 "Mark all articles with a score over SCORE (the prefix)."
648 (let ((score (or score gnus-summary-default-score 0))
654 gnus-summary-default-score 0)
655 score)
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/controlwidget/
H A Drdial.tcl380 -variable score
391 set ::score 0.0
394 set ::score 100.0
/macosx-10.9.5/AppleUSBCDCDriver-4201.2.5/AppleUSBCDCECM/ControlDriver/Classes/
H A DAppleUSBCDCECMControl.cpp449 // Outputs: IOService - from super::probe, score - probe score
451 // Desc: Modify the probe score if necessary (we don't at the moment)
455 IOService* AppleUSBCDCECMControl::probe(IOService *provider, SInt32 *score) argument
469 res = super::probe(provider, score);
/macosx-10.9.5/IOPCIFamily-224.92.1/
H A DIOPCIDevice.cpp516 bool IOPCIDevice::matchPropertyTable( OSDictionary * table, SInt32 * score )
518 return (parent->matchNubWithPropertyTable(this, table, score));
/macosx-10.9.5/SecurityTokend-55107/lib/
H A Dtransition.cpp35 // Probe: Examine token, determine score, and generate token uid string
37 kern_return_t tokend_server_probe(TOKEND_ARGS, TokenScore *score, TokenUidString uid) argument
41 CALL(probe, (kSecTokendCallbacksDefault, score, uid));
/macosx-10.9.5/SecurityTokend-55107/mig/
H A Dtokend.defs58 routine probe(TOKEND_PORTS; out score: TokenScore; out uid: TokenUidString);
/macosx-10.9.5/SecurityTokend-55107/security_tokend_client/
H A Dtransition.cpp35 // Probe: Examine token, determine score, and generate token uid string
37 kern_return_t tokend_server_probe(TOKEND_ARGS, TokenScore *score, TokenUidString uid) argument
41 CALL(probe, (kSecTokendCallbacksDefault, score, uid));
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Durl.c2723 long score; local
2743 /* Set higher score for the age passed since the connection was used */
2744 score = Curl_tvdiff(now, conn->now);
2746 if(score > highscore) {
2747 highscore = score;
2773 long score; local
2787 /* Set higher score for the age passed since the connection was used */
2788 score = Curl_tvdiff(now, conn->now);
2790 if(score > highscore) {
2791 highscore = score;
[all...]
/macosx-10.9.5/tidy-15.12/tidy/src/
H A Dlexer.c73 uint score; member in struct:_doctypes
111 uint score = 0; local
126 (W3C_Doctypes[i].score < score || !score))
128 score = W3C_Doctypes[i].score;
133 if (score)
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dquake.vim71 syn keyword quake12Command pingservers playerlist players score
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/
H A DIOService.h198 The driver class is instantiated and <code>init()</code> called with its property table. The new driver instance is then attached to the provider, and has its @link probe probe@/link method called with the provider as an argument. The default <code>probe</code> method does nothing but return success, but a driver may implement this method to interrogate the provider to make sure it can work with it. It may also modify its probe score at this time. After probe, the driver is detached and the next in the list is considered (ie. attached, probed, and detached).
200 When the probing phase is complete, the list consists of successfully probed drivers, in order of their probe score (after adjustment during the @link probe probe@/link call). The list is then divided into categories based on the <code>kIOMatchCategoryKey</code> property ("IOMatchCategory"); drivers without a match category are all considered in one default category. Match categories allow multiple clients of a provider to be attached and started, though the provider may also enforce open/close semantics to gain active access to it.
225 The probe score initially used to order multiple matching drivers.
498 @param score Pointer to the current driver's probe score, which is used to order multiple matching drivers in the same match category. It defaults to the value of the <code>IOProbeScore</code> property in the drivers property table, or <code>kIODefaultProbeScore</code> if none is specified. The <code>probe</code> method may alter the score to affect start order.
502 SInt32 * score );
506 @discussion The <code>start</code> method of an IOService instance is called by its provider when it has been selected (due to its probe score and match category) as the winning client. The client is already attached to the provider when <code>start</code> is called.<br>Implementations of <code>start</code> must call <code>start</code> on their superclass at an appropriate point. If an implementation of <code>start</code> has already called <code>super::start</code> but subsequently determines that it will fail, it must call <code>super::stop</code> to balance the prior call to <code>super::start</code> and prevent reference leaks.
654 @param score Pointer to the current driver's probe score, whic
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIOPlatformExpert.cpp1054 SInt32 * score )
1056 if( !super::probe( provider, score))
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/
H A DResultSet.pm3096 my $best_candidate = { position => undef, score => 0 }; my $position = 0;
3098 my $score = $self->_calculate_score( $orig_element, $import_element );
3099 if ($score > $best_candidate->{score}) {
3101 $best_candidate->{score} = $score;
3107 if ($best_candidate->{score} == 0 || exists $seen_keys->{$import_key}) {
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDDevice.cpp567 bool IOHIDDevice::matchPropertyTable(OSDictionary * table, SInt32 * score) argument
573 if (super::matchPropertyTable(table, score) == false)
576 match = MatchPropertyTable(this, table, score);
/macosx-10.9.5/BerkeleyDB-21/db/dist/
H A Dconfig.sub279 | score \
1413 score-*)
/macosx-10.9.5/Heimdal-323.92.1/
H A Dconfig.sub291 | score \
1460 score-*)
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDLib/
H A DIOHIDEventServiceClass.cpp395 SInt32 score = 0; local
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDSystem/IOKit/hidsystem/
H A DIOHIDSystem.h329 SInt32 * score);
/macosx-10.9.5/SmartcardCCID-55005/ccid/ccid/
H A Dconfig.sub284 | score \
1441 score-*)
/macosx-10.9.5/SmartcardCCID-55005/libusb/libusb/
H A Dconfig.sub284 | score \
1441 score-*)
/macosx-10.9.5/apr-30/apr/apr/build/
H A Dconfig.sub279 | score \
1413 score-*)
/macosx-10.9.5/apr-30/apr-util/apr-util/build/
H A Dconfig.sub293 | score \
1477 score-*)
/macosx-10.9.5/apr-30/apr-util/apr-util/xml/expat/conftools/
H A Dconfig.sub293 | score \
1477 score-*)
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/admin/
H A Dconfig.sub292 | score \
1463 score-*)
/macosx-10.9.5/cxxfilt-11/cxxfilt/
H A Dconfig.sub280 | score \
1379 score-*)

Completed in 205 milliseconds

123456789