HomeSort by relevance Sort by last modified time
    Searched defs:changes (Results 1 - 25 of 350) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libchrome/base/
environment_unittest.cc 97 EnvironmentMap changes; local
100 e = AlterEnvironment(empty, changes);
103 changes[L"A"] = L"1";
104 e = AlterEnvironment(empty, changes);
107 changes.clear();
108 changes[L"A"] = string16();
109 e = AlterEnvironment(empty, changes);
112 changes.clear();
113 e = AlterEnvironment(a2, changes);
116 changes.clear()
132 EnvironmentMap changes; local
    [all...]
  /prebuilts/go/darwin-x86/src/sort/
example_multi_test.go 12 // A Change is a record of source code changes, recording user, language, and delta size.
21 // multiSorter implements the Sort interface, sorting the changes within.
23 changes []Change
28 func (ms *multiSorter) Sort(changes []Change) {
29 ms.changes = changes
43 return len(ms.changes)
48 ms.changes[i], ms.changes[j] = ms.changes[j], ms.changes[i
77 var changes = []Change{ var
    [all...]
  /prebuilts/go/linux-x86/src/sort/
example_multi_test.go 12 // A Change is a record of source code changes, recording user, language, and delta size.
21 // multiSorter implements the Sort interface, sorting the changes within.
23 changes []Change
28 func (ms *multiSorter) Sort(changes []Change) {
29 ms.changes = changes
43 return len(ms.changes)
48 ms.changes[i], ms.changes[j] = ms.changes[j], ms.changes[i
77 var changes = []Change{ var
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplatePreviewPage.java 32 setDescription("Optionally review pending changes");
38 List<Change> changes = mValues.computeChanges(); local
40 changes.toArray(new Change[changes.size()]));
NewTemplateWizardState.java 146 /** Computes the changes this wizard will make */
166 List<Change> changes = getTemplateHandler().render(project, parameters); local
171 changes.add(new NullChange(title) {
184 return changes;
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/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralFormatTest.java 28 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) {
34 String lastValue = (String) changes.get(new Integer(0));
38 if (changes.get(new Integer(i)) != null) {
45 lastValue = (String) changes.get(new Integer(i));
55 String expected = (String) changes.get(new Integer(0));
57 String value = changes.get(n);
74 Map changes = new HashMap(); local
75 changes.put(new Integer(0), "other");
76 helperTestRules(localeIDs, testPattern, changes);
84 Map changes = new HashMap() local
95 Map changes = new HashMap(); local
105 Map changes = new HashMap(); local
130 Map changes = new HashMap(); local
142 Map changes = new HashMap(); local
156 Map changes = new HashMap(); local
176 Map changes = new HashMap(); local
196 Map changes = new HashMap(); local
227 Map changes = new HashMap(); local
239 Map changes = new HashMap(); local
258 Map changes = new HashMap(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ChangeViewRefactoringTest.java 56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
57 checkEdits(basename, changes);
UnwrapRefactoringTest.java 55 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
56 checkEdits(basename, changes);
WrapInRefactoringTest.java 56 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
57 checkEdits(basename, changes);
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 133 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
134 checkEdits(basename, changes);
UseCompoundDrawableRefactoringTest.java 105 List<Change> changes = refactoring.computeChanges(new NullProgressMonitor()); local
108 changes.toArray(new Change[changes.size()]));
112 checkEdits(basename, changes);
  /external/libevent/
devpoll.c 57 struct pollfd *changes; member in struct:devpollop
88 if (pwrite(devpollop->dpfd, devpollop->changes,
109 pfd = &devpollop->changes[devpollop->nchanges++];
151 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd));
152 if (devpollop->changes == NULL) {
299 if (devpollop->changes)
300 mm_free(devpollop->changes);
kqueue.c 70 struct kevent *changes; member in struct:kqop
132 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent));
133 if (kqueueop->changes == NULL)
141 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]);
142 kqueueop->changes[0].ident = -1;
143 kqueueop->changes[0].filter = EVFILT_READ;
144 kqueueop->changes[0].flags = EV_ADD;
151 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 ||
209 struct event_change *in_ch = &changelist->changes[i]
260 struct kevent *changes; local
    [all...]
  /external/selinux/libsepol/src/
genbools.c 74 int errors = 0, changes = 0; local
104 changes++;
136 changes++;
145 *changesp = changes;
153 int rc, changes = 0; local
160 if (load_booleans(&policydb, booleans, &changes) < 0) {
164 if (!changes)
197 int rc, changes = 0; local
199 rc = load_booleans(policydb, booleans, &changes);
200 if (!rc && changes)
    [all...]
  /frameworks/native/services/vr/virtual_touchpad/
VirtualTouchpadEvdev.cpp 141 const int changes = touchpad.last_motion_event_buttons ^ buttons; local
142 if (!changes) {
148 ALOGV("change %X from %X to %X", changes, touchpad.last_motion_event_buttons,
155 if (changes & AMOTION_EVENT_BUTTON_BACK) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralFormatTest.java 27 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) {
33 String lastValue = (String) changes.get(new Integer(0));
37 if (changes.get(new Integer(i)) != null) {
44 lastValue = (String) changes.get(new Integer(i));
54 String expected = (String) changes.get(new Integer(0));
56 String value = changes.get(n);
73 Map changes = new HashMap(); local
74 changes.put(new Integer(0), "other");
75 helperTestRules(localeIDs, testPattern, changes);
83 Map changes = new HashMap() local
94 Map changes = new HashMap(); local
104 Map changes = new HashMap(); local
129 Map changes = new HashMap(); local
141 Map changes = new HashMap(); local
155 Map changes = new HashMap(); local
175 Map changes = new HashMap(); local
195 Map changes = new HashMap(); local
226 Map changes = new HashMap(); local
238 Map changes = new HashMap(); local
257 Map changes = new HashMap(); local
    [all...]
  /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();
  /external/syslinux/core/lwip/src/netif/ppp/
vj.c 147 register u_int changes = 0; local
269 * receiver expects changes in the order: urgent, window,
276 changes |= NEW_U;
287 changes |= NEW_W;
296 changes |= NEW_A;
305 changes |= NEW_S;
308 switch(changes) {
328 * actual changes match one of our special case encodings --
336 changes = SPECIAL_I;
344 changes = SPECIAL_D
472 u_int vjlen, hlen, changes; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AttributeCache.java 107 int changes = mConfiguration.updateFrom(config); local
108 if ((changes & ~(ActivityInfo.CONFIG_FONT_SCALE |
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 178 List<Change> changes = new ArrayList<Change>(); local
180 return changes;
225 changes.add(change);
226 return changes;
  /frameworks/base/core/java/com/android/internal/widget/
DefaultItemAnimator.java 142 final ArrayList<ChangeInfo> changes = new ArrayList<>(); local
143 changes.addAll(mPendingChanges);
144 mChangesList.add(changes);
149 for (ChangeInfo change : changes) {
152 changes.clear();
153 mChangesList.remove(changes);
157 ViewHolder holder = changes.get(0).oldHolder;
324 // run a move animation to handle position changes.
462 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
463 endChangeAnimation(changes, item)
623 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 141 final ArrayList<ChangeInfo> changes = new ArrayList<>(); local
142 changes.addAll(mPendingChanges);
143 mChangesList.add(changes);
148 for (ChangeInfo change : changes) {
151 changes.clear();
152 mChangesList.remove(changes);
156 ViewHolder holder = changes.get(0).oldHolder;
323 // run a move animation to handle position changes.
461 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
462 endChangeAnimation(changes, item)
622 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
    [all...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/
StrequentsItemAnimator.java 29 * Branch from {@link android.support.v7.widget.DefaultItemAnimator} with changes on
133 final ArrayList<ChangeInfo> changes = new ArrayList<ChangeInfo>(); local
134 changes.addAll(mPendingChanges);
135 mChangesList.add(changes);
140 for (ChangeInfo change : changes) {
143 changes.clear();
144 mChangesList.remove(changes);
148 ViewHolder holder = changes.get(0).oldHolder;
453 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
454 endChangeAnimation(changes, item)
603 ArrayList<ChangeInfo> changes = mChangesList.get(i); local
    [all...]

Completed in 602 milliseconds

1 2 3 4 5 6 7 8 91011>>