Home
last modified time | relevance | path

Searched refs:current_part_index (Results 1 – 10 of 10) sorted by relevance

/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/core/
H A Dmap.cpp467 current_part_index = 0; in clear()
757 current_part_index = std::size_t(findPartIndex(dest_part)); in importMap()
1950 if (current_part_index >= index) in addPart()
1951 setCurrentPartIndex(current_part_index + 1); in addPart()
1964 if (current_part_index == index) in removePart()
1975 if (current_part_index >= index) in removePart()
2002 MapPart* const old_part = parts[current_part_index]; in setCurrentPartIndex()
2003 if (index != current_part_index) in setCurrentPartIndex()
2005 current_part_index = index; in setCurrentPartIndex()
2009 MapPart* const new_part = parts[current_part_index]; in setCurrentPartIndex()
[all …]
H A Dmap.h1518 std::size_t current_part_index = 0; variable
1708 return parts[current_part_index]; in getCurrentPart()
1720 return current_part_index; in getCurrentPartIndex()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/views/
H A Dflying_indicator.cc132 if (animation_.current_part_index() > 1U && done_callback_) in AnimationProgressed()
143 switch (animation_.current_part_index()) { in AnimationProgressed()
H A Dflying_indicator.h55 return animation_.is_animating() && animation_.current_part_index() <= 1U; in is_flying()
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/fileformats/
H A Dxml_file_format.cpp427 parts_element.writeAttribute(literal::current, map->current_part_index); in exportMapParts()
956 auto current_part_index = mapparts_element.attribute<std::size_t>(literal::current); in importMapParts() local
981 if (current_part_index < map->parts.size()) in importMapParts()
982 map->current_part_index = current_part_index; in importMapParts()
990 emit map->currentMapPartIndexChanged(map->current_part_index); in importMapParts()
991 emit map->currentMapPartChanged(map->getPart(map->current_part_index)); in importMapParts()
H A Docad8_file_format.cpp326 map->current_part_index = 0; in importImplementation()
379 emit map->currentMapPartIndexChanged(map->current_part_index); in importImplementation()
380 emit map->currentMapPartChanged(map->getPart(map->current_part_index)); in importImplementation()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/gfx/animation/
H A Dmulti_animation.h71 size_t current_part_index() const { return current_part_index_; } in current_part_index() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/gfx/animation/
H A Dmulti_animation.h71 size_t current_part_index() const { return current_part_index_; } in current_part_index() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/views/tabs/
H A Dalert_indicator.cc52 return current_part_index() % 2 ? 1.0 - MultiAnimation::GetCurrentValue() in GetCurrentValue()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/views/toolbar/
H A Dwebui_tab_counter_button.cc336 switch (border_animation_.current_part_index()) { in LayoutIfAnimating()