Searched defs:BoundsImpl (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/ |
D | types.h | 1124 struct BoundsImpl { struct 1132 BoundsImpl() : // Make sure accessing uninitialized bounds crashes big-time. in BoundsImpl() argument 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 1146 static BoundsImpl Both(BoundsImpl b1, BoundsImpl b2, Region* region) { in Both() argument 1155 static BoundsImpl Either(BoundsImpl b1, BoundsImpl b2, Region* region) { in Either() argument 1161 static BoundsImpl NarrowLower(BoundsImpl b, TypeHandle t, Region* region) { in NarrowLower() argument 1167 static BoundsImpl NarrowUpper(BoundsImpl b, TypeHandle t, Region* region) { in NarrowUpper() argument 1175 bool Narrows(BoundsImpl that) { in Narrows() argument
|