HomeSort by relevance Sort by last modified time
    Searched defs:Bounds (Results 1 - 5 of 5) sorted by null

  /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 295 // A simple struct to represent a pair of lower/upper type bounds.
296 struct Bounds {
300 Bounds() {}
301 Bounds(Handle<Type> l, Handle<Type> u) : lower(l), upper(u) {}
302 Bounds(Type* l, Type* u, Isolate* isl) : lower(l, isl), upper(u, isl) {}
303 explicit Bounds(Handle<Type> t) : lower(t), upper(t) {}
304 Bounds(Type* t, Isolate* isl) : lower(t, isl), upper(t, isl) {}
306 // Unrestricted bounds.
307 static Bounds Unbounded(Isolate* isl) {
308 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 

Completed in 907 milliseconds