/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 41 String lastValue = (String) changes.get(new Integer(0)); in helperTestRules() 45 if (changes.get(new Integer(i)) != null) { in helperTestRules() 52 lastValue = (String) changes.get(new Integer(i)); in helperTestRules() 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 [all …]
|
/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 38 String lastValue = (String) changes.get(new Integer(0)); in helperTestRules() 42 if (changes.get(new Integer(i)) != null) { in helperTestRules() 49 lastValue = (String) changes.get(new Integer(i)); in helperTestRules() 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 [all …]
|
/external/clang/lib/Format/ |
D | WhitespaceManager.cpp | 46 Changes.clear(); in reset() 57 Changes.push_back( in replaceWhitespace() 69 Changes.push_back(Change( in addUntouchableToken() 84 Changes.push_back(Change( in replaceWhitespaceInToken() 94 if (Changes.empty()) in generateReplacements() 97 std::sort(Changes.begin(), Changes.end(), Change::IsBeforeInFile(SourceMgr)); in generateReplacements() 109 Changes[0].PreviousEndOfTokenColumn = 0; in calculateLineBreakInformation() 110 Change *LastOutsideTokenChange = &Changes[0]; in calculateLineBreakInformation() 111 for (unsigned i = 1, e = Changes.size(); i != e; ++i) { in calculateLineBreakInformation() 113 SourceMgr.getFileOffset(Changes[i].OriginalWhitespaceRange.getBegin()); in calculateLineBreakInformation() [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 …]
|
/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/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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | DAGDeltaAlgorithm.cpp | 118 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument 121 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState() 139 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes, 144 /// GetTestResult - Get the test result for the active set \p Changes with 145 /// \p Required changes from the cache, executing the test if necessary. 147 /// \param Changes - The set of active changes being minimized, which should 149 /// \param Required - The set of changes which have previously been 152 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required); 155 /// Helper object for minimizing an active set of changes. 162 /// UpdatedSearchState - Callback used when the search state changes. [all …]
|
D | DeltaAlgorithm.cpp | 18 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { in GetTestResult() argument 19 if (FailedTestsCache.count(Changes)) in GetTestResult() 22 bool Result = ExecuteOneTest(Changes); in GetTestResult() 24 FailedTestsCache.insert(Changes); in GetTestResult() 45 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() argument 47 // Invariant: union(Res) == Changes in Delta() 48 UpdatedSearchState(Changes, Sets); in Delta() 52 return Changes; in Delta() 56 if (Search(Changes, Sets, Res)) in Delta() 65 return Changes; in Delta() [all …]
|
/external/llvm/lib/Support/ |
D | DAGDeltaAlgorithm.cpp | 118 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument 121 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState() 139 DAGDeltaAlgorithmImpl(DAGDeltaAlgorithm &DDA, const changeset_ty &Changes, 144 /// GetTestResult - Get the test result for the active set \p Changes with 145 /// \p Required changes from the cache, executing the test if necessary. 147 /// \param Changes - The set of active changes being minimized, which should 149 /// \param Required - The set of changes which have previously been 152 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required); 155 /// Helper object for minimizing an active set of changes. 162 /// UpdatedSearchState - Callback used when the search state changes. [all …]
|
D | DeltaAlgorithm.cpp | 17 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { in GetTestResult() argument 18 if (FailedTestsCache.count(Changes)) in GetTestResult() 21 bool Result = ExecuteOneTest(Changes); in GetTestResult() 23 FailedTestsCache.insert(Changes); in GetTestResult() 44 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() argument 46 // Invariant: union(Res) == Changes in Delta() 47 UpdatedSearchState(Changes, Sets); in Delta() 51 return Changes; in Delta() 55 if (Search(Changes, Sets, Res)) in Delta() 64 return Changes; in Delta() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | DAGDeltaAlgorithm.cpp | 64 const changeset_ty &Changes; member in __anon4343b8670111::DAGDeltaAlgorithmImpl 119 void UpdatedSearchState(const changeset_ty &Changes, in UpdatedSearchState() argument 122 DDA.UpdatedSearchState(Changes, Sets, Required); in UpdatedSearchState() 146 /// GetTestResult - Get the test result for the active set \arg Changes with 147 /// \arg Required changes from the cache, executing the test if necessary. 149 /// \param Changes - The set of active changes being minimized, which should 151 /// \param Required - The set of changes which have previously been 154 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required); 157 /// Helper object for minimizing an active set of changes. 164 /// UpdatedSearchState - Callback used when the search state changes. [all …]
|
D | DeltaAlgorithm.cpp | 17 bool DeltaAlgorithm::GetTestResult(const changeset_ty &Changes) { in GetTestResult() argument 18 if (FailedTestsCache.count(Changes)) in GetTestResult() 21 bool Result = ExecuteOneTest(Changes); in GetTestResult() 23 FailedTestsCache.insert(Changes); in GetTestResult() 44 DeltaAlgorithm::Delta(const changeset_ty &Changes, in Delta() argument 46 // Invariant: union(Res) == Changes in Delta() 47 UpdatedSearchState(Changes, Sets); in Delta() 51 return Changes; in Delta() 55 if (Search(Changes, Sets, Res)) in Delta() 64 return Changes; in Delta() [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/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 …]
|
/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/clang/test/SemaCXX/ |
D | warn-literal-conversion.cpp | 8 …int y0 = 1.2222F; // expected-warning {{implicit conversion from 'float' to 'int' changes value fr… in test0() 9 …int y1 = (1.2222F); // expected-warning {{implicit conversion from 'float' to 'int' changes value … in test0() 10 …int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes va… in test0() 11 …int y3 = 12E-1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value fro… in test0() 12 …int y4 = 1.23E1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value fr… in test0() 14 …int y5 = 1.2222; // expected-warning {{implicit conversion from 'double' to 'int' changes value fr… in test0() 15 …int y6 = 12E-1; // expected-warning {{implicit conversion from 'double' to 'int' changes value fro… in test0() 16 …int y7 = 1.23E1; // expected-warning {{implicit conversion from 'double' to 'int' changes value fr… in test0() 17 …int y8 = (1.23E1); // expected-warning {{implicit conversion from 'double' to 'int' changes value … in test0() 20 …y8 = 2.22F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 2.2… in test0() [all …]
|
/external/tagsoup/ |
D | CHANGES | 1 Changes from 1.2 to 1.2.1 7 Changes from 1.1.3 to 1.2 32 Changes from 1.1.2 to 1.1.3 38 Changes from 1.1.1 to 1.1.2 42 Changes from 1.1 to 1.1.1 48 Changes from 1.0.5 to 1.1 52 Changes from 1.0.4 to 1.0.5 60 Changes from 1.0.4 to 1.0.3 66 Changes from 1.0.3 to 1.0.2 71 Changes from 1.0.1 to 1.0.2 [all …]
|
/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/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/docs/ |
D | CHANGES | 1 Changes with version 1.0.12 13 Changes with version 1.0.11 23 Changes with version 1.0.10 33 Changes with version 1.0.9 38 Changes with version 1.0.8 54 Changes with version 1.0.7 62 Changes with version 1.0.6 71 Changes with version 1.0.5 76 Changes with version 1.0.4 84 Changes with version 1.0.3 [all …]
|
/external/clang/test/Sema/ |
D | constant-conversion.c | 8 … // expected-warning {{implicit conversion from 'unsigned long' to 'int' changes value from 460718… in test_6792488() 14 …a.i5 = 36; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 36 … in test_7809123() 34 … // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to … in test3() 35 …0 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to … in test3() 36 … // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to … in test3() 37 …0, 0 }; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to … in test3() 38 … // expected-warning {{implicit truncation from 'int' to bitfield changes value from 10 to … in test3() 46 …a.c = 0x101; // expected-warning {{implicit truncation from 'int' to bitfield changes value from 2… in test4() 62 unsigned char y = 1 ? 65535 : 1; // expected-warning {{changes value}} in test6() 72 …f.twoBits1 = ~1; // expected-warning {{implicit truncation from 'int' to bitfield changes value fr… in test7() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | DeltaAlgorithm.h | 29 /// (2) If the predicate returns true for a set of changes, it should return 48 /// GetTestResult - Get the test result for the \p Changes from the 51 /// \param Changes - The change set to test. 53 bool GetTestResult(const changeset_ty &Changes); 55 /// Split - Partition a set of changes \p S into one or two subsets. 58 /// Delta - Minimize a set of \p Changes which has been partioned into 60 changeset_ty Delta(const changeset_ty &Changes, 64 /// removed from \p Changes while still satisfying the predicate. 66 /// \param Res - On success, a subset of Changes which satisfies the 69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets, [all …]
|
/external/llvm/include/llvm/ADT/ |
D | DeltaAlgorithm.h | 29 /// (2) If the predicate returns true for a set of changes, it should return 48 /// GetTestResult - Get the test result for the \p Changes from the 51 /// \param Changes - The change set to test. 53 bool GetTestResult(const changeset_ty &Changes); 55 /// Split - Partition a set of changes \p S into one or two subsets. 58 /// Delta - Minimize a set of \p Changes which has been partioned into 60 changeset_ty Delta(const changeset_ty &Changes, 64 /// removed from \p Changes while still satisfying the predicate. 66 /// \param Res - On success, a subset of Changes which satisfies the 69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets, [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | DeltaAlgorithm.h | 29 /// (2) If the predicate returns true for a set of changes, it should return 48 /// GetTestResult - Get the test result for the \arg Changes from the 51 /// \param Changes - The change set to test. 53 bool GetTestResult(const changeset_ty &Changes); 55 /// Split - Partition a set of changes \arg S into one or two subsets. 58 /// Delta - Minimize a set of \arg Changes which has been partioned into 60 changeset_ty Delta(const changeset_ty &Changes, 64 /// removed from \arg Changes while still satisfying the predicate. 66 /// \param Res - On success, a subset of Changes which satisfies the 69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets, [all …]
|
/external/icu/tools/ |
D | README.android | 18 Changes to upstream ICU4J can fall into one of three categories: 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 69 Changes are stored in separate files, one for each source file. This avoids maintaining a monolithic [all …]
|