/external/libpng/ |
CHANGES | 2 CHANGES - changes for libpng 72 [unspecified changes] 151 added "packswap" transformation, which changes the endianness of 278 Minor changes to pngtest.c to suppress compiler warnings. 281 Minor changes to previous minor changes to pngtest.c 308 Minor changes to makefile.s2x [all...] |
/external/chromium/chrome/browser/sync/glue/ |
change_processor.h | 19 // An interface used to apply changes from the sync model to the browser's 27 // Call when the processor should accept changes from either provided model 39 // Changes have been applied to the backend model and are ready to be 41 // how to interpret and process |changes|. 44 const sync_api::SyncManager::ChangeRecord* changes, 47 // The changes found in ApplyChangesFromSyncModel may be too slow to be 65 bool running_; // True if we have been told it is safe to process changes. 68 // The sync model we are processing changes from. Non-NULL when |running_| is
|
password_change_processor.h | 27 // This class is responsible for taking changes from the password backend and 48 const sync_api::SyncManager::ChangeRecord* changes, 51 // Commit changes buffered during ApplyChanges. We must commit them to the 68 // The model we are processing changes from. This is owned by the
|
typed_url_change_processor.h | 35 // This class is responsible for taking changes from the history backend and 55 const sync_api::SyncManager::ChangeRecord* changes, 73 // The model we are processing changes from. This is owned by the
|
autofill_change_processor.h | 33 // This class is responsible for taking changes from the web data service and 54 const sync_api::SyncManager::ChangeRecord* changes, 57 // Commit any changes from ApplyChangesFromSyncModel buffered in 81 void ObserveAutofillEntriesChanged(AutofillChangeList* changes, 116 // The model we are processing changes from. This is owned by the 122 // changes to the autofill data in the WebDatabase. 129 // Record of changes from ApplyChangesFromSyncModel. These are then processed
|
preference_change_processor.cc | 110 const sync_api::SyncManager::ChangeRecord* changes, 124 changes[i].action) { 130 if (!node.InitByIdLookup(changes[i].id)) { 160 changes[i].action) { 167 changes[i].action) { 170 model_associator_->Associate(preference, changes[i].id);
|
/external/chromium/chrome/browser/sync/ |
js_sync_manager_observer.h | 30 const sync_api::SyncManager::ChangeRecord* changes,
|
/external/chromium_org/chrome/browser/search_engines/ |
template_url_service_sync_unittest.cc | 91 // Store a copy of all the changes passed in so we can examine them later. 110 // Track the changes received in ProcessSyncChanges. 154 // The recipient of all sync changes. 246 // Our dummy ChangeProcessor used to inspect changes pushed to Sync. 529 // Undo the changes. 548 syncer::SyncChangeList changes; local 549 model()->ResolveSyncKeywordConflict(sync_turl.get(), original_turl, &changes); 552 ASSERT_EQ(1U, changes.size()); 553 EXPECT_EQ("remote", GetGUID(changes[0].sync_data())); 554 EXPECT_EQ(syncer::SyncChange::ACTION_UPDATE, changes[0].change_type()) 911 syncer::SyncChangeList changes; local 934 syncer::SyncChangeList changes; local 965 syncer::SyncChangeList changes; local 1009 syncer::SyncChangeList changes; local 1101 syncer::SyncChangeList changes; local 1363 syncer::SyncChangeList changes; local 1388 syncer::SyncChangeList changes; local 1412 syncer::SyncChangeList changes; local 1724 syncer::SyncChangeList changes; local 1965 syncer::SyncChangeList changes; local 2174 syncer::SyncChangeList changes; local 2204 syncer::SyncChangeList changes; local [all...] |
/external/chromium_org/chrome/browser/sync/glue/ |
change_processor.h | 22 // An interface used to apply changes from the sync model to the browser's 29 // Call when the processor should accept changes from either provided model 38 // Changes have been applied to the backend model and are ready to be 40 // how to interpret and process |changes|. 44 const syncer::ImmutableChangeRecordList& changes) = 0; 46 // The changes found in ApplyChangesFromSyncModel may be too slow to be 84 // The sync model we are processing changes from.
|
password_change_processor.h | 29 // This class is responsible for taking changes from the password backend and 51 const syncer::ImmutableChangeRecordList& changes) OVERRIDE; 53 // Commit changes buffered during ApplyChanges. We must commit them to the 59 // Stop processing changes and wait for being destroyed. 73 // The model we are processing changes from. This is owned by the 88 // If disconnected is true, local/sync changes are dropped without modifying
|
session_change_processor.h | 30 // This class is responsible for taking changes from the 59 const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
|
password_change_processor.cc | 75 PasswordStoreChangeList* changes = local 77 for (PasswordStoreChangeList::iterator change = changes->begin(); 78 change != changes->end(); ++change) { 168 const syncer::ImmutableChangeRecordList& changes) { 186 changes.Get().begin(); it != changes.Get().end(); ++it) {
|
/external/chromium_org/chrome/browser/value_store/ |
value_store_change.h | 23 static std::string ToJson(const ValueStoreChangeList& changes);
|
value_store.h | 50 // Ownership of |changes| taken. 51 explicit WriteResultType(ValueStoreChangeList* changes); 55 // Gets the list of changes to the settings which resulted from the write. 57 const ValueStoreChangeList& changes() const; 82 // Don't generate the changes for a WriteResult. 86 // result in an empty |old_value| in the WriteResult::changes list.
|
leveldb_value_store.cc | 215 scoped_ptr<ValueStoreChangeList> changes(new ValueStoreChangeList()); 216 error = AddToBatch(options, key, value, &batch, changes.get()); 218 return WriteFailureForKey("find changes to set", key, error); 223 return MakeWriteResult(changes.release()); 235 scoped_ptr<ValueStoreChangeList> changes(new ValueStoreChangeList()); 238 error = AddToBatch(options, it.key(), it.value(), &batch, changes.get()); 240 return WriteFailureForKey("find changes to set multiple items", 249 return MakeWriteResult(changes.release()); 266 scoped_ptr<ValueStoreChangeList> changes(new ValueStoreChangeList()); 273 return WriteFailureForKey("find changes to remove multiple items" [all...] |
/external/chromium_org/content/browser/dom_storage/ |
session_storage_database_unittest.cc | 394 DOMStorageValuesMap changes; local 395 changes[kKey1] = kValue1; 396 changes[kKey2] = kValue2; 397 changes[kKey3] = kValue3; 401 EXPECT_TRUE(db_->CommitAreaChanges(kNamespace1, kOrigin1, false, changes)); 408 DOMStorageValuesMap changes; local 409 changes[kKey1] = kValue4; 410 changes[kKey3] = kValueNull; 413 EXPECT_TRUE(db_->CommitAreaChanges(kNamespace1, kOrigin1, false, changes)); 420 DOMStorageValuesMap changes; local 511 DOMStorageValuesMap changes; local 597 DOMStorageValuesMap changes; local 701 DOMStorageValuesMap changes; local [all...] |
/external/chromium_org/sync/internal_api/ |
change_reorder_buffer.h | 25 // of changes (via its Push methods), and yields an ImmutableChangeRecordList 56 // to reorder a new set of changes. 61 // Output a reordered list of changes to |changes| using the items 67 ImmutableChangeRecordList* changes) WARN_UNUSED_RESULT;
|
js_mutation_event_observer.h | 49 const ImmutableChangeRecordList& changes) OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/ |
parseDiff.pl | 79 Property changes on: test_file.swf 115 Property changes on: test_file.swf 277 # Property Changes: Simple 293 Property changes on: Makefile 335 Property changes on: Makefile.shared 359 "Property changes on: Makefile.shared\n"], 366 Property changes on: Makefile 393 Property changes on: Makefile 428 Property changes on: NMakefile 447 Property changes on: Makefil [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ExtractIncludeRefactoringTest.java | 147 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local 149 assertTrue(changes.size() >= 3); 160 checkEdits(changes, fileToGolden, createDiffs); 163 for (Change change : changes) {
|
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_table.h | 140 // is returned in the changes out parameter. 142 std::vector<AutofillChange>* changes); 145 // of all added and updated autofill entries is returned in the changes out 148 std::vector<AutofillChange>* changes); 166 // changes out parameter. 169 std::vector<AutofillChange>* changes); 175 bool RemoveExpiredFormElements(std::vector<AutofillChange>* changes); 353 std::vector<AutofillChange>* changes, 356 std::vector<AutofillChange>* changes,
|
/external/chromium_org/chrome/browser/notifications/sync_notifier/ |
chrome_notifier_service_unittest.cc | 135 // Store a copy of all the changes passed in so we can examine them later. 161 // Track the changes received in ProcessSyncChanges. 183 // The recipient of all sync changes. 281 // Process sync changes when there is no local data. 295 SyncChangeList changes; local 296 changes.push_back(CreateSyncChange( 299 changes.push_back(CreateSyncChange( 302 changes.push_back(CreateSyncChange( 306 notifier.ProcessSyncChanges(FROM_HERE, changes); 313 // Process sync changes when there is no local data 337 SyncChangeList changes; local 383 SyncChangeList changes; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/docs/ |
make.bat | 24 echo. changes to make an overview over all changed/added/deprecated items
90 if "%1" == "changes" (
91 %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes
93 echo.The overview file is in %BUILDDIR%/changes.
|
/external/mesa3d/src/gallium/docs/ |
make.bat | 24 echo. changes to make an overview over all changed/added/deprecated items 90 if "%1" == "changes" ( 91 %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes 93 echo.The overview file is in %BUILDDIR%/changes.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
NewProjectWizard.java | 312 List<Change> changes = computeChanges(); 313 if (!changes.isEmpty()) { 314 monitor.beginTask("Creating project...", changes.size()); 317 changes.toArray(new Change[changes.size()])); 397 List<Change> changes = activityTemplate.render(project, parameters); local 398 if (!changes.isEmpty()) { 399 monitor.beginTask("Creating template...", changes.size()); 402 changes.toArray(new Change[changes.size()])) [all...] |