/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
bounds.py | 5 class Bounds(object): 6 """Represents a min-max bounds.""" 29 def bounds(self): member in class:Bounds 44 def AddBounds(self, bounds): 45 if bounds.isEmpty: 47 self.AddValue(bounds.min_) 48 self.AddValue(bounds.max_)
|
/external/chromium_org/v8/src/ |
types.h | 283 // A simple struct to represent a pair of lower/upper type bounds. 284 struct Bounds { 288 Bounds() {} 289 Bounds(Handle<Type> l, Handle<Type> u) : lower(l), upper(u) { 292 Bounds(Type* l, Type* u, Isolate* isl) : lower(l, isl), upper(u, isl) { 295 explicit Bounds(Handle<Type> t) : lower(t), upper(t) { 298 Bounds(Type* t, Isolate* isl) : lower(t, isl), upper(t, isl) { 302 // Unrestricted bounds. 303 static Bounds Unbounded(Isolate* isl) { 304 return Bounds(Type::None(), Type::Any(), isl) [all...] |
/frameworks/base/core/java/android/widget/ |
GridLayout.java | 211 * the bounds of each view are extended outwards, according 362 * value of each the upper bounds defined in {@link LayoutParams#rowSpec}. 395 * value of each the upper bounds defined in {@link LayoutParams#columnSpec}. 1298 Bounds bounds = getAlignment(spec.alignment, horizontal).getBounds(); local 1347 Bounds[] bounds = getGroupBounds().values; local [all...] |
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/ |
GridLayout.java | 211 * the bounds of each view are extended outwards, according 362 * value of each the upper bounds defined in {@link LayoutParams#rowSpec}. 395 * value of each the upper bounds defined in {@link LayoutParams#columnSpec}. 1187 Bounds bounds = getAlignment(spec.alignment, horizontal).getBounds(); local 1236 Bounds[] bounds = getGroupBounds().values; local [all...] |
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/ |
android-support-v7-gridlayout.jar | |