Home
last modified time | relevance | path

Searched refs:ChangeType (Results 1 – 15 of 15) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DChartDelta.java226 private enum ChangeType { enum in ChartDelta
228 public static ChangeType get(String oldValue, String currentValue) { in get()
236 private Counter<ChangeType> counter = new Counter<>();
237 private Map<String, Counter<ChangeType>> fileCounters = new TreeMap<>();
240 private void addChange(String file, ChangeType changeType, int count) { in addChange()
242 Counter<ChangeType> fileCounter = fileCounters.get(file); in addChange()
253 for (ChangeType item : ChangeType.values()) { in showTotals()
254 pw.print("\t" + (item == ChangeType.same ? "total" : item.toString())); in showTotals()
259 for (Entry<String, Counter<ChangeType>> entry : fileCounters.entrySet()) { in showTotals()
271 private void showTotal(PrintWriter pw, String title2, Counter<ChangeType> counter2) { in showTotal()
[all …]
/external/openscreen/discovery/mdns/
Dmdns_record_changed_callback.h25 enum ChangeType { kStartQuery, kStopQuery }; enum
30 ChangeType change_type;
/external/libchrome/base/metrics/
Dpersistent_memory_allocator.h453 bool ChangeType(Reference ref,
551 if (!ChangeType(ref, kTypeIdTransitioning, from_type_id, clear)) in New()
559 ChangeType(ref, T::kPersistentTypeId, kTypeIdTransitioning, false); in New()
574 if (!ChangeType(ref, kTypeIdTransitioning, T::kPersistentTypeId, false)) in Delete()
580 bool success = ChangeType(ref, new_type, kTypeIdTransitioning, false); in Delete()
Dpersistent_memory_allocator_unittest.cc223 allocator_->ChangeType(block2, 3, 2, false); in TEST_F()
630 local.ChangeType(r456, 654, 456, false); in TEST()
708 ASSERT_TRUE(shalloc3.ChangeType(data_ref, 119, 911, false)); in TEST()
713 ASSERT_TRUE(shalloc3.ChangeType(data_ref, 191, 119, true)); in TEST()
738 local.ChangeType(r456, 654, 456, false); in TEST()
Dpersistent_memory_allocator.cc554 bool PersistentMemoryAllocator::ChangeType(Reference ref, in ChangeType() function in base::PersistentMemoryAllocator
1189 allocator_->ChangeType(ref, 0, type_, /*clear=*/false); in Get()
Dpersistent_histogram_allocator.cc440 memory_allocator_->ChangeType(ref, 0, in FinalizeHistogram()
Dfield_trial.cc1161 allocator->ChangeType(prev_ref, 0, in ClearParamsFromSharedMemoryForTesting()
/external/gptfdisk/
Dgptcurses.h109 void ChangeType(int partNum);
Dgptpart.h99 void ChangeType(void); // Change the type code
Dgptcurses.cc371 void GPTDataCurses::ChangeType(int partNum) { in ChangeType() function in GPTDataCurses
460 ChangeType(partNum); in MakeNewPart()
721 ChangeType(currentSpace->partNum); in Dispatch()
Dgpttext.cc255 partitions[partNum].ChangeType(); in CreatePartition()
287 partitions[partNum].ChangeType(); in ChangePartType()
Dgptpart.cc436 void GPTPart::ChangeType(void) { function in GPTPart
/external/libchrome/base/debug/
Dactivity_tracker_unittest.cc573 global->allocator()->ChangeType( in TEST_F()
576 global->allocator()->ChangeType( in TEST_F()
579 global->allocator()->ChangeType( in TEST_F()
Dactivity_tracker.cc85 if (allocator->ChangeType(ref, to_type, from_type, /*clear=*/false)) in AllocateFrom()
201 if (allocator_->ChangeType(cached, object_type_, object_free_type_, false)) in GetObjectReference()
219 if (allocator_->ChangeType(found, object_type_, object_free_type_, false)) in GetObjectReference()
241 bool success = allocator_->ChangeType(ref, object_free_type_, object_type_, in ReleaseObjectReference()
1591 allocator_->ChangeType(ref, ~type, type, /*clear=*/true); in CleanupAfterProcess()
/external/openscreen/discovery/dnssd/impl/
Dquerier_impl_unittest.cc226 PendingQueryChange::ChangeType change_type) { in ValidateRecordChangeResult()