/external/chromium_org/chrome/common/extensions/ |
PRESUBMIT.py | 5 """Presubmit script for changes affecting extensions. 126 changes = '' 130 changes = ('%s\nLine %d:\n-%s\n+%s\n' % 131 (changes, i + 1, line1, line2)) 132 if changes: 136 'convert them manually.\n\nSuggested changes are: %s' % 137 (name, changes)))
|
/external/chromium_org/content/browser/dom_storage/ |
dom_storage_database.cc | 74 const DOMStorageValuesMap& changes) { 75 if (!LazyOpen(!changes.empty())) { 76 // If we're being asked to commit changes that will result in an 78 return clear_all_first && changes.empty() && 95 DOMStorageValuesMap::const_iterator it = changes.begin(); 96 for(; it != changes.end(); ++it) {
|
dom_storage_database.h | 39 // |changes| will be examined - keys mapped to a null NullableString16 41 bool CommitChanges(bool clear_all_first, const DOMStorageValuesMap& changes);
|
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/ |
SelectCalendarsSyncFragment.java | 82 // We don't need our own sync changes to trigger refreshes. 160 HashMap<Long, CalendarRow> changes = ((SelectCalendarsSyncAdapter) listAdapter) local 162 if (changes != null && changes.size() > 0) { 163 for (CalendarRow row : changes.values()) { 178 changes.clear();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateWizard.java | 161 * Computes the changes to the {@link #getProject()} this template should 164 * @return the changes to perform 169 List<Change> changes = computeChanges(); local 170 if (!changes.isEmpty()) { 171 monitor.beginTask("Creating template...", changes.size()); 174 changes.toArray(new Change[changes.size()]));
|
/external/chromium_org/third_party/libvpx/source/libvpx/tools/ |
ftfy.sh | 14 -n, --dry-run Shows a diff of the changes to be made. 15 --amend Squashes the changes into the commit at HEAD 17 --commit Creates a new commit containing only the whitespace changes 112 log "Working tree is dirty, commit your changes first" 154 log "Formatting changes applied, verify and commit."
|
/external/libvpx/libvpx/tools/ |
ftfy.sh | 14 -n, --dry-run Shows a diff of the changes to be made. 15 --amend Squashes the changes into the commit at HEAD 17 --commit Creates a new commit containing only the whitespace changes 112 log "Working tree is dirty, commit your changes first" 154 log "Formatting changes applied, verify and commit."
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
ftfy.sh | 14 -n, --dry-run Shows a diff of the changes to be made. 15 --amend Squashes the changes into the commit at HEAD 17 --commit Creates a new commit containing only the whitespace changes 112 log "Working tree is dirty, commit your changes first" 154 log "Formatting changes applied, verify and commit."
|
/external/chromium_org/components/dom_distiller/core/ |
dom_distiller_store.cc | 205 void DomDistillerStore::NotifyObservers(const syncer::SyncChangeList& changes) { 206 if (observers_.might_have_observers() && changes.size() > 0) { 208 for (SyncChangeList::const_iterator it = changes.begin(); 209 it != changes.end(); ++it) { 236 void DomDistillerStore::ApplyChangesToModel(const SyncChangeList& changes, 239 model_.ApplyChangesToModel(changes, changes_applied, changes_missing);
|
/external/chromium_org/chrome/browser/extensions/api/storage/ |
settings_sync_unittest.cc | 88 // SyncChangeProcessor which just records the changes made, accessed after 89 // being converted to the more useful SettingSyncData via changes(). 119 const SettingSyncDataList& changes() { return changes_; } function in class:extensions::__anon8382::MockSyncChangeProcessor 141 ADD_FAILURE() << "No matching changes for " << extension_id << "/" << 150 ADD_FAILURE() << matching_changes.size() << " matching changes for " << 291 EXPECT_EQ(0u, sync_processor_->changes().size()); 329 // Already in sync, so no changes. 330 EXPECT_EQ(0u, sync_processor_->changes().size()); 335 EXPECT_EQ(0u, sync_processor_->changes().size()); 338 EXPECT_EQ(1u, sync_processor_->changes().size()) [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
native_backend_kwallet_x.cc | 281 password_manager::PasswordStoreChangeList changes; local 286 changes.push_back(password_manager::PasswordStoreChange( 294 changes.push_back(password_manager::PasswordStoreChange( 299 changes.clear(); 301 return changes; 306 password_manager::PasswordStoreChangeList* changes) { 307 DCHECK(changes); 308 changes->clear(); 327 changes->push_back(password_manager::PasswordStoreChange( 362 password_manager::PasswordStoreChangeList* changes) { [all...] |
native_backend_gnome_x.cc | 564 password_manager::PasswordStoreChangeList changes; local 572 changes.push_back(password_manager::PasswordStoreChange( 577 changes.push_back(password_manager::PasswordStoreChange( 580 return changes; 585 password_manager::PasswordStoreChangeList* changes) { 593 DCHECK(changes); 594 changes->clear(); 621 changes->push_back(change); 648 password_manager::PasswordStoreChangeList* changes) { 650 delete_begin, delete_end, CREATION_TIMESTAMP, changes); [all...] |
/external/chromium_org/chrome/browser/sync_file_system/local/ |
local_file_change_tracker.h | 38 // Tracks local file changes for cloud-backed file systems. 68 // Retrieves an array of |url| which have more than one pending changes. 71 // change_seq numbers (i.e. older changes). 75 // Returns all changes recorded for the given |url|. 76 // Note that this also returns demoted changes. 79 FileChangeList* changes); 81 // Clears the pending changes recorded in this tracker for |url|. 85 // Note that new changes are recorded to the mirror too. 91 // Resets the changes to the ones recorded in mirror for |url|, and 95 // Re-inserts changes into the separate demoted_changes_ queue. They won' [all...] |
local_file_sync_service_unittest.cc | 57 const FileChangeList& changes) { 62 ASSERT_TRUE(changes.empty()); 95 ACTION_P2(MockStatusCallbackAndRecordChange, status, changes) { 98 changes->push_back(arg0); 481 std::vector<FileChange> changes; local 484 .WillOnce(MockStatusCallbackAndRecordChange(SYNC_STATUS_OK, &changes)) 485 .WillOnce(MockStatusCallbackAndRecordChange(SYNC_STATUS_OK, &changes)); 498 EXPECT_EQ(2U, changes.size()); 500 changes[0]); local 503 changes[1]) local 571 std::vector<FileChange> changes; local [all...] |
/external/chromium_org/chrome/browser/webdata/ |
autocomplete_syncable_service.h | 78 const autofill::AutofillChangeList& changes) OVERRIDE; 94 // Helper to persist any changes that occured during model association to 140 // Syncs |changes| to the cloud. 141 void ActOnChanges(const autofill::AutofillChangeList& changes);
|
/external/chromium_org/third_party/icu/source/data/translit/ |
trnsfiles.mk | 10 # Then, you can have your local changes remain even if you upgrade or re
|
/external/chromium_org/v8/tools/push-to-trunk/ |
auto_roll.py | 25 def ContainsChromiumRoll(changes): 26 for change in changes:
|
/external/icu/icu4c/source/data/translit/ |
trnsfiles.mk | 10 # Then, you can have your local changes remain even if you upgrade or re
|
/frameworks/base/services/core/java/com/android/server/ |
AttributeCache.java | 86 int changes = mConfiguration.updateFrom(config); local 87 if ((changes & ~(ActivityInfo.CONFIG_FONT_SCALE |
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ChangeLayoutRefactoringTest.java | 133 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local 134 checkEdits(basename, changes);
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
braille_text_handler.js | 13 * @fileoverview Updates braille display contents following text changes. 34 * Called by controller class when text changes.
|
/external/chromium_org/chrome/browser/sync/glue/ |
synced_device_tracker.h | 31 // Observer class for listening to device info changes. 42 const syncer::ImmutableChangeRecordList& changes) OVERRIDE; 82 // The |ObserverList| has to be thread safe as the changes happen
|
typed_url_change_processor.h | 42 // This class is responsible for taking changes from the history backend and 64 const syncer::ImmutableChangeRecordList& changes) OVERRIDE; 66 // Commit changes here, after we've released the transaction lock to avoid 70 // Stop processing changes and wait for being destroyed. 86 // notification. We use this to throttle the number of sync changes we send 103 // The model we are processing changes from. This is owned by the 113 // The set of pending changes that will be written out on the next
|
/external/chromium_org/chrome/browser/ui/passwords/ |
manage_passwords_ui_controller.h | 54 const password_manager::PasswordStoreChangeList& changes) OVERRIDE; 147 // determine which PasswordStore changes we should care about when updating
|
password_manager_presenter.h | 26 // PasswordStore operations and updates the view on PasswordStore changes. 36 const password_manager::PasswordStoreChangeList& changes) OVERRIDE;
|