Searched refs:changes (Results 1 - 25 of 208) sorted by relevance

123456789

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DPluralFormatTest.java35 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) { argument
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();
82 changes.put(new Integer(0), "other");
83 helperTestRules(localeIDs, testPattern, changes);
91 Map changes
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DPluralFormatTest.java32 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) { argument
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();
79 changes.put(new Integer(0), "other");
80 helperTestRules(localeIDs, testPattern, changes);
88 Map changes
[all...]
/external/libchrome/base/
H A Denvironment_unittest.cc97 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
132 EnvironmentMap changes; local
[all...]
H A Denvironment.h57 // and the list of changes given in |changes|. Each key in the environment is
67 const EnvironmentMap& changes);
84 const EnvironmentMap& changes);
H A Denvironment.cc149 const EnvironmentMap& changes) {
160 EnvironmentMap::const_iterator found_change = changes.find(key);
161 if (found_change == changes.end())
168 for (EnvironmentMap::const_iterator i = changes.begin();
169 i != changes.end(); ++i) {
189 const EnvironmentMap& changes) {
200 EnvironmentMap::const_iterator found_change = changes.find(key);
201 if (found_change == changes.end()) {
208 for (EnvironmentMap::const_iterator i = changes.begin();
209 i != changes
148 AlterEnvironment(const wchar_t* env, const EnvironmentMap& changes) argument
188 AlterEnvironment(const char* const* const env, const EnvironmentMap& changes) argument
[all...]
/external/python/cpython3/Lib/idlelib/idle_test/
H A Dtest_configdialog.py25 # 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, [('mai
[all...]
/external/ImageMagick/PerlMagick/demo/
H A Dlsys.pl26 $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;
H A Dtree.pl31 $changes = \%stemchanges;
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
H A DNodeListTest.java46 private AstObserver createObserver(List<String> changes) { argument
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
[all...]
H A DNodeTest.java55 List<String> changes = new ArrayList<>();
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);
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<>();
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);
97 assertEquals(Arrays.asList("ClassOrInterfaceDeclaration.name changed from A to MyCoolClass"), changes);
[all...]
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/observer/
H A DPropagatingAstObserverTest.java41 List<String> changes = new ArrayList<>();
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);
53 assertEquals(Arrays.asList(), changes);
57 assertEquals(Arrays.asList("VariableDeclarator.name changed from foo to Bar"), changes);
/external/scapy/doc/scapy/
H A DMakefile14 .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."
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
H A DSubroutine.java80 boolean changes = false;
84 changes = true;
91 changes = true;
94 return changes;
H A DAnalyzer.java348 boolean changes = false;
352 changes = true;
354 changes |= oldFrame.merge(frame, interpreter);
362 changes = true;
366 changes |= oldSubroutine.merge(subroutine, !jsr);
369 if (changes && !queued[insn]) {
388 boolean changes = false;
394 changes = true;
396 changes |= oldFrame.merge(afterRET, access);
404 changes
[all...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
H A DNoChange.java1 package com.github.javaparser.printer.lexicalpreservation.changes;
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/nodeTypes/
H A DNodeWithModifiersTest.java52 List<String> changes = new LinkedList<>();
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/
H A DMakefile15 .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/
H A DMakefile14 .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/
H A Dkqueue.c73 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[
258 struct kevent *changes; local
[all...]
H A Ddevpoll.c60 struct pollfd *changes; member in struct:devpollop
91 if (pwrite(devpollop->dpfd, devpollop->changes,
112 pfd = &devpollop->changes[devpollop->nchanges++];
154 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd));
155 if (devpollop->changes == NULL) {
302 if (devpollop->changes)
303 mm_free(devpollop->changes);
/external/droiddriver/
H A Dcontributing_aosp.md5 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/
H A Dtoken-delta.py15 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...]
/external/selinux/libsepol/src/
H A Dgenbools.c85 int errors = 0, changes = 0; local
115 changes++;
147 changes++;
156 *changesp = changes;
164 int rc, changes = 0; local
171 if (load_booleans(&policydb, booleans, &changes) < 0) {
175 if (!changes)
208 int rc, changes = 0; local
210 rc = load_booleans(policydb, booleans, &changes);
211 if (!rc && changes)
[all...]
/external/syslinux/core/lwip/src/netif/ppp/
H A Dvj.c147 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
472 u_int vjlen, hlen, changes; local
[all...]
/external/curl/docs/cmdline-opts/
H A Dremote-name-all.d5 This option changes the default action for all given URLs to be dealt with as

Completed in 1174 milliseconds

123456789