Searched refs:predicate (Results 1 - 25 of 140) sorted by path

123456

/macosx-10.9.5/CF-855.17/
H A DCFBundle_Resources.c1957 static void _CFBundleFindResourcesWithPredicate(CFMutableArrayRef interResult, CFDictionaryRef queryTable, Boolean (^predicate)(CFStringRef filename, Boolean *stop), Boolean *stop)
1967 if (predicate((CFStringRef)keys[i], stop)) {
1979 static CFTypeRef _CFBundleCopyURLsOfKey(CFBundleRef bundle, CFURLRef bundleURL, CFArrayRef languages, CFStringRef resourcesDirectory, CFStringRef subDir, CFStringRef key, CFStringRef lproj, Boolean returnArray, Boolean localized, uint8_t bundleVersion, Boolean (^predicate)(CFStringRef filename, Boolean *stop))
1982 Boolean stop = false; // for predicate
1992 if (predicate) {
1993 _CFBundleFindResourcesWithPredicate(interResult, subTable, predicate, &stop);
2003 if (predicate) {
2004 _CFBundleFindResourcesWithPredicate(interResult, subTable, predicate, &stop);
2161 CF_EXPORT CFTypeRef _CFBundleCopyFindResources(CFBundleRef bundle, CFURLRef bundleURL, CFArrayRef languages, CFStringRef resourceName, CFStringRef resourceType, CFStringRef subPath, CFStringRef lproj, Boolean returnArray, Boolean localized, Boolean (^predicate)(CFStringRef filename, Boolean *stop))
2222 CFTypeRef returnValue = _CFBundleCopyURLsOfKey(bundle, bundleURL, languages, resDir, realSubdirectory, key, lproj, returnArray, localized, bundleVersion, predicate);
[all...]
H A DCFPlatform.c1113 void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block) { argument
1115 pthread_once(predicate, (void (*)(void))layout->invoke);
H A DCoreFoundation_Prefix.h176 void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block);
474 CF_INLINE BOOL objc_atomicCompareAndSwapPtr(id predicate, id replacement, volatile id *objectLocation) argument
475 { return OSAtomicCompareAndSwapPtr((void *)predicate, (void *)replacement, (void * volatile *)objectLocation); }
477 CF_INLINE BOOL objc_atomicCompareAndSwapPtrBarrier(id predicate, id replacement, volatile id *objectLocation) argument
478 { return OSAtomicCompareAndSwapPtrBarrier((void *)predicate, (void *)replacement, (void * volatile *)objectLocation); }
480 CF_INLINE BOOL objc_atomicCompareAndSwapGlobal(id predicate, id replacement, volatile id *objectLocation) argument
481 { return OSAtomicCompareAndSwapPtr((void *)predicate, (void *)replacement, (void * volatile *)objectLocation); }
483 CF_INLINE BOOL objc_atomicCompareAndSwapGlobalBarrier(id predicate, id replacement, volatile id *objectLocation) argument
484 { return OSAtomicCompareAndSwapPtrBarrier((void *)predicate, (void *)replacement, (void * volatile *)objectLocation); }
486 CF_INLINE BOOL objc_atomicCompareAndSwapInstanceVariable(id predicate, i argument
489 objc_atomicCompareAndSwapInstanceVariableBarrier(id predicate, id replacement, volatile id *objectLocation) argument
[all...]
H A DForFoundationOnly.h80 CF_EXPORT CFTypeRef _CFBundleCopyFindResources(CFBundleRef bundle, CFURLRef bundleURL, CFArrayRef languages, CFStringRef resourceName, CFStringRef resourceType, CFStringRef subPath, CFStringRef lproj, Boolean returnArray, Boolean localized, Boolean (^predicate)(CFStringRef filename, Boolean *stop));
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/lib/Class/
H A DDBI.pm1667 predicate syntax. '%' means "any zero or more characters", '_' means
/macosx-10.9.5/CPANInternal-140/Class-DBI/lib/Class/
H A DDBI.pm1666 predicate syntax. '%' means "any one or more characters", '_' means
/macosx-10.9.5/CPANInternal-140/DBIx-Class/lib/DBIx/Class/Storage/DBI/Replicated/
H A DBalancer.pm39 predicate=>'has_auto_validate_every',
/macosx-10.9.5/CPANInternal-140/XML-XPath/XPath/
H A DExpr.pm19 foreach my $predicate (@{$self->{predicates}}) {
20 $string .= "[" . $predicate->as_string . "]";
35 foreach my $predicate (@{$self->{predicates}}) {
36 $string .= "<Predicate>\n" . $predicate->as_xml() . "</Predicate>\n";
112 die "Only 1 predicate allowed on FilterExpr in W3C XPath 1.0"
146 # filter initial nodeset by each predicate
147 foreach my $predicate (@{$self->{predicates}}) {
148 $results = $self->filter_by_predicate($results, $predicate);
577 my ($nodeset, $predicate) = @_;
580 # For each node in the node-set to be filtered, the predicate Exp
[all...]
H A DStep.pm180 # filter initial nodeset by each predicate
181 foreach my $predicate (@{$self->{predicates}}) {
182 $results = $self->filter_by_predicate($results, $predicate);
477 my ($nodeset, $predicate) = @_;
480 # For each node in the node-set to be filtered, the predicate Expr
490 # warn "Filter by predicate: $predicate\n";
498 my $result = $predicate->evaluate($nodeset->get_node($i));
/macosx-10.9.5/IOKitUser-907.100.13/kext.subproj/
H A DOSKext.c643 CFStringRef predicate,
8440 CFStringRef predicate,
8446 kextRequest = __OSKextCreateKextRequest(predicate,
8438 __OSKextSimpleKextRequest( OSKextRef aKext, CFStringRef predicate, CFTypeRef * cfResponseOut) argument
/macosx-10.9.5/JavaScriptCore-7537.78.1/llint/
H A DLowLevelInterpreter32_64.asm58 # predicate of an "if" is assumed to be a #define that is available
/macosx-10.9.5/JavaScriptCore-7537.78.1/offlineasm/
H A Dast.rb1177 attr_reader :predicate, :thenCase
1180 def initialize(codeOrigin, predicate, thenCase)
1182 @predicate = predicate
1189 [@predicate, @thenCase, @elseCase]
1191 [@predicate, @thenCase]
1196 IfThenElse.new(codeOrigin, (yield @predicate), (yield @thenCase), (yield @elseCase))
1200 "if #{predicate.dump}\n" + thenCase.dump + "\nelse\n" + elseCase.dump + "\nend"
H A Dgenerate_offset_extractor.rb87 ifThenElse = IfThenElse.new(codeOrigin, predicate, thenCase.offsetsPrune)
H A Dparser.rb541 predicate = parsePredicate
544 ifThenElse = IfThenElse.new(codeOrigin, predicate, parseSequence(/\A((else)|(end)|(elsif))\Z/, "while inside of \"if #{predicate.dump}\""))
550 predicate = parsePredicate
553 elseCase = IfThenElse.new(codeOrigin, predicate, parseSequence(/\A((else)|(end)|(elsif))\Z/, "while inside of \"if #{predicate.dump}\""))
559 ifThenElse.elseCase = parseSequence(/\Aend\Z/, "while inside of else case for \"if #{predicate.dump}\"")
H A Dtransform.rb81 if @predicate.resolveSettings(settings).value
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Spotlight/
H A DAppController.rb18 @spotlight.predicate = "kMDItemContentType == 'public.ruby-script'"
H A DSpotlight.rb15 attr :predicate, true
24 predicateToRun = NSPredicate.predicateWithFormat(@predicate)
26 p "FIX IT: I haven't find a way to check if the predicate's format is valid"
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmdb.cpp586 CssmSelectionPredicate &predicate = add(); local
587 predicate.dbOperator(dbOperator);
588 predicate.set(info, value, allocator());
589 return predicate;
H A Dcssmdb.h832 CssmSelectionPredicate *walk(Action &operate, CssmSelectionPredicate * &predicate)
834 operate(predicate);
835 walk(operate, predicate->attribute());
836 return predicate;
840 void walk(Action &operate, CssmSelectionPredicate &predicate)
842 operate(predicate);
843 walk(operate, predicate.attribute());
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DCCallbackMgr.cp149 Predicate predicate(inCallbackFunction);
150 CCallbackMgr::Instance().mEventCallbacks.remove_if(predicate);
/macosx-10.9.5/Security-55471.14.18/include/security_pkcs12/
H A Dpkcs12Utils.cpp558 CSSM_SELECTION_PREDICATE predicate; local
571 predicate.DbOperator = CSSM_DB_EQUAL;
573 predicate.Attribute.Info.AttributeNameFormat =
575 predicate.Attribute.Info.Label.AttributeName =
577 predicate.Attribute.Info.AttributeFormat =
580 predicate.Attribute.Value = &keyLabel;
581 query.SelectionPredicate = &predicate;
695 predicate.Attribute.Value = keyDigest;
769 CSSM_SELECTION_PREDICATE predicate; local
777 predicate
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_cspdl/lib/
H A DSSDLSession.cpp807 CSSM_SELECTION_PREDICATE predicate; local
808 predicate.DbOperator = CSSM_DB_EQUAL;
809 predicate.Attribute.Info.AttributeNameFormat = CSSM_DB_ATTRIBUTE_NAME_AS_INTEGER;
810 predicate.Attribute.Info.Label.AttributeID = kSymmetricKeyLabel;
811 predicate.Attribute.Info.AttributeFormat = CSSM_DB_ATTRIBUTE_FORMAT_BLOB;
812 predicate.Attribute.NumberOfValues = 1;
814 predicate.Attribute.Value = &label;
820 query.SelectionPredicate = &predicate;
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_x509_tp/lib/
H A DTPDatabase.cpp51 CSSM_SELECTION_PREDICATE predicate; local
58 predicate.DbOperator = CSSM_DB_EQUAL;
59 predicate.Attribute.Info.AttributeNameFormat =
61 predicate.Attribute.Info.Label.AttributeName = (char*) "Subject";
62 predicate.Attribute.Info.AttributeFormat = CSSM_DB_ATTRIBUTE_FORMAT_BLOB;
63 predicate.Attribute.Value = const_cast<CSSM_DATA_PTR>(subjectName);
64 predicate.Attribute.NumberOfValues = 1;
69 query.SelectionPredicate = &predicate;
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmdb.cpp586 CssmSelectionPredicate &predicate = add(); local
587 predicate.dbOperator(dbOperator);
588 predicate.set(info, value, allocator());
589 return predicate;
H A Dcssmdb.h832 CssmSelectionPredicate *walk(Action &operate, CssmSelectionPredicate * &predicate)
834 operate(predicate);
835 walk(operate, predicate->attribute());
836 return predicate;
840 void walk(Action &operate, CssmSelectionPredicate &predicate)
842 operate(predicate);
843 walk(operate, predicate.attribute());

Completed in 471 milliseconds

123456