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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralFormatTest.java 35 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) {
41 String lastValue = (String) changes.get(new Integer(0));
45 if (changes.get(new Integer(i)) != null) {
52 lastValue = (String) changes.get(new Integer(i));
62 String expected = changes.get(new Integer(0));
64 String value = changes.get(n);
81 Map changes = new HashMap(); local
82 changes.put(new Integer(0), "other");
83 helperTestRules(localeIDs, testPattern, changes);
91 Map changes = new HashMap() local
102 Map changes = new HashMap(); local
112 Map changes = new HashMap(); local
137 Map changes = new HashMap(); local
149 Map changes = new HashMap(); local
163 Map changes = new HashMap(); local
183 Map changes = new HashMap(); local
203 Map changes = new HashMap(); local
234 Map changes = new HashMap(); local
246 Map changes = new HashMap(); local
265 Map changes = new HashMap(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralFormatTest.java 32 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) {
38 String lastValue = (String) changes.get(new Integer(0));
42 if (changes.get(new Integer(i)) != null) {
49 lastValue = (String) changes.get(new Integer(i));
59 String expected = changes.get(new Integer(0));
61 String value = changes.get(n);
78 Map changes = new HashMap(); local
79 changes.put(new Integer(0), "other");
80 helperTestRules(localeIDs, testPattern, changes);
88 Map changes = new HashMap() local
99 Map changes = new HashMap(); local
109 Map changes = new HashMap(); local
134 Map changes = new HashMap(); local
146 Map changes = new HashMap(); local
160 Map changes = new HashMap(); local
180 Map changes = new HashMap(); local
200 Map changes = new HashMap(); local
231 Map changes = new HashMap(); local
243 Map changes = new HashMap(); local
262 Map changes = new HashMap(); local
    [all...]
  /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...]
environment.h 57 // and the list of changes given in |changes|. Each key in the environment is
67 const EnvironmentMap& changes);
84 const EnvironmentMap& changes);
  /external/python/cpython3/Lib/idlelib/idle_test/
test_configdialog.py 25 # pending changes that mirrors the multilevel user config dict.
27 changes = [] variable
30 changes.append(args)
54 changes.clear()
66 self.assertEqual(changes, expected)
67 changes.clear()
73 self.assertEqual(changes, expected)
74 changes.clear()
80 self.assertEqual(changes, expected)
86 self.assertEqual(changes, [('main', 'Indent', 'num-spaces', 6)]
    [all...]
  /external/ImageMagick/PerlMagick/demo/
lsys.pl 26 $turtle->forward($changes->{"distance"},
27 $changes->{"motionsub"});
29 '-' => sub{ $turtle->turn(-$changes->{"dtheta"}); }, # counter-clockwise
30 '+' => sub{ $turtle->turn($changes->{"dtheta"}); }, # Turn clockwise
34 '{' => sub{ @poly = (); $changes=\%polychanges; }, # Begin polygon
38 $changes = \%stemchanges;
tree.pl 31 $changes = \%stemchanges;
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
NodeListTest.java 46 private AstObserver createObserver(List<String> changes) {
50 changes.add(String.format("change of property %s for %s: from '%s' to '%s'", property, observedNode, oldValue, newValue));
55 changes.add(String.format("setting parent for %s: was %s, now is %s", observedNode, previousParent, newParent));
60 changes.add(String.format("'%s' %s in list at %d", nodeAddedOrRemoved, type, index));
65 changes.add(String.format("'%s' %s in list at %d", oldNode, ListChangeType.REMOVAL, index));
66 changes.add(String.format("'%s' %s in list at %d", newNode, ListChangeType.ADDITION, index));
77 List<String> changes = new LinkedList<>();
81 cd.getMembers().register(createObserver(changes));
86 "'int c;' ADDITION in list at 3"), changes);
91 List<String> changes = new LinkedList<>()
    [all...]
NodeTest.java 55 List<String> changes = new ArrayList<>(); local
59 changes.add(String.format("%s.%s changed from %s to %s", observedNode.getClass().getSimpleName(), property.name().toLowerCase(), oldValue, newValue));
64 assertEquals(Arrays.asList(), changes); local
67 assertEquals(Arrays.asList("ClassOrInterfaceDeclaration.name changed from A to MyCoolClass"), changes);
72 "VariableDeclarator.type changed from int to boolean"), changes);
78 "Parameter.name changed from p to myParam"), changes);
85 List<String> changes = new ArrayList<>(); local
89 changes.add(String.format("%s.%s changed from %s to %s", observedNode.getClass().getSimpleName(), property.name().toLowerCase(), oldValue, newValue));
94 assertEquals(Arrays.asList(), changes); local
97 assertEquals(Arrays.asList("ClassOrInterfaceDeclaration.name changed from A to MyCoolClass"), changes);
113 List<String> changes = new ArrayList<>(); local
122 assertEquals(Arrays.asList(), changes); local
149 List<String> changes = new ArrayList<>(); local
158 assertEquals(Arrays.asList(), changes); local
188 List<String> changes = new ArrayList<>(); local
206 List<String> changes = new ArrayList<>(); local
218 assertEquals(Arrays.asList(), changes); local
225 List<String> changes = new ArrayList<>(); local
    [all...]
  /development/tools/findunused/
findunusedtranslations 59 $changes = 0;
66 $changes = 1;
72 $changes = 1;
78 $changes = 1;
96 if ($changes) {
101 print "(no changes)\n";
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/observer/
PropagatingAstObserverTest.java 41 List<String> changes = new ArrayList<>(); local
45 changes.add(String.format("%s.%s changed from %s to %s", observedNode.getClass().getSimpleName(), property.name().toLowerCase(), oldValue, newValue));
50 assertEquals(Arrays.asList(), changes); local
53 assertEquals(Arrays.asList(), changes); local
57 assertEquals(Arrays.asList("VariableDeclarator.name changed from foo to Bar"), changes);
  /external/scapy/doc/scapy/
Makefile 14 .PHONY: help clean html web pickle htmlhelp latex changes linkcheck
22 @echo " changes to make an overview over all changed/added/deprecated items"
59 changes:
60 mkdir -p _build/changes _build/doctrees
61 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) _build/changes
63 @echo "The overview file is in _build/changes."
  /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
78 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
78 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()]));
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
Subroutine.java 80 boolean changes = false;
84 changes = true;
91 changes = true;
94 return changes;
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
NoChange.java 1 package com.github.javaparser.printer.lexicalpreservation.changes;
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
NodeWithModifiersTest.java 52 List<String> changes = new LinkedList<>(); local
58 changes.add("property " + property.name() + " is changed to " + newValue);
62 assertEquals(1, changes.size());
63 assertEquals("property MODIFIERS is changed to [PUBLIC]", changes.get(0));
  /external/mesa3d/src/gallium/docs/
Makefile 15 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
26 @echo " changes to make an overview of all changed/added/deprecated items"
75 changes:
76 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
78 @echo "The overview file is in $(BUILDDIR)/changes."
  /external/python/futures/docs/
Makefile 14 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
25 @echo " changes to make an overview of all changed/added/deprecated items"
74 changes:
75 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) _build/changes
77 @echo "The overview file is in _build/changes."
  /external/libevent/
kqueue.c 73 struct kevent *changes; member in struct:kqop
136 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent));
137 if (kqueueop->changes == NULL)
145 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]);
146 kqueueop->changes[0].ident = -1;
147 kqueueop->changes[0].filter = EVFILT_READ;
148 kqueueop->changes[0].flags = EV_ADD;
155 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 ||
207 struct event_change *in_ch = &changelist->changes[i]
258 struct kevent *changes; local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/msp430/
bad.l 8 [^:]*:16: Warning: a NOP might be needed here because of successive changes in interrupt state
10 [^:]*:25: Warning: a NOP might be needed here because of successive changes in interrupt state
12 [^:]*:29: Warning: a NOP might be needed here because of successive changes in interrupt state
13 [^:]*:31: Warning: a NOP might be needed here because of successive changes in interrupt state
14 [^:]*:32: Warning: a NOP might be needed here because of successive changes in interrupt state
15 [^:]*:33: Warning: a NOP might be needed here because of successive changes in interrupt state
16 [^:]*:34: Warning: a NOP might be needed here because of successive changes in interrupt state
  /development/apps/OBJViewer/
Android.mk 12 # currently disabled because of API changes. won't be fixed for 1.0
  /external/droiddriver/
contributing_aosp.md 5 Follow instructions at https://source.android.com/source/downloading.html except those noted below. You need to set up authentication to be able to submit changes.
32 - make changes and commit them
  /external/clang/utils/
token-delta.py 15 def test(self, changes):
20 def getTestResult(self, changes):
24 changeset = frozenset(changes)
27 elif not self.test(changes):
33 def run(self, changes, force=False):
39 if not self.getTestResult(changes):
46 return self.delta(changes, self.split(changes))
148 def writeFiles(self, changes, fileNames):
151 for i,j in changes
    [all...]

Completed in 680 milliseconds

1 2 3 4 5 6 7 8 91011>>