Definition at line 135 of file hash_map_test.cc.
◆ IntptrPair() [1/4]
dart::IntptrPair::IntptrPair |
( |
| ) |
|
|
inline |
◆ IntptrPair() [2/4]
dart::IntptrPair::IntptrPair |
( |
intptr_t |
first, |
|
|
intptr_t |
second |
|
) |
| |
|
inline |
◆ IntptrPair() [3/4]
dart::IntptrPair::IntptrPair |
( |
| ) |
|
|
inline |
Definition at line 264 of file freelist.cc.
264: first_(-1), second_(-1) {}
◆ IntptrPair() [4/4]
dart::IntptrPair::IntptrPair |
( |
intptr_t |
first, |
|
|
intptr_t |
second |
|
) |
| |
|
inline |
◆ first() [1/2]
intptr_t dart::IntptrPair::first |
( |
| ) |
const |
|
inline |
◆ first() [2/2]
intptr_t dart::IntptrPair::first |
( |
| ) |
const |
|
inline |
◆ operator!=() [1/2]
bool dart::IntptrPair::operator!= |
( |
const IntptrPair & |
other | ) |
|
|
inline |
Definition at line 148 of file hash_map_test.cc.
148 {
149 return (first_ != other.first_) || (second_ != other.second_);
150 }
◆ operator!=() [2/2]
bool dart::IntptrPair::operator!= |
( |
const IntptrPair & |
other | ) |
|
|
inline |
Definition at line 276 of file freelist.cc.
276 {
277 return (first_ != other.first_) || (second_ != other.second_);
278 }
◆ operator==() [1/2]
bool dart::IntptrPair::operator== |
( |
const IntptrPair & |
other | ) |
|
|
inline |
Definition at line 144 of file hash_map_test.cc.
144 {
145 return (first_ == other.first_) && (second_ == other.second_);
146 }
◆ operator==() [2/2]
bool dart::IntptrPair::operator== |
( |
const IntptrPair & |
other | ) |
|
|
inline |
Definition at line 272 of file freelist.cc.
272 {
273 return (first_ == other.first_) && (second_ == other.second_);
274 }
◆ second() [1/2]
intptr_t dart::IntptrPair::second |
( |
| ) |
const |
|
inline |
◆ second() [2/2]
intptr_t dart::IntptrPair::second |
( |
| ) |
const |
|
inline |
◆ set_second()
void dart::IntptrPair::set_second |
( |
intptr_t |
s | ) |
|
|
inline |
The documentation for this class was generated from the following files: