Searched refs:additions (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DLayerTreeManager.js56 additions: newLayers,
84 var additions = []; variable
110 additions.push(layer);
124 additions: additions,
/macosx-10.10.1/files-662.1.1/private/etc/
H A Dupdate-services.pl93 my @additions = ();
96 push @additions, $key;
130 my $next_add = shift @additions;
141 ### Walk the list of additions and deletions, inserting new service
223 $next_add = shift @additions;
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSDigestVector.c324 const struct SOSDigestVector *additions, struct SOSDigestVector *dv,
331 assert(!additions->unsorted);
334 while (i1 < base->count && i2 < additions->count) {
335 // Pick the smaller of base->digest[i1] and additions->digest[i2] as a
337 int udelta = SOSDigestCompare(base->digest[i1], additions->digest[i2]);
338 const uint8_t *candidate = udelta < 0 ? base->digest[i1] : additions->digest[i2];
358 i2 = SOSDVINCRIX(additions, i2);
362 i2 = SOSDVINCRIX(additions, i2);
366 SOSDigestVectorAppendComplementAtIndex(i3, removals, i2, additions, dv);
372 struct SOSDigestVector *additions, struc
323 SOSDigestVectorPatchSorted(const struct SOSDigestVector *base, const struct SOSDigestVector *removals, const struct SOSDigestVector *additions, struct SOSDigestVector *dv, CFErrorRef *error) argument
371 SOSDigestVectorPatch(struct SOSDigestVector *base, struct SOSDigestVector *removals, struct SOSDigestVector *additions, struct SOSDigestVector *dv, CFErrorRef *error) argument
[all...]
H A DSOSDigestVector.h88 const struct SOSDigestVector *additions, struct SOSDigestVector *dv,
91 struct SOSDigestVector *additions, struct SOSDigestVector *dv,
H A DSOSEngine.h58 // Remove removals and add additions to the (cached) local manifest, and update all peers accordingly
59 bool SOSEngineUpdateLocalManifest(SOSEngineRef engine, SOSDataSourceTransactionSource source, struct SOSDigestVector *removals, struct SOSDigestVector *additions, CFErrorRef *error);
68 CFDataRef SOSEnginePatchRecordAndCopyDigest(SOSEngineRef engine, SOSManifestRef base, SOSManifestRef removals, SOSManifestRef additions, CFErrorRef *error);
H A DSOSMessage.c95 additions Manifest
145 -- additions and removals -- }
164 additions SOSManifest }
260 SOSManifestRef additions; member in struct:__OpaqueSOSMessage
284 if (!CFEqualSafe(M->additions, P->additions)) return false;
297 CFReleaseNull(message->additions);
345 desc = CFStringCreateWithFormat(CFGetAllocator(message), NULL, CFSTR("<MSGManifest %"PRIu64" %@>"), message->sequenceNumber, message->additions);
351 message->removals, message->additions,
363 message->removals, message->additions,
411 SOSManifestRef additions = NULL; local
874 CFDataRef removals = NULL, additions = NULL; local
[all...]
H A DSOSManifest.h77 SOSManifestRef additions,
H A DSOSEngine.c177 CFDataRef SOSEnginePatchRecordAndCopyDigest(SOSEngineRef engine, SOSManifestRef base, SOSManifestRef removals, SOSManifestRef additions, CFErrorRef *error) { argument
179 SOSManifestRef manifest = SOSManifestCreateWithPatch(base, removals, additions, error);
188 static bool SOSEngineHandleManifestUpdates(SOSEngineRef engine, SOSDataSourceTransactionSource source, SOSManifestRef removals, SOSManifestRef additions, CFErrorRef *error) { argument
201 if (removals || additions)
202 ok &= SOSPeerDataSourceWillCommit(peer, source, removals, additions, error);
283 static bool SOSEngineUpdateLocalManifest_locked(SOSEngineRef engine, SOSDataSourceTransactionSource source, SOSManifestRef removals, SOSManifestRef additions, CFErrorRef *error) { argument
286 SOSManifestRef updatedManifest = SOSManifestCreateWithPatch(engine->manifest, removals, additions, error);
291 ok &= SOSEngineHandleManifestUpdates(engine, source, removals, additions, error);
296 static bool SOSEngineUpdateChanges(SOSEngineRef engine, SOSTransactionRef txn, SOSDataSourceTransactionPhase phase, SOSDataSourceTransactionSource source, SOSManifestRef removals, SOSManifestRef additions, CFErrorRef *error) argument
298 secnotice("engine", "%s %s dels:%@ adds:%@", phase == kSOSDataSourceTransactionWillCommit ? "will-commit" : phase == kSOSDataSourceTransactionDidCommit ? "did-commit" : "did-rollback", source == kSOSDataSourceSOSTransaction ? "sos" : "api", removals, additions);
950 SOSEngineUpdateLocalManifest(SOSEngineRef engine, SOSDataSourceTransactionSource source, struct SOSDigestVector *removals, struct SOSDigestVector *additions, CFErrorRef *error) argument
[all...]
H A DSOSAccountUpdate.c12 static void DifferenceAndCall(CFSetRef old_members, CFSetRef new_members, void (^updatedCircle)(CFSetRef additions, CFSetRef removals)) argument
14 CFMutableSetRef additions = CFSetCreateMutableCopy(kCFAllocatorDefault, 0, new_members); local
19 CFSetRemoveValue(additions, value);
26 updatedCircle(additions, removals);
28 CFReleaseSafe(additions);
H A DSOSPeer.h47 bool SOSPeerDataSourceWillCommit(SOSPeerRef peer, SOSDataSourceTransactionSource source, SOSManifestRef removals, SOSManifestRef additions, CFErrorRef *error);
H A DSOSManifest.c139 SOSManifestRef additions,
144 SOSManifestGetDigestVector(additions), &dvresult, error)) {
137 SOSManifestCreateWithPatch(SOSManifestRef base, SOSManifestRef removals, SOSManifestRef additions, CFErrorRef *error) argument
H A DSOSPeer.c470 bool SOSPeerDataSourceWillCommit(SOSPeerRef peer, SOSDataSourceTransactionSource source, SOSManifestRef removals, SOSManifestRef additions, CFErrorRef *error) { argument
474 secnotice("peer", "%@ R:%@ A:%@ C:%@ D:%@ O:%@", peer, removals, additions, SOSPeerGetConfirmedManifest(peer), SOSPeerGetPendingDeletes(peer), SOSPeerGetPendingObjects(peer));
476 // Remove confirmed from additions
478 unconfirmedAdditions = SOSManifestCreateComplement(SOSPeerGetConfirmedManifest(peer), additions, error);
H A DSOSDataSource.h101 typedef void (^SOSDataSourceNotifyBlock)(SOSDataSourceRef ds, SOSTransactionRef txn, SOSDataSourceTransactionPhase phase, SOSDataSourceTransactionSource source, struct SOSDigestVector *removals, struct SOSDigestVector *additions); variable in typeref:struct:SOSDigestVector
/macosx-10.10.1/tcl-105/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dhttpdist.tcl93 set additions {}
115 lappend additions $f
121 return [list $matches $additions $changes $deletions]
202 foreach {matches additions changes deletions} $diffs break
205 set na [llength $additions]
208 set stats "$na additions, $nc changes, $nd deletions"
224 foreach {v t} {additions a changes r deletions d} {
418 foreach {matches additions changes deletions} $diffs break
421 set na [llength $additions]
426 puts stderr "\n$nm matches, $na additions,
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A DSOSTestDataSource.c54 struct SOSDigestVector additions; member in struct:SOSTestDataSource
258 SOSDigestVectorAppend(&ds->additions, CFDataGetBytePtr(key));
291 if (commit && ((SOSTestDataSourceRef)ds)->notifyBlock && (tds->removals.count || tds->additions.count)) {
292 ((SOSTestDataSourceRef)ds)->notifyBlock(ds, (SOSTransactionRef)ds, kSOSDataSourceTransactionWillCommit, source, &tds->removals, &tds->additions);
294 SOSDigestVectorFree(&tds->additions);
425 SOSDigestVectorAppend(&ds->additions, CFDataGetBytePtr(key));
/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A DSecDb.h83 typedef void (^SecDBNotifyBlock)(SecDbConnectionRef dbconn, SecDbTransactionPhase phase, SecDbTransactionSource source, struct SOSDigestVector *removals, struct SOSDigestVector *additions); variable in typeref:struct:SOSDigestVector
/macosx-10.10.1/Security-57031.1.35/Security/utilities/utilities/
H A DSecDb.h83 typedef void (^SecDBNotifyBlock)(SecDbConnectionRef dbconn, SecDbTransactionPhase phase, SecDbTransactionSource source, struct SOSDigestVector *removals, struct SOSDigestVector *additions); variable in typeref:struct:SOSDigestVector
/macosx-10.10.1/libxml2-26/libxml2/vms/
H A Dbuild_libxml.com23 $! more new module additions
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/vms/
H A Dbuild_libxml.com23 $! more new module additions
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Dalphaindex.h321 * Add Labels to this Index. The labels are additions to those
324 * @param additions The additional characters to add to the index, such as A-Z.
330 virtual AlphabeticIndex &addLabels(const UnicodeSet &additions, UErrorCode &status);
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-runtime-old.h330 extern BOOL _class_addProperties(Class cls, struct old_property_list *additions);
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dalphaindextst.cpp115 UnicodeSet additions; local
116 additions.add((UChar32)0x410).add((UChar32)0x415); // A couple of Cyrillic letters
117 index->addLabels(additions, status);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLayerTreeSidebarPanel.js277 mutations.additions.forEach(function(layer) {
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ucdata/
H A DREADME78 structure additions for rendering.
204 5. Minor additions and changes to the documentation.
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DSecItemDataSource.c195 SecDbSetNotifyPhaseBlock(ds->db, ^(SecDbConnectionRef dbconn, SecDbTransactionPhase phase, SecDbTransactionSource source, struct SOSDigestVector *removals, struct SOSDigestVector *additions) {
197 notifyBlock(&ds->ds, (SOSTransactionRef)dbconn, phase, source, removals, additions);

Completed in 142 milliseconds

12