HomeSort by relevance Sort by last modified time
    Searched refs:changes (Results 26 - 50 of 208) sorted by null

12 3 4 5 6 7 8 9

  /frameworks/base/core/java/android/view/
WindowManager.java 406 * changes the system volume.
661 * This flag changes the behavior of touch focus for this window only.
1276 int changes = 0; local
    [all...]
  /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);
theme_change_processor.cc 61 const sync_api::SyncManager::ChangeRecord* changes,
68 // generates multiple changes. When we fix syncapi to not do that,
78 LOG(WARNING) << change_count << " theme changes detected; "
82 changes[change_count - 1];
  /external/chromium/chrome/browser/sync/
js_sync_manager_observer.h 30 const sync_api::SyncManager::ChangeRecord* changes,
js_sync_manager_observer.cc 28 const sync_api::SyncManager::ChangeRecord* changes,
36 change_values->Append(changes[i].ToValue(trans));
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseDiff.pl 78 Property changes on: test_file.swf
114 Property changes on: test_file.swf
273 # Property Changes: Simple
289 Property changes on: Makefile
330 Property changes on: Makefile.shared
353 "Property changes on: Makefile.shared\n"],
360 Property changes on: Makefile
387 Property changes on: Makefile
422 Property changes on: NMakefile
441 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) {
ChangeLayoutRefactoringTest.java 128 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
129 checkEdits(basename, changes);
ExtractStyleRefactoringTest.java 210 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
211 assertEquals(expectedModifiedFileCount, changes.size());
219 checkEdits(changes, fileToGolden, true);
222 for (Change change : changes) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeRenameParticipant.java 23 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutChange;
24 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutChangeDescription;
25 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutFileChanges;
26 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidTypeRenameChange;
188 * Adds layout changes for project
203 Set<AndroidLayoutChangeDescription> changes = parse(file, className); local
204 if (changes.size() > 0) {
206 fileChange.getChanges().addAll(changes);
224 Set<AndroidLayoutChangeDescription> changes = new HashSet<AndroidLayoutChangeDescription>(); local
260 changes.add(layoutChange)
    [all...]
AndroidPackageRenameParticipant.java 23 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutChange;
24 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutChangeDescription;
25 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutFileChanges;
26 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidPackageRenameChange;
56 import org.eclipse.jdt.internal.corext.refactoring.changes.RenamePackageChange;
288 * Adds layout changes for project
310 Set<AndroidLayoutChangeDescription> changes = local
312 if (changes.size() > 0) {
315 fileChange.getChanges().addAll(changes);
334 Set<AndroidLayoutChangeDescription> changes local
    [all...]
AndroidTypeMoveParticipant.java 23 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutChange;
24 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutChangeDescription;
25 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidLayoutFileChanges;
26 import com.android.ide.eclipse.adt.internal.refactoring.changes.AndroidTypeMoveChange;
227 * Adds layout changes for project
242 Set<AndroidLayoutChangeDescription> changes = parse(file, className); local
243 if (changes.size() > 0) {
245 fileChange.getChanges().addAll(changes);
263 Set<AndroidLayoutChangeDescription> changes = new HashSet<AndroidLayoutChangeDescription>(); local
298 changes.add(layoutChange)
    [all...]
  /external/chromium/third_party/libevent/
devpoll.c 68 struct pollfd *changes; member in struct:devpollop
97 if (pwrite(devpollop->dpfd, devpollop->changes,
118 pfd = &devpollop->changes[devpollop->nchanges++];
171 devpollop->changes = calloc(nfiles, sizeof(struct pollfd));
172 if (devpollop->changes == NULL) {
410 if (devpollop->changes)
411 free(devpollop->changes);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncFragment.java 142 HashMap<Long, CalendarRow> changes = ((SelectCalendarsSyncAdapter) listAdapter) local
144 if (changes != null && changes.size() > 0) {
145 for (CalendarRow row : changes.values()) {
160 changes.clear();
  /external/icu4c/data/translit/
trnsfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re
  /external/webkit/LayoutTests/storage/domstorage/events/script-tests/
case-sensitive.js 1 description("Verify that storage events fire even when only the case of the value changes.");
  /frameworks/base/services/java/com/android/server/
AttributeCache.java 85 int changes = mConfiguration.updateFrom(config); local
86 if ((changes & ~(ActivityInfo.CONFIG_FONT_SCALE |
  /external/mesa3d/docs/
MESA_resize_buffers.spec 39 changes.
42 when a window size changes but would still like Mesa to adjust to
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidLayoutChangeDescription.java 17 package com.android.ide.eclipse.adt.internal.refactoring.changes;
20 * This class describes the text changes of android layout files
  /external/chromium/base/
process_util_unittest.cc 541 base::environment_vector changes; local
544 e = base::AlterEnvironment(changes, empty);
548 changes.push_back(std::make_pair(std::string("A"), std::string("1")));
549 e = base::AlterEnvironment(changes, empty);
554 changes.clear();
555 changes.push_back(std::make_pair(std::string("A"), std::string("")));
556 e = base::AlterEnvironment(changes, empty);
560 changes.clear();
561 e = base::AlterEnvironment(changes, a2);
566 changes.clear()
    [all...]

Completed in 645 milliseconds

12 3 4 5 6 7 8 9