#include <regexp.h>
|
static constexpr intptr_t | kNone = -1 |
|
Definition at line 510 of file regexp.h.
◆ Interval() [1/2]
dart::Interval::Interval |
( |
| ) |
|
|
inline |
Definition at line 512 of file regexp.h.
static constexpr intptr_t kNone
◆ Interval() [2/2]
dart::Interval::Interval |
( |
intptr_t |
from, |
|
|
intptr_t |
to |
|
) |
| |
|
inline |
◆ Contains()
bool dart::Interval::Contains |
( |
intptr_t |
value | ) |
const |
|
inline |
◆ Empty()
static Interval dart::Interval::Empty |
( |
| ) |
|
|
inlinestatic |
◆ from()
intptr_t dart::Interval::from |
( |
| ) |
const |
|
inline |
◆ is_empty()
bool dart::Interval::is_empty |
( |
| ) |
const |
|
inline |
◆ to()
intptr_t dart::Interval::to |
( |
| ) |
const |
|
inline |
◆ Union()
Definition at line 515 of file regexp.h.
515 {
516 if (that.from_ ==
kNone)
517 return *this;
518 else if (from_ ==
kNone)
519 return that;
520 else
523 }
static constexpr T Maximum(T x, T y)
static T Minimum(T x, T y)
◆ kNone
constexpr intptr_t dart::Interval::kNone = -1 |
|
staticconstexpr |
The documentation for this class was generated from the following file:
- third_party/dart-lang/sdk/runtime/vm/regexp.h