HomeSort by relevance Sort by last modified time
    Searched refs:changes (Results 226 - 250 of 658) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/file_manager/file_manager/audio_player/js/
audio_player_model.js 73 // Installs observer to watch changes of the values.
  /external/chromium_org/ui/keyboard/resources/
voice_input.js 42 * are any changes to interim or final results.
  /external/icu/icu4c/source/data/brkitr/
brkfiles.mk 11 # Then, you can have your local changes remain even if you upgrade or
  /external/libusb-compat/libusb/
core.c 244 int changes = 0; local
286 changes++;
301 changes++;
305 return changes;
572 int changes = 0; local
618 changes++;
638 changes++;
644 return changes;
  /external/lldb/scripts/
sed-sources 24 option to preview changes to STDOUT, or use the B<-b> option to make a backup
50 Preview changes to STDOUT without modifying original source files.
89 our $opt_p = 0; # Preview changes to STDOUT?
  /hardware/qcom/display/msm8974/
common.mk 39 # This flag is used to compile out any features that depend on framework changes
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 1 """Fix changes imports of urllib which are now incompatible.
51 for old_module, changes in MAPPING.items():
52 for change in changes:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 1 """Fix changes imports of urllib which are now incompatible.
51 for old_module, changes in MAPPING.items():
52 for change in changes:
  /external/chromium_org/chrome/browser/prefs/
pref_model_associator.cc 253 // changes from other Chrome installs of previous versions and migrate
573 return; // These are changes originating from us, ignore.
575 // We only process changes if we've already associated models.
587 syncer::SyncChangeList changes;
593 // (which we continue to update with sync changes).
605 InitPrefAndAssociate(syncer::SyncData(), name, &changes, NULL); local
613 changes.push_back(
632 changes.push_back(
638 sync_processor_->ProcessSyncChanges(FROM_HERE, changes);
  /external/chromium_org/components/password_manager/core/browser/
password_syncable_service.cc 159 // Changes from password db that need to be propagated to sync.
232 "Failed to process sync changes for passwords datatype.");
304 PasswordStoreChangeList changes; local
307 &changes);
310 &changes);
313 &changes);
316 // we use internal password store interfaces to make changes synchronously.
317 password_store_->NotifyLoginsChanged(changes);
password_store_default_unittest.cc 44 void(const PasswordStoreChangeList& changes));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoring.java 206 List<Change> changes = new ArrayList<Change>(); local
208 return changes;
248 return changes;
372 changes.add(change);
373 return changes;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/managed_bookmarks/
background.js 130 // bookmarks.onRemoved is triggered after the changes have been persisted.
310 // Start observing policy changes. The tree is reloaded since this may be
312 chrome.storage.onChanged.addListener(function(changes, namespace) {
316 Object.keys(changes).forEach(function(policyName) {
317 tree.update(policyToNodeId[policyName], changes[policyName].newValue);
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_autofill_unittest.cc 278 void OnAutofillEntriesChanged(const AutofillChangeList& changes) {
284 changes);
292 void OnAutofillProfileChanged(const AutofillProfileChange& changes) {
298 changes);
1213 AutofillChangeList changes; local
1270 AutofillChangeList changes; local
1296 AutofillChangeList changes; local
    [all...]
profile_sync_service_typed_url_unittest.cc 852 history::URLsDeletedDetails changes; local
889 history::URLsDeletedDetails changes; local
932 history::URLsDeletedDetails changes; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/wfd/
WifiDisplaySettings.java 210 private void scheduleUpdate(int changes) {
215 mPendingChanges |= changes;
226 private void update(int changes) {
230 if ((changes & CHANGE_SETTINGS) != 0) {
243 if ((changes & CHANGE_WIFI_DISPLAY_STATUS) != 0) {
595 final int changes = mPendingChanges;
597 update(changes);
  /frameworks/native/services/inputflinger/
InputReader.h 121 // Describes changes that have occurred.
364 * The changes flag is a bitfield that indicates what has changed and whether
366 virtual void requestRefreshConfiguration(uint32_t changes) = 0;
436 virtual void requestRefreshConfiguration(uint32_t changes);
515 void refreshConfigurationLocked(uint32_t changes);
562 void configure(nsecs_t when, const InputReaderConfiguration* config, uint32_t changes);
941 * - configure with 0 changes
943 * - process, process, process (may occasionally reconfigure with non-zero changes or reset)
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_shared_settings_service.cc 121 SyncChangeList changes; local
122 changes.push_back(SyncChange(FROM_HERE, change_type, data));
123 SyncError error = sync_processor_->ProcessSyncChanges(FROM_HERE, changes);
256 // Process all the accumulated changes.
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_table.cc 529 std::vector<AutofillChange>* changes) {
530 return AddFormFieldValuesTime(elements, changes, Time::Now());
534 std::vector<AutofillChange>* changes) {
535 return AddFormFieldValueTime(element, changes, Time::Now());
590 std::vector<AutofillChange>* changes) {
690 *changes = tentative_changes;
695 std::vector<AutofillChange>* changes) {
721 *changes = tentative_changes;
727 std::vector<AutofillChange>* changes,
740 result = result && AddFormFieldValueTime(*itr, changes, time)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
change_list_processor_unittest.cc 118 // Applies the |changes| to |metadata_| as a full resource list of changestamp
120 FileError ApplyFullResourceList(ScopedVector<ChangeList> changes) {
128 changes.Pass(),
132 // Applies the |changes| to |metadata_| as a delta update. Delta changelists
134 FileError ApplyChangeList(ScopedVector<ChangeList> changes,
143 changes.Pass(),
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_change_processor.h 31 // This class is responsible for taking changes from the BookmarkModel
73 // The change processor implementation, responsible for applying changes from
78 const syncer::ImmutableChangeRecordList& changes) OVERRIDE;
212 // The bookmark model we are processing changes from. Non-NULL when
  /external/chromium_org/chrome/browser/ui/passwords/
password_manager_presenter.cc 64 const password_manager::PasswordStoreChangeList& changes) {
  /external/chromium_org/chrome/common/extensions/docs/server2/
host_file_system_provider.py 76 changes.
  /external/chromium_org/components/dom_distiller/core/
dom_distiller_store.h 63 // user (i.e. of DomDistillerStore). No changes are accepted while the local
64 // database is loading. Once the local database has loaded, changes from any of
65 // the three sources (technically just two, since changes don't come from the
70 // conflict resolution for normal changes-- (changes_missing).
130 // Convert a SyncDataList to a SyncChangeList of add or update changes based
141 // Applies the changes to |model_|. If the model returns an error, disables
142 // syncing and database changes and returns false.
147 void NotifyObservers(const syncer::SyncChangeList& changes);
  /external/chromium_org/content/browser/dom_storage/
session_storage_database.h 51 // in |changes| will be examined - keys mapped to a null NullableString16 will
58 const DOMStorageValuesMap& changes);

Completed in 1507 milliseconds

1 2 3 4 5 6 7 8 91011>>