Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/layout/generic/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  ScrollGeneration.h   Sprache: C

 
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#ifndef mozilla_ScrollGeneration_h_
#define mozilla_ScrollGeneration_h_

#include <cstdint>
#include <iosfwd>
#include <tuple>

namespace mozilla {

struct ScrollGenerationCounter;

class APZTag {};
class MainThreadTag {};

template <typename Tag>
struct ScrollGeneration;

template <typename Tag>
std::ostream& operator<<(std::ostream& aStream,
                         const ScrollGeneration<Tag>& aGen);

template <typename Tag>
struct ScrollGeneration final {
  friend struct ScrollGenerationCounter;

 private:
  // Private constructor; use ScrollGenerationCounter to get a new instance.
  explicit ScrollGeneration(uint64_t aValue);

 public:
  // Dummy constructor, needed for IPDL purposes. Not intended for manual use.
  ScrollGeneration();

  uint64_t Raw() const { return mValue; }

  bool operator<(const ScrollGeneration<Tag>& aOther) const;
  bool operator==(const ScrollGeneration<Tag>& aOther) const;
  bool operator!=(const ScrollGeneration<Tag>& aOther) const;

  friend std::ostream& operator<< <>(std::ostream& aStream,
                                     const ScrollGeneration<Tag>& aGen);

  auto MutTiedFields() { return std::tie(mValue); }

 private:
  uint64_t mValue;
};

using APZScrollGeneration = ScrollGeneration<APZTag>;
using MainThreadScrollGeneration = ScrollGeneration<MainThreadTag>;

struct ScrollGenerationCounter {
  MainThreadScrollGeneration NewMainThreadGeneration() {
    uint64_t value = ++mCounter;
    return MainThreadScrollGeneration(value);
  }

  APZScrollGeneration NewAPZGeneration() {
    uint64_t value = ++mCounter;
    return APZScrollGeneration(value);
  }

 private:
  uint64_t mCounter = 0;
};

}  // namespace mozilla

#endif  // mozilla_ScrollGeneration_h_

Messung V0.5
C=94 H=100 G=96

¤ Dauer der Verarbeitung: 0.0 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.