Home
last modified time | relevance | path

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

/external/v8/src/
Dtypes.h1124 struct BoundsImpl { struct
1132 BoundsImpl() : // Make sure accessing uninitialized bounds crashes big-time. in BoundsImpl() function
1135 explicit BoundsImpl(TypeHandle t) : lower(t), upper(t) {} in BoundsImpl() function
1136 BoundsImpl(TypeHandle l, TypeHandle u) : lower(l), upper(u) { in BoundsImpl() function
1141 static BoundsImpl Unbounded() { in Unbounded() argument
1142 return BoundsImpl(Type::None(), Type::Any()); in Unbounded()
1146 static BoundsImpl Both(BoundsImpl b1, BoundsImpl b2, Region* region) { in Both() argument
1151 return BoundsImpl(lower, upper); in Both()
1155 static BoundsImpl Either(BoundsImpl b1, BoundsImpl b2, Region* region) { in Either() argument
1158 return BoundsImpl(lower, upper); in Either()
[all …]