HomeSort by relevance Sort by last modified time
    Searched refs:Bounds (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium_org/tools/telemetry/telemetry/timeline/
bounds_unittest.py 6 from telemetry.timeline import bounds namespace
13 self.assertEquals(0, bounds.Bounds.GetOverlap(10, 20, 30, 40))
14 self.assertEquals(0, bounds.Bounds.GetOverlap(30, 40, 10, 20))
16 self.assertEquals(10, bounds.Bounds.GetOverlap(10, 30, 20, 40))
17 self.assertEquals(10, bounds.Bounds.GetOverlap(20, 40, 10, 30))
19 self.assertEquals(10, bounds.Bounds.GetOverlap(10, 40, 20, 30)
    [all...]
bounds.py 5 class Bounds(object):
6 """Represents a min-max bounds."""
14 bounds = Bounds()
15 bounds.AddEvent(event)
16 return bounds
20 return "Bounds()"
22 return "Bounds(min=%s,max=%s)" % (self.min_, self.max_)
41 def bounds(self): member in class:Bounds
68 def AddBounds(self, bounds)
    [all...]
  /external/chromium_org/v8/src/compiler/
typer.cc 70 Bounds TypeNode(Node* node) {
84 return Bounds();
90 #define DECLARE_METHOD(x) inline Bounds Type##x(Node* node);
95 Bounds OperandType(Node* node, int i) {
100 Bounds result =
126 Bounds bounds = TypeNode(node); local
127 NodeProperties::SetBounds(node, bounds);
153 Bounds previous = NodeProperties::GetBounds(node);
154 Bounds bounds = TypeNode(node) local
179 Bounds bounds = TypeNode(node); local
222 Bounds bounds = typing.TypeNode(node); local
288 Bounds bounds = OperandType(node, 0); local
    [all...]
node.h 34 Bounds bounds() { return bounds_; } function in class:v8::internal::compiler::NodeData
38 Bounds bounds_;
39 explicit NodeData(Zone* zone) : bounds_(Bounds(Type::None(zone))) {}
42 void set_bounds(Bounds b) { bounds_ = b; }
node-properties.h 43 static inline Bounds GetBounds(Node* node);
44 static inline void SetBounds(Node* node, Bounds bounds);
schedule.cc 54 Bounds bounds = NodeProperties::GetBounds(node); local
56 bounds.lower->PrintTo(os);
57 if (!bounds.upper->Is(bounds.lower)) {
59 bounds.upper->PrintTo(os);
node-properties-inl.h 199 // Type Bounds.
201 inline Bounds NodeProperties::GetBounds(Node* node) { return node->bounds(); }
203 inline void NodeProperties::SetBounds(Node* node, Bounds b) {
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayBounds.h 16 DECLARE_DISPLAY_MEMBER_INFO(Bounds);
  /external/skia/src/animator/
SkDisplayBounds.h 16 DECLARE_DISPLAY_MEMBER_INFO(Bounds);
  /external/chromium_org/third_party/skia/src/core/
SkRecordDraw.cpp 21 // this canvas' clip bounds transformed back into identity space, which
75 DRAW(SaveLayer, saveLayer(r.bounds, r.paint, r.flags));
118 // The interesting part here is how to calculate bounds for ops which don't
119 // have intrinsic bounds. What is the bounds of a Save or a Translate?
121 // We answer this by thinking about a particular definition of bounds: if I
123 // the bounds of a Save, a Translate, a Restore, etc. are the union of the
124 // bounds of Draw* ops that they might have an effect on. For any given
125 // Save/Restore block, the bounds of the Save, the Restore, and any other
126 // non-drawing ("control") ops inside are exactly the union of the bounds o
179 Bounds bounds; \/\/ Bounds of everything in the block. member in struct:SkRecords::FillBounds::SaveBounds
302 const Bounds& bounds = local
336 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; } function in class:SkRecords::FillBounds
338 Bounds bounds(const Clear&) const { return Bounds::MakeLargest(); } \/\/ Ignores the clip. function in class:SkRecords::FillBounds
339 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; } function in class:SkRecords::FillBounds
340 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } \/\/ NoOps don't draw. function in class:SkRecords::FillBounds
342 Bounds bounds(const DrawSprite& op) const { function in class:SkRecords::FillBounds
347 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); } function in class:SkRecords::FillBounds
348 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); } function in class:SkRecords::FillBounds
349 Bounds bounds(const DrawRRect& op) const { function in class:SkRecords::FillBounds
352 Bounds bounds(const DrawDRRect& op) const { function in class:SkRecords::FillBounds
356 Bounds bounds(const DrawBitmapRectToRect& op) const { function in class:SkRecords::FillBounds
359 Bounds bounds(const DrawBitmapNine& op) const { function in class:SkRecords::FillBounds
362 Bounds bounds(const DrawBitmap& op) const { function in class:SkRecords::FillBounds
367 Bounds bounds(const DrawBitmapMatrix& op) const { function in class:SkRecords::FillBounds
374 Bounds bounds(const DrawPath& op) const { function in class:SkRecords::FillBounds
378 Bounds bounds(const DrawPoints& op) const { function in class:SkRecords::FillBounds
388 Bounds bounds(const DrawPatch& op) const { function in class:SkRecords::FillBounds
393 Bounds bounds(const DrawVertices& op) const { function in class:SkRecords::FillBounds
399 Bounds bounds(const DrawPicture& op) const { function in class:SkRecords::FillBounds
407 Bounds bounds(const DrawPosText& op) const { function in class:SkRecords::FillBounds
418 Bounds bounds(const DrawPosTextH& op) const { function in class:SkRecords::FillBounds
433 Bounds bounds(const DrawTextOnPath& op) const { function in class:SkRecords::FillBounds
449 Bounds bounds(const DrawTextBlob& op) const { function in class:SkRecords::FillBounds
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p9-0x.cpp 42 template<typename ...ElementTypes, unsigned ...Bounds>
43 struct split_arrays<ElementTypes[Bounds]...> {
46 // FIXME: Would like to have unsigned_tuple<Bounds...> here.
47 typedef tuple<unsigned_c<Bounds>...> bounds_types;
  /external/chromium_org/v8/src/
typing.h 51 void NarrowType(Expression* e, Bounds b) {
52 e->set_bounds(Bounds::Both(e->bounds(), b, zone()));
55 e->set_bounds(Bounds::NarrowLower(e->bounds(), t, zone()));
effects.h 17 // modification of type bounds (e.g. of a variable).
26 // merges into a previous effect, i.e., type bounds are merged. Alternative
27 // composition always merges bounds. It yields a possible effect if at least
33 Bounds bounds; member in struct:v8::internal::Effect
36 explicit Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {}
40 return Effect(Bounds::Unbounded(zone), POSSIBLE);
44 return Effect(Bounds::Unbounded(zone), DEFINITE);
50 return Effect(Bounds::Either(e1.bounds, e2.bounds, zone), e1.modality)
    [all...]
typing.cc 66 return Effect(Bounds(lower, Type::Any(zone())));
376 NarrowType(expr, Bounds::Either(
377 expr->then_expression()->bounds(),
378 expr->else_expression()->bounds(), zone()));
392 NarrowType(expr, Bounds(type));
397 NarrowType(expr, Bounds(Type::RegExp(zone())));
418 NarrowType(expr, Bounds(Type::Object(zone())));
429 NarrowType(expr, Bounds(Type::Array(zone())));
458 NarrowType(expr, rhs->bounds());
462 store_.Seq(variable_index(proxy->var()), Effect(expr->bounds()));
    [all...]
  /external/chromium_org/third_party/lcov/contrib/galaxy/
posterize.pl 42 my $Bounds = "";
288 # Find the bounds for the image
290 $Bounds = `tail -1 $Image`;
291 ($Junk, $Junk, $minX, $minY, $maxX, $maxY) = split / /, $Bounds;
  /external/chromium_org/extensions/renderer/resources/
app_window_custom_bindings.js 21 // Bounds class definition.
22 var Bounds = function(boundsKey) {
25 Object.defineProperty(Bounds.prototype, 'left', {
34 Object.defineProperty(Bounds.prototype, 'top', {
43 Object.defineProperty(Bounds.prototype, 'width', {
52 Object.defineProperty(Bounds.prototype, 'height', {
61 Object.defineProperty(Bounds.prototype, 'minWidth', {
70 Object.defineProperty(Bounds.prototype, 'maxWidth', {
79 Object.defineProperty(Bounds.prototype, 'minHeight', {
88 Object.defineProperty(Bounds.prototype, 'maxHeight',
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType3FunctionDictionary_autogen.cpp 23 SkPdfArray* SkPdfType3FunctionDictionary::Bounds(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Bounds", "");
32 return get("Bounds", "") != NULL;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType3FunctionDictionary_autogen.cpp 23 SkPdfArray* SkPdfType3FunctionDictionary::Bounds(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("Bounds", "");
32 return get("Bounds", "") != NULL;
  /external/chromium_org/tools/telemetry/telemetry/web_perf/
timeline_interaction_record.py 7 import telemetry.timeline.bounds as timeline_bounds
168 bounds = timeline_bounds.Bounds()
169 bounds.AddValue(self.start)
170 bounds.AddValue(self.end)
171 return bounds
235 return timeline_bounds.Bounds.GetOverlap(
245 overlapped_walltime_duration = timeline_bounds.Bounds.GetOverlap(
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 51 SDL_BWin(BRect bounds) :
52 BDirectWindow(bounds, "Untitled", B_TITLED_WINDOW, 0) {
114 SDL_GLView = new BGLView(Bounds(), "SDL GLView",
133 SDL_View = new SDL_BView(Bounds());
SDL_BView.h 64 BRect bounds; local
65 bounds.top = bounds.left = 0;
66 bounds.right = width;
67 bounds.bottom = height;
69 FillRect(bounds, B_SOLID_HIGH);
72 bounds = image->Bounds();
73 Draw(bounds);
  /external/chromium_org/ash/
screen_util_unittest.cc 24 TEST_F(ScreenUtilTest, Bounds) {
39 // Maximized bounds
47 // Display bounds
55 // Work area bounds
  /external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
fast_metric.py 7 from telemetry.timeline import bounds namespace
73 bounds.Bounds.GetOverlap(r.start, r.end, s.start, s.end)
rendering_frame.py 8 from telemetry.timeline import bounds namespace
41 self._bounds = bounds.Bounds()
51 def bounds(self): member in class:RenderingFrame
80 if frame.bounds.Intersects(timeline_range):
84 frames.sort(key=lambda frame: frame.bounds.min)
rendering_frame_unittest.py 7 import telemetry.timeline.bounds as timeline_bounds
55 timeline_range = timeline_bounds.Bounds()
110 timeline_range = timeline_bounds.Bounds()

Completed in 886 milliseconds

1 2 3