Home
last modified time | relevance | path

Searched defs:Foo (Results 1 – 2 of 2) sorted by relevance

/petsc/src/sys/tests/
H A Dex64.cxx45 struct Foo { struct
49 constexpr Foo() noexcept = default; argument
50 constexpr Foo(int x, double y) noexcept : x(x), y(y) { } in Foo() function
52 bool operator==(const Foo &other) const noexcept { return x == other.x && y == other.y; } in operator ==() argument
53 bool operator!=(const Foo &other) const noexcept { return !(*this == other); } in operator !=() argument
54 …bool operator<(const Foo &other) const noexcept { return std::tie(x, y) < std::tie(other.x, other.… in operator <() argument
63 friend std::ostream &operator<<(std::ostream &oss, const Foo &f) noexcept in operator <<() argument
/petsc/src/sys/tests/linter/
H A DtestStaticFunctionCandidates.cxx26 class Foo { class