Home
last modified time | relevance | path

Searched refs:changes (Results 1 – 25 of 1303) sorted by relevance

12345678910>>...53

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DPluralFormatTest.java32 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) { in helperTestRules() argument
59 String expected = (String) changes.get(new Integer(0)); in helperTestRules()
61 String value = changes.get(n); in helperTestRules()
77 Map changes = new HashMap(); in TestOneFormLocales() local
78 changes.put(new Integer(0), "other"); in TestOneFormLocales()
79 helperTestRules(localeIDs, testPattern, changes); in TestOneFormLocales()
86 Map changes = new HashMap(); in TestSingular1Locales() local
87 changes.put(new Integer(0), "other"); in TestSingular1Locales()
88 changes.put(new Integer(1), "one"); in TestSingular1Locales()
89 changes.put(new Integer(2), "other"); in TestSingular1Locales()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DPluralFormatTest.java28 private void helperTestRules(String localeIDs, String testPattern, Map<Integer,String> changes) { in helperTestRules() argument
55 String expected = (String) changes.get(new Integer(0)); in helperTestRules()
57 String value = changes.get(n); in helperTestRules()
73 Map changes = new HashMap(); in TestOneFormLocales() local
74 changes.put(new Integer(0), "other"); in TestOneFormLocales()
75 helperTestRules(localeIDs, testPattern, changes); in TestOneFormLocales()
82 Map changes = new HashMap(); in TestSingular1Locales() local
83 changes.put(new Integer(0), "other"); in TestSingular1Locales()
84 changes.put(new Integer(1), "one"); in TestSingular1Locales()
85 changes.put(new Integer(2), "other"); in TestSingular1Locales()
[all …]
/external/libchrome/base/
Denvironment_unittest.cc95 EnvironmentMap changes; in TEST_F() local
98 e = AlterEnvironment(empty, changes); in TEST_F()
101 changes[L"A"] = L"1"; in TEST_F()
102 e = AlterEnvironment(empty, changes); in TEST_F()
105 changes.clear(); in TEST_F()
106 changes[L"A"] = string16(); in TEST_F()
107 e = AlterEnvironment(empty, changes); in TEST_F()
110 changes.clear(); in TEST_F()
111 e = AlterEnvironment(a2, changes); in TEST_F()
114 changes.clear(); in TEST_F()
[all …]
Denvironment.cc148 const EnvironmentMap& changes) { in AlterEnvironment() argument
159 EnvironmentMap::const_iterator found_change = changes.find(key); in AlterEnvironment()
160 if (found_change == changes.end()) in AlterEnvironment()
167 for (EnvironmentMap::const_iterator i = changes.begin(); in AlterEnvironment()
168 i != changes.end(); ++i) { in AlterEnvironment()
188 const EnvironmentMap& changes) { in AlterEnvironment() argument
199 EnvironmentMap::const_iterator found_change = changes.find(key); in AlterEnvironment()
200 if (found_change == changes.end()) { in AlterEnvironment()
207 for (EnvironmentMap::const_iterator i = changes.begin(); in AlterEnvironment()
208 i != changes.end(); ++i) { in AlterEnvironment()
/external/libweave/src/states/
Dstate_change_queue_unittest.cc33 auto changes = queue_->GetAndClearRecordedStateChanges(); in TEST_F() local
34 ASSERT_EQ(1u, changes.size()); in TEST_F()
35 EXPECT_EQ(timestamp, changes.front().timestamp); in TEST_F()
36 EXPECT_JSON_EQ("{'prop':{'name': 23}}", *changes.front().changed_properties); in TEST_F()
51 auto changes = queue_->GetAndClearRecordedStateChanges(); in TEST_F() local
52 ASSERT_EQ(2u, changes.size()); in TEST_F()
53 EXPECT_EQ(timestamp1, changes[0].timestamp); in TEST_F()
54 EXPECT_JSON_EQ(state1, *changes[0].changed_properties); in TEST_F()
55 EXPECT_EQ(timestamp2, changes[1].timestamp); in TEST_F()
56 EXPECT_JSON_EQ(state2, *changes[1].changed_properties); in TEST_F()
[all …]
Dstate_change_queue.cc44 std::vector<StateChange> changes; in GetAndClearRecordedStateChanges() local
45 changes.reserve(state_changes_.size()); in GetAndClearRecordedStateChanges()
47 changes.push_back(StateChange{pair.first, std::move(pair.second)}); in GetAndClearRecordedStateChanges()
50 return changes; in GetAndClearRecordedStateChanges()
/external/libevent/
Dkqueue.c70 struct kevent *changes; member
132 kqueueop->changes = mm_calloc(NEVENT, sizeof(struct kevent)); in kq_init()
133 if (kqueueop->changes == NULL) in kq_init()
141 memset(&kqueueop->changes[0], 0, sizeof kqueueop->changes[0]); in kq_init()
142 kqueueop->changes[0].ident = -1; in kq_init()
143 kqueueop->changes[0].filter = EVFILT_READ; in kq_init()
144 kqueueop->changes[0].flags = EV_ADD; in kq_init()
151 kqueueop->changes, 1, kqueueop->events, NEVENT, NULL) != 1 || in kq_init()
209 struct event_change *in_ch = &changelist->changes[i]; in kq_build_changes_list()
215 newchanges = mm_realloc(kqop->changes, in kq_build_changes_list()
[all …]
Ddevpoll.c57 struct pollfd *changes; member
88 if (pwrite(devpollop->dpfd, devpollop->changes, in devpoll_commit()
109 pfd = &devpollop->changes[devpollop->nchanges++]; in devpoll_queue()
151 devpollop->changes = mm_calloc(nfiles, sizeof(struct pollfd)); in devpoll_init()
152 if (devpollop->changes == NULL) { in devpoll_init()
299 if (devpollop->changes) in devpoll_dealloc()
300 mm_free(devpollop->changes); in devpoll_dealloc()
/external/clang/test/SemaOpenCL/
Daddress-spaces.cl10 …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 …]
Daddress-spaces-conversions-cl2.0.cl58 …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/v8/build/android/gyp/
Ddex.py90 def _AllSubpathsAreClassFiles(paths, changes): argument
92 if any(not p.endswith('.class') for p in changes.IterChangedSubpaths(path)):
97 def _DexWasEmpty(paths, changes): argument
100 for p in changes.old_metadata.IterSubpaths(path)):
105 def _RunDx(changes, options, dex_cmd, paths): argument
116 if options.incremental and changes.AddedOrModifiedOnly():
117 changed_inputs = set(changes.IterChangedPaths())
123 if (_AllSubpathsAreClassFiles(changed_paths, changes)
124 and not _DexWasEmpty(changed_paths, changes)):
127 changed_subpaths = set(changes.IterChangedSubpaths(path))
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
Droute5377 changes = ResourceRecordSets(conn, hosted_zone_id, comment)
78 change = changes.add_change(change, name, type, ttl,
82 print changes.commit()
86 changes = ResourceRecordSets(conn, hosted_zone_id, comment)
87 change = changes.add_change(change, name, type,
90 print changes.commit()
120 changes = ResourceRecordSets(conn, hosted_zone_id, comment)
128 change1 = changes.add_change("DELETE", name, type, response.ttl,
134 change2 = changes.add_change("UPSERT", name, type, ttl,
138 print changes.commit()
[all …]
/external/libphonenumber/
Drelease_notes.txt2 Metadata changes:
14 Metadata changes:
24 Metadata changes:
30 Metadata changes:
42 Metadata changes:
56 Metadata changes:
65 * Metadata changes:
75 * Metadata changes:
84 * Metadata changes:
94 * Metadata changes:
[all …]
/external/clang/utils/
Dtoken-delta.py15 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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/
Dzone.py51 def _commit(self, changes): argument
59 response = changes.commit()
62 def _new_record(self, changes, resource_type, name, value, ttl, identifier, argument
102 change = changes.add_change("CREATE", name, resource_type, ttl,
117 changes = ResourceRecordSets(self.route53connection, self.id, comment)
118 self._new_record(changes, resource_type, name, value, ttl, identifier,
120 return Status(self.route53connection, self._commit(changes))
134 changes = ResourceRecordSets(self.route53connection, self.id, comment)
135 changes.add_change_record("DELETE", record)
136 self._new_record(changes, record.type, record.name,
[all …]
/external/ImageMagick/PerlMagick/demo/
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;
/external/harfbuzz_ng/
DNEWS1 Overview of changes leading to 1.2.6
11 Overview of changes leading to 1.2.5
18 Overview of changes leading to 1.2.4
26 - API changes:
33 Overview of changes leading to 1.2.3
46 - Also, two rather small API changes:
75 Overview of changes leading to 1.2.2
87 Overview of changes leading to 1.2.1
100 Overview of changes leading to 1.2.0
110 mark attachment. This work resulted in some changes to how mark
[all …]
/external/selinux/libsepol/src/
Dgenbools.c75 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)
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/quotas/backend/quotas/
Dservices.py240 self.__transaction.changes = None # Dictionary bucket -> token deduction.
245 return self.__transaction.changes is not None
250 self.__transaction.changes = {}
257 for name, change in self.__transaction.changes.iteritems():
261 self.__transaction.changes = None
267 self.__transaction.changes = None
282 changes = self.__transaction.changes.get(name, 0)
287 return remaining_tokens + changes
298 return bucket.initial_tokens + changes
312 assert name not in self.__transaction.changes
[all …]
/external/clang/test/SemaObjC/
Dsign-conversion.m26 …[x setUint:sint]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInte…
27 …x.uint = sint; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger'…
35 (void)((NSObject*)array[si]).hash; // expected-warning {{implicit conversion changes signedness: 'i…
37 (void)[((NSObject*)array[si]) hash]; // expected-warning {{implicit conversion changes signedness: …
38 (void)array[si]; // expected-warning {{implicit conversion changes signedness: 'int' to 'NSUInteger…
/external/v8/build/android/gyp/util/
Dmd5_check_test.py23 self.changes = None
49 self.changes = None
51 def MarkCalled(changes): argument
53 self.changes = changes
68 description = self.changes.DescribeDifference()
74 self.changes.AddedOrModifiedOnly())
/external/wpa_supplicant_8/wpa_supplicant/
Dbss.c478 u32 changes = 0; in wpa_bss_compare_res() local
482 changes |= WPA_BSS_FREQ_CHANGED_FLAG; in wpa_bss_compare_res()
485 changes |= WPA_BSS_SIGNAL_CHANGED_FLAG; in wpa_bss_compare_res()
488 changes |= WPA_BSS_PRIVACY_CHANGED_FLAG; in wpa_bss_compare_res()
491 changes |= WPA_BSS_MODE_CHANGED_FLAG; in wpa_bss_compare_res()
495 return changes; in wpa_bss_compare_res()
496 changes |= WPA_BSS_IES_CHANGED_FLAG; in wpa_bss_compare_res()
499 changes |= WPA_BSS_WPAIE_CHANGED_FLAG; in wpa_bss_compare_res()
502 changes |= WPA_BSS_RSNIE_CHANGED_FLAG; in wpa_bss_compare_res()
505 changes |= WPA_BSS_WPS_CHANGED_FLAG; in wpa_bss_compare_res()
[all …]
/external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/
DMakefile15 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
75 changes: target
76 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/doc/
DMakefile15 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
75 changes: target
76 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
/external/mesa3d/src/gallium/docs/
DMakefile15 .PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
75 changes: target
76 $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes

12345678910>>...53