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

1 2 3

  /external/v8/test/cctest/
test-asm-validator.cc 19 #define FUNC_FOREIGN_TYPE Bounds(Type::Function(Type::Any(), zone))
20 #define FUNC_V_TYPE Bounds(Type::Function(Type::Undefined(), zone))
21 #define FUNC_I_TYPE Bounds(Type::Function(cache.kAsmSigned, zone))
22 #define FUNC_F_TYPE Bounds(Type::Function(cache.kAsmFloat, zone))
23 #define FUNC_D_TYPE Bounds(Type::Function(cache.kAsmDouble, zone))
25 Bounds(Type::Function(cache.kAsmDouble, cache.kAsmDouble, zone))
27 Bounds(Type::Function(cache.kAsmFloat, Type::Number(), zone))
29 Bounds(Type::Function(cache.kAsmSigned, cache.kAsmInt, zone))
31 Bounds(Type::Function(cache.kAsmDouble, cache.kAsmInt, cache.kAsmInt, zone))
33 Bounds(Type::Function(cache.kAsmSigned, cache.kAsmInt, cache.kAsmInt, zone)
    [all...]
expression-type-collector.h 23 Bounds bounds; member in struct:v8::internal::ExpressionTypeEntry
29 const AstTypeBounds* bounds,
  /external/chromium-trace/catapult/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/v8/src/ast/
ast-type-bounds.h 5 // A container to associate type bounds with AST Expression nodes.
23 Bounds get(Expression* expression) const {
24 ZoneMap<Expression*, Bounds>::const_iterator i =
26 return (i != bounds_map_.end()) ? i->second : Bounds::Unbounded();
29 void set(Expression* expression, Bounds bounds) {
30 bounds_map_[expression] = bounds;
34 ZoneMap<Expression*, Bounds> bounds_map_;
  /external/skia/src/animator/
SkDisplayBounds.h 16 DECLARE_DISPLAY_MEMBER_INFO(Bounds);
  /external/dng_sdk/source/
dng_image.h 136 // Bounds for this image.
150 /// How to handle requests to get image areas outside the image bounds.
175 dng_image (const dng_rect &bounds,
185 /// Getter method for bounds of an image.
187 const dng_rect & Bounds () const
196 return Bounds ().Size ();
203 return Bounds ().W ();
210 return Bounds ().H ();
268 /// Shrink bounds of image to given rectangle.
332 SetConstant (value, Bounds ());
    [all...]
dng_opcodes.cpp 280 fDstImage.Bounds ());
288 fDstImage.Bounds ());
302 fDstImage.Bounds ());
320 fDstImage.Bounds (),
364 dng_rect modifiedBounds = ModifiedBounds (image->Bounds ());
376 if (modifiedBounds == image->Bounds ())
379 dstImage.Reset (host.Make_dng_image (image->Bounds (),
465 fImage.Bounds (),
493 fImage.Bounds ());
538 dng_rect modifiedBounds = ModifiedBounds (image->Bounds ());
    [all...]
dng_negative.cpp 894 DNG_ASSERT (channel < ColorChannels (), "Channel out of bounds");
1483 dng_pixel_buffer buffer (image.Bounds (), 0, image.Planes (),
1515 image.Bounds ());
    [all...]
dng_host.cpp 341 dng_image * dng_host::Make_dng_image (const dng_rect &bounds,
346 dng_image *result = new dng_simple_image (bounds,
540 srcImage.Bounds (),
541 dstImage.Bounds (),
dng_simple_image.cpp 25 dng_simple_image::dng_simple_image (const dng_rect &bounds,
30 : dng_image (bounds,
40 ComputeBufferSize (pixelType, bounds.Size (), planes, pad16Bytes);
44 fBuffer = dng_pixel_buffer (bounds, 0, planes, pixelType, pcInterleaved, fMemory->Buffer ());
60 AutoPtr<dng_simple_image> result (new dng_simple_image (Bounds (),
66 Bounds (),
dng_tile_iterator.cpp 45 area & image.Bounds ());
dng_jpeg_image.cpp 177 fImageSize = image.Bounds ().Size ();
207 image.Bounds ().Size () == negative.OriginalDefaultFinalSize ();
dng_ifd.h 254 dng_rect Bounds () const
  /external/autotest/client/cros/multimedia/
display_info.py 11 class Bounds(object):
12 """The class match Bounds object from chrome.system.display API.
52 self.bounds = self.Bounds(d['bounds'])
54 self.work_area = self.Bounds(d['workArea'])
  /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/skia/src/core/
SkRecordDraw.cpp 25 // this canvas' clip bounds transformed back into identity space, which
81 DRAW(SaveLayer, saveLayer(SkCanvas::SaveLayerRec(r.bounds, r.paint, r.backdrop, r.saveLayerFlags)));
135 // The interesting part here is how to calculate bounds for ops which don't
136 // have intrinsic bounds. What is the bounds of a Save or a Translate?
138 // We answer this by thinking about a particular definition of bounds: if I
140 // the bounds of a Save, a Translate, a Restore, etc. are the union of the
141 // bounds of Draw* ops that they might have an effect on. For any given
142 // Save/Restore block, the bounds of the Save, the Restore, and any other
143 // non-drawing ("control") ops inside are exactly the union of the bounds o
221 Bounds bounds; \/\/ Bounds of everything in the block. member in struct:SkRecords::FillBounds::SaveBounds
386 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; } function in class:SkRecords::FillBounds
388 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; } function in class:SkRecords::FillBounds
389 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } \/\/ NoOps don't draw. function in class:SkRecords::FillBounds
391 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); } function in class:SkRecords::FillBounds
392 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); } function in class:SkRecords::FillBounds
393 Bounds bounds(const DrawRRect& op) const { function in class:SkRecords::FillBounds
396 Bounds bounds(const DrawDRRect& op) const { function in class:SkRecords::FillBounds
399 Bounds bounds(const DrawImage& op) const { function in class:SkRecords::FillBounds
405 Bounds bounds(const DrawImageRect& op) const { function in class:SkRecords::FillBounds
408 Bounds bounds(const DrawImageNine& op) const { function in class:SkRecords::FillBounds
411 Bounds bounds(const DrawBitmapRect& op) const { function in class:SkRecords::FillBounds
414 Bounds bounds(const DrawBitmapRectFast& op) const { function in class:SkRecords::FillBounds
417 Bounds bounds(const DrawBitmapRectFixedSize& op) const { function in class:SkRecords::FillBounds
420 Bounds bounds(const DrawBitmapNine& op) const { function in class:SkRecords::FillBounds
423 Bounds bounds(const DrawBitmap& op) const { function in class:SkRecords::FillBounds
429 Bounds bounds(const DrawPath& op) const { function in class:SkRecords::FillBounds
433 Bounds bounds(const DrawPoints& op) const { function in class:SkRecords::FillBounds
443 Bounds bounds(const DrawPatch& op) const { function in class:SkRecords::FillBounds
448 Bounds bounds(const DrawVertices& op) const { function in class:SkRecords::FillBounds
454 Bounds bounds(const DrawAtlas& op) const { function in class:SkRecords::FillBounds
462 Bounds bounds(const DrawPicture& op) const { function in class:SkRecords::FillBounds
468 Bounds bounds(const DrawPosText& op) const { function in class:SkRecords::FillBounds
479 Bounds bounds(const DrawPosTextH& op) const { function in class:SkRecords::FillBounds
494 Bounds bounds(const DrawTextOnPath& op) const { function in class:SkRecords::FillBounds
510 Bounds bounds(const DrawTextBlob& op) const { function in class:SkRecords::FillBounds
516 Bounds bounds(const DrawDrawable& op) const { function in class:SkRecords::FillBounds
    [all...]
  /external/v8/src/crankshaft/
typing.h 9 #include "src/ast/ast-type-bounds.h"
24 AstTypeBounds* bounds);
50 void NarrowType(Expression* e, Bounds b) {
51 bounds_->set(e, Bounds::Both(bounds_->get(e), b, zone()));
54 bounds_->set(e, Bounds::NarrowLower(bounds_->get(e), t, zone()));
typing.cc 19 AstTypeBounds* bounds)
30 bounds_(bounds) {
49 return Effect(Bounds(lower, Type::Any()));
369 Bounds::Either(bounds_->get(expr->then_expression()),
384 NarrowType(expr, Bounds(type));
390 NarrowType(expr, Bounds(Type::Object()));
418 NarrowType(expr, Bounds(Type::Object()));
429 NarrowType(expr, Bounds(Type::Object()));
482 NarrowType(expr, Bounds(Type::None()));
566 NarrowType(expr, Bounds(Type::None(), Type::Receiver()))
    [all...]
  /external/v8/src/
effects.h 15 // modification of type bounds (e.g. of a variable).
24 // merges into a previous effect, i.e., type bounds are merged. Alternative
25 // composition always merges bounds. It yields a possible effect if at least
31 Bounds bounds; member in struct:v8::internal::Effect
34 explicit Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {}
38 return Effect(Bounds::Unbounded(), POSSIBLE);
42 return Effect(Bounds::Unbounded(), DEFINITE);
48 return Effect(Bounds::Either(e1.bounds, e2.bounds, zone), e1.modality)
    [all...]
types.h 920 // Type bounds. A simple struct to represent a pair of lower/upper types.
922 struct Bounds {
926 Bounds()
927 : // Make sure accessing uninitialized bounds crashes big-time.
930 explicit Bounds(Type* t) : lower(t), upper(t) {}
931 Bounds(Type* l, Type* u) : lower(l), upper(u) { DCHECK(lower->Is(upper)); }
933 // Unrestricted bounds.
934 static Bounds Unbounded() { return Bounds(Type::None(), Type::Any()); }
937 static Bounds Both(Bounds b1, Bounds b2, Zone* zone)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/
timeline_interaction_record.py 8 import telemetry.timeline.bounds as timeline_bounds
144 bounds = timeline_bounds.Bounds()
145 bounds.AddValue(self.start)
146 bounds.AddValue(self.end)
147 return bounds
205 return timeline_bounds.Bounds.GetOverlap(
215 overlapped_walltime_duration = timeline_bounds.Bounds.GetOverlap(
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
rendering_frame.py 7 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()
rendering_stats_unittest.py 9 from telemetry.timeline import bounds namespace
66 first_frame: Is this the first frame within the bounds of an action?
86 # Add frame_time if this is not the first frame in within the bounds of an
98 first_frame: Is this the first frame within the bounds of an action?
116 # Add frame_time if this is not the first frame in within the bounds of an
128 first_frame: Is this the first frame within the bounds of an action?
150 # Add frame_time if this is not the first frame in within the bounds of an
305 timeline_ranges = [bounds.Bounds.CreateFromEvent(marker)
344 timeline_ranges = [bounds.Bounds.CreateFromEvent(marker
    [all...]

Completed in 797 milliseconds

1 2 3