/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | PluralFormatTest.java | 32 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) { in helperTestRules() argument 59 String expected = changes.get(new Integer(0)); in helperTestRules() 61 String value = changes.get(n); in helperTestRules() 78 Map changes = new HashMap(); in TestOneFormLocales() local 79 changes.put(new Integer(0), "other"); in TestOneFormLocales() 80 helperTestRules(localeIDs, testPattern, changes); in TestOneFormLocales() 88 Map changes = new HashMap(); in TestSingular1Locales() local 89 changes.put(new Integer(0), "other"); in TestSingular1Locales() 90 changes.put(new Integer(1), "one"); in TestSingular1Locales() 91 changes.put(new Integer(2), "other"); in TestSingular1Locales() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | PluralFormatTest.java | 35 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) { in helperTestRules() argument 62 String expected = changes.get(new Integer(0)); in helperTestRules() 64 String value = changes.get(n); in helperTestRules() 81 Map changes = new HashMap(); in TestOneFormLocales() local 82 changes.put(new Integer(0), "other"); in TestOneFormLocales() 83 helperTestRules(localeIDs, testPattern, changes); in TestOneFormLocales() 91 Map changes = new HashMap(); in TestSingular1Locales() local 92 changes.put(new Integer(0), "other"); in TestSingular1Locales() 93 changes.put(new Integer(1), "one"); in TestSingular1Locales() 94 changes.put(new Integer(2), "other"); in TestSingular1Locales() [all …]
|
/external/libchrome/base/ |
D | environment_unittest.cc | 107 EnvironmentMap changes; in TEST_F() local 110 e = AlterEnvironment(empty, changes); in TEST_F() 113 changes[L"A"] = L"1"; in TEST_F() 114 e = AlterEnvironment(empty, changes); in TEST_F() 117 changes.clear(); in TEST_F() 118 changes[L"A"] = string16(); in TEST_F() 119 e = AlterEnvironment(empty, changes); in TEST_F() 122 changes.clear(); in TEST_F() 123 e = AlterEnvironment(a2, changes); in TEST_F() 126 changes.clear(); in TEST_F() [all …]
|
D | environment.cc | 147 const EnvironmentMap& changes) { in AlterEnvironment() argument 158 EnvironmentMap::const_iterator found_change = changes.find(key); in AlterEnvironment() 159 if (found_change == changes.end()) in AlterEnvironment() 166 for (EnvironmentMap::const_iterator i = changes.begin(); in AlterEnvironment() 167 i != changes.end(); ++i) { in AlterEnvironment() 187 const EnvironmentMap& changes) { in AlterEnvironment() argument 198 EnvironmentMap::const_iterator found_change = changes.find(key); in AlterEnvironment() 199 if (found_change == changes.end()) { in AlterEnvironment() 206 for (EnvironmentMap::const_iterator i = changes.begin(); in AlterEnvironment() 207 i != changes.end(); ++i) { in AlterEnvironment()
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/changes/ |
D | ChangeSetTestCase.java | 19 package org.apache.commons.compress.changes; 91 final ChangeSet changes = new ChangeSet(); in testAddChangeTwice() local 92 changes.add(e, in); in testAddChangeTwice() 93 changes.add(e2, in2); in testAddChangeTwice() 95 assertEquals(1, changes.getChanges().size()); in testAddChangeTwice() 96 final Change c = changes.getChanges().iterator().next(); in testAddChangeTwice() 126 final ChangeSet changes = new ChangeSet(); in testAddChangeTwiceWithoutReplace() local 127 changes.add(e, in, true); in testAddChangeTwiceWithoutReplace() 128 changes.add(e2, in2, false); in testAddChangeTwiceWithoutReplace() 130 assertEquals(1, changes.getChanges().size()); in testAddChangeTwiceWithoutReplace() [all …]
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/ |
D | NodeListTest.java | 46 private AstObserver createObserver(List<String> changes) { in createObserver() argument 50 …changes.add(String.format("change of property %s for %s: from '%s' to '%s'", property, observedNod… in createObserver() 55 …changes.add(String.format("setting parent for %s: was %s, now is %s", observedNode, previousParent… in createObserver() 60 … changes.add(String.format("'%s' %s in list at %d", nodeAddedOrRemoved, type, index)); in createObserver() 65 … changes.add(String.format("'%s' %s in list at %d", oldNode, ListChangeType.REMOVAL, index)); in createObserver() 66 … changes.add(String.format("'%s' %s in list at %d", newNode, ListChangeType.ADDITION, index)); in createObserver() 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 …]
|
D | NodeTest.java | 55 List<String> changes = new ArrayList<>(); in registerSubTree() local 59 …changes.add(String.format("%s.%s changed from %s to %s", observedNode.getClass().getSimpleName(), … in registerSubTree() 64 assertEquals(Arrays.asList(), changes); in registerSubTree() local 67 …rtEquals(Arrays.asList("ClassOrInterfaceDeclaration.name changed from A to MyCoolClass"), changes); in registerSubTree() 72 "VariableDeclarator.type changed from int to boolean"), changes); in registerSubTree() 78 "Parameter.name changed from p to myParam"), changes); in registerSubTree() 85 List<String> changes = new ArrayList<>(); in registerWithJustNodeMode() local 89 …changes.add(String.format("%s.%s changed from %s to %s", observedNode.getClass().getSimpleName(), … in registerWithJustNodeMode() 94 assertEquals(Arrays.asList(), changes); in registerWithJustNodeMode() local 97 …rtEquals(Arrays.asList("ClassOrInterfaceDeclaration.name changed from A to MyCoolClass"), changes); in registerWithJustNodeMode() [all …]
|
/external/libevent/ |
D | kqueue.c | 73 struct kevent *changes; member 136 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent)); in kq_init() 137 if (kqueueop->changes == NULL) in kq_init() 145 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]); in kq_init() 146 kqueueop->changes[0].ident = -1; in kq_init() 147 kqueueop->changes[0].filter = EVFILT_READ; in kq_init() 148 kqueueop->changes[0].flags = EV_ADD; in kq_init() 155 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || in kq_init() 207 struct event_change *in_ch = &changelist->changes[i]; in kq_build_changes_list() 213 newchanges = mm_realloc(kqop->changes, in kq_build_changes_list() [all …]
|
/external/clang/test/SemaOpenCL/ |
D | address-spaces.cl | 10 …ip = gip; // expected-error {{assigning '__global int *' to 'int *' changes address space of point… 11 …ip = &li; // expected-error {{assigning '__local int *' to 'int *' changes address space of pointe… 12 …ip = &ci; // expected-error {{assigning '__constant int *' to 'int *' changes address space of poi… 17 … // expected-error {{casting '__local int *' to type '__global int *' changes address space of … 18 … // expected-error {{casting '__constant int *' to type '__global int *' changes address space of … 19 …pected-error {{casting 'const __constant int *' to type '__global int *' changes address space of … 20 …g = (global int*) p; // expected-error {{casting 'int *' to type '__global int *' changes addre… 22 … // expected-error {{casting '__global int *' to type '__local int *' changes address space of … 23 … // expected-error {{casting '__constant int *' to type '__local int *' changes address space of … 24 …xpected-error {{casting 'const __constant int *' to type '__local int *' changes address space of … [all …]
|
D | address-spaces-conversions-cl2.0.cl | 58 …tializing '__constant int *' with an expression of type '__global int *' changes address space of … 63 …'__{{global|constant}} int *' with an expression of type '__local int *' changes address space of … 68 …_{{global|generic}} int *' with an expression of type '__constant int *' changes address space of … 73 …alizing '__{{global|constant}} int *' with an expression of type 'int *' changes address space of … 78 …_{{global|constant}} int *' with an expression of type '__generic int *' changes address space of … 83 // expected-error@-2{{casting '__global int *' to type '__constant int *' changes address space of … 88 // expected-error-re@-2{{casting '__local int *' to type '__{{global|constant}} int *' changes addr… 93 // expected-error-re@-2{{casting '__constant int *' to type '__{{global|generic}} int *' changes ad… 98 // expected-error-re@-2{{casting 'int *' to type '__{{global|constant}} int *' changes address spac… 103 // expected-error@-2{{casting '__generic int *' to type '__constant int *' changes address space of… [all …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/changes/ |
D | ChangeSet.java | 19 package org.apache.commons.compress.changes; 37 private final Set<Change> changes = new LinkedHashSet<>(); field in ChangeSet 99 if (!changes.isEmpty()) { in addAddition() 100 for (final Iterator<Change> it = changes.iterator(); it.hasNext();) { in addAddition() 109 changes.add(pChange); in addAddition() 118 changes.add(pChange); in addAddition() 135 if (source != null && !changes.isEmpty()) { in addDeletion() 136 for (final Iterator<Change> it = changes.iterator(); it.hasNext();) { in addDeletion() 153 changes.add(pChange); in addDeletion() 162 return new LinkedHashSet<>(changes); in getChanges()
|
/external/libphonenumber/ |
D | release_notes.txt | 2 Code changes: 13 Metadata changes: 24 GitHub project changes: 27 Metadata structure changes in XML file: 39 Code changes: 50 Metadata changes: 61 Internal changes: 65 to backwards-incompatible changes without notice or guarantees. 66 Metadata changes: 78 Code changes: [all …]
|
/external/harfbuzz_ng/ |
D | NEWS | 1 Overview of changes leading to 2.3.0 16 Overview of changes leading to 2.2.0 51 Overview of changes leading to 2.1.3 57 Overview of changes leading to 2.1.2 60 - Various internal changes. 68 -Overview of changes leading to 2.1.1 76 Overview of changes leading to 2.1.0 157 Overview of changes leading to 2.0.2 163 Overview of changes leading to 2.0.1 176 Overview of changes leading to 2.0.0 [all …]
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_config.py | 722 changes = self.changes 723 changes.add_option('main', 'Msec', 'mitem', 'mval') 724 changes.add_option('highlight', 'Hsec', 'hitem', 'hval') 725 changes.add_option('keys', 'Ksec', 'kitem', 'kval') 726 return changes 734 self.changes = config.ConfigChanges() 737 self.assertEqual(self.changes, self.empty) 740 changes = self.load() 741 self.assertEqual(changes, self.loaded) 742 changes.add_option('main', 'Msec', 'mitem', 'mval') [all …]
|
/external/clang/utils/ |
D | token-delta.py | 15 def test(self, changes): argument 20 def getTestResult(self, changes): argument 24 changeset = frozenset(changes) 27 elif not self.test(changes): 33 def run(self, changes, force=False): argument 39 if not self.getTestResult(changes): 46 return self.delta(changes, self.split(changes)) 148 def writeFiles(self, changes, fileNames): argument 151 for i,j in changes: 162 def test(self, changes): argument [all …]
|
/external/icu/tools/ |
D | README.android | 20 1) Back-ported upstream ICU patches or other ICU behavior changes made for Android that cannot be 22 2) Mechanical changes related to ICU4J being repackaged on Android under android.icu, the exposure 29 All changes made to icu4j should be accompanied by changes in android_icu4j and vice versa. 34 After making changes (described below) the source code can be regenerated using: 42 The code in android_icu4j will be regenerated and should contain the changes you made 48 Upstream patches and other code changes that modify ICU4J behavior are made in the icu4j 65 To reduce the maintenance cost of reapplying these changes when we upgrade ICU we store the patches 66 in the javadoc_patches directory. The use of the patch command also helps detect when changes 72 Javadoc changes are applied by the generate_android_icu4j.sh script automatically during post-srcgen 75 WARNING: DO NOT add any behavioral changes in these patches. Behavioral code changes should be made
|
/external/ImageMagick/PerlMagick/demo/ |
D | 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;
|
/external/selinux/libsepol/src/ |
D | genbools.c | 85 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)
|
/external/python/httplib2/doc/ |
D | Makefile | 14 .PHONY: help clean html web htmlhelp latex changes linkcheck 57 changes: target 58 mkdir -p .build/changes .build/doctrees 59 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) .build/changes
|
/external/skqp/site/dev/chrome/ |
D | multi_repo_trybots.md | 5 often helpful to locally create the Chromium and Blink changes and test with the 6 proposed Skia change. This often happens with Skia API changes and changes 10 Skia only changes 13 changes, then it is possible to just run the Chromium trybots. This will apply 16 Skia and Chromium changes 19 changes, then in the Chromium CL add the following to 26 'fetch', 'https://skia.googlesource.com/skia', 'refs/changes/13/10513/13', 38 Modify the 'refs/changes/XX/YYYY/ZZ' to the appropriate values (where YYYY is 56 Arbitrary changes
|
/external/u-boot/tools/patman/ |
D | series.py | 38 self.changes = {} 159 for change in sorted(self.changes, reverse=True): 161 for this_commit, text in self.changes[change]: 178 if self.changes: 189 changes_copy = dict(self.changes) 191 if self.changes.get(version): 200 elif self.changes: 268 if not self.changes.get(version): 269 self.changes[version] = [] 270 self.changes[version].append([commit, info])
|
/external/skia/site/dev/chrome/ |
D | multi_repo_trybots.md | 5 often helpful to locally create the Chromium and Blink changes and test with the 6 proposed Skia change. This often happens with Skia API changes and changes 10 Skia only changes 13 changes, then it is possible to just run the Chromium trybots. This will apply 16 Skia and Chromium changes 19 changes, then in the Chromium CL add the following to 26 'fetch', 'https://skia.googlesource.com/skia', 'refs/changes/13/10513/13', 38 Modify the 'refs/changes/XX/YYYY/ZZ' to the appropriate values (where YYYY is 56 Arbitrary changes
|
/external/iperf3/ |
D | RELEASE_NOTES | 3 * Notable user-visible changes 25 * Notable developer-visible changes 34 * Notable user-visible changes 46 * Notable user-visible changes 75 * Notable developer-visible changes 85 * Notable user-visible changes 110 * Notable developer-visible changes 114 * User-visible changes 187 * Developer-visible changes 202 changes consist of updated documentation files and text in the RPM [all …]
|
/external/scapy/doc/scapy/ |
D | Makefile | 14 .PHONY: help clean html web pickle htmlhelp latex changes linkcheck 59 changes: target 60 mkdir -p _build/changes _build/doctrees 61 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) _build/changes
|
/external/python/setuptools/docs/ |
D | Makefile | 14 .PHONY: help clean html web pickle htmlhelp latex changes linkcheck 64 changes: target 65 mkdir -p build/changes build/doctrees 66 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) build/changes
|