Home
last modified time | relevance | path

Searched refs:Bounds (Results 1 – 25 of 56) sorted by relevance

123

/external/v8/test/cctest/
Dtest-ast-expression-visitor.cc91 CHECK_EXPR(FunctionLiteral, Bounds::Unbounded()) { in TEST()
92 CHECK_EXPR(FunctionLiteral, Bounds::Unbounded()) { in TEST()
93 CHECK_EXPR(Assignment, Bounds::Unbounded()) { in TEST()
94 CHECK_VAR(start, Bounds::Unbounded()); in TEST()
95 CHECK_EXPR(BinaryOperation, Bounds::Unbounded()) { in TEST()
96 CHECK_VAR(start, Bounds::Unbounded()); in TEST()
97 CHECK_EXPR(Literal, Bounds::Unbounded()); in TEST()
100 CHECK_EXPR(Assignment, Bounds::Unbounded()) { in TEST()
101 CHECK_VAR(end, Bounds::Unbounded()); in TEST()
102 CHECK_EXPR(BinaryOperation, Bounds::Unbounded()) { in TEST()
[all …]
Dtest-asm-validator.cc19 #define FUNC_V_TYPE Bounds(Type::Function(Type::Undefined(zone), zone))
20 #define FUNC_I_TYPE Bounds(Type::Function(cache.kAsmSigned, zone))
21 #define FUNC_F_TYPE Bounds(Type::Function(cache.kAsmFloat, zone))
22 #define FUNC_D_TYPE Bounds(Type::Function(cache.kAsmDouble, zone))
24 Bounds(Type::Function(cache.kAsmDouble, cache.kAsmDouble, zone))
26 Bounds(Type::Function(cache.kAsmFloat, Type::Number(zone), zone))
28 Bounds(Type::Function(cache.kAsmSigned, cache.kAsmInt, zone))
30 Bounds(Type::Function(cache.kAsmDouble, cache.kAsmInt, cache.kAsmInt, zone))
32 Bounds(Type::Function(cache.kAsmSigned, cache.kAsmInt, cache.kAsmInt, zone))
34 Bounds(Type::Function(cache.kAsmDouble, cache.kAsmDouble, cache.kAsmDouble, \
[all …]
Dtest-typing-reset.cc20 #define INT32_TYPE Bounds(Type::Signed32(), Type::Signed32())
39 Bounds expected_type) { in CheckAllSame()
287 CheckAllSame(types, Bounds::Unbounded()); in TEST()
297 CheckAllSame(types, Bounds::Unbounded()); in TEST()
Dexpression-type-collector.h21 Bounds bounds;
/external/skia/src/core/
DSkRecordDraw.cpp184 typedef SkRect Bounds; typedef in SkRecords::FillBounds
188 const Bounds& getBounds(int index) const { return fBounds[index]; } in getBounds()
191 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const { in adjustAndMap()
212 return Bounds::MakeEmpty(); in adjustAndMap()
221 Bounds bounds; // Bounds of everything in the block.
243 Bounds clip = SkRect::Make(devBounds); in updateClipBoundsForClipOp()
247 fCurrentClipBounds = clip.intersect(fCullRect) ? clip : Bounds::MakeEmpty(); in updateClipBoundsForClipOp()
260 Bounds clip = SkRect::Make(op.devBounds); in updateClipBounds()
262 fCurrentClipBounds = clip.intersect(fCullRect) ? clip : Bounds::MakeEmpty(); in updateClipBounds()
302 PaintMayAffectTransparentBlack(paint) ? fCurrentClipBounds : Bounds::MakeEmpty(); in pushSaveBlock()
[all …]
/external/chromium-trace/catapult/telemetry/telemetry/timeline/
Dbounds_unittest.py13 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))
20 self.assertEquals(10, bounds.Bounds.GetOverlap(20, 30, 10, 40))
Dbounds.py5 class Bounds(object): class
14 bounds = Bounds()
104 return Bounds.GetOverlap(first_bounds.min_, first_bounds.max_,
/external/dng_sdk/source/
Ddng_image.h187 const dng_rect & Bounds () const in Bounds() function
196 return Bounds ().Size (); in Size()
203 return Bounds ().W (); in Width()
210 return Bounds ().H (); in Height()
332 SetConstant (value, Bounds ()); in SetConstant_uint8()
347 SetConstant_uint16 (value, Bounds ()); in SetConstant_uint16()
362 SetConstant_int16 (value, Bounds ()); in SetConstant_int16()
377 SetConstant_uint32 (value, Bounds ()); in SetConstant_uint32()
400 SetConstant_real32 (value, Bounds ()); in SetConstant_real32()
Ddng_opcodes.cpp280 fDstImage.Bounds ()); in SrcArea()
288 fDstImage.Bounds ()); in SrcTileSize()
302 fDstImage.Bounds ()); in ProcessArea()
320 fDstImage.Bounds (), in Start()
364 dng_rect modifiedBounds = ModifiedBounds (image->Bounds ()); in Apply()
376 if (modifiedBounds == image->Bounds ()) in Apply()
379 dstImage.Reset (host.Make_dng_image (image->Bounds (), in Apply()
465 fImage.Bounds (), in Start()
493 fImage.Bounds ()); in Process()
538 dng_rect modifiedBounds = ModifiedBounds (image->Bounds ()); in Apply()
Ddng_negative.cpp1483 dng_pixel_buffer buffer (image.Bounds (), 0, image.Planes (), in FindImageDigest()
1515 image.Bounds ()); in FindImageDigest()
1655 fUnitCell = dng_point (Min_int32 (kTileSize, fImage.Bounds ().H ()), in dng_find_new_raw_image_digest_task()
1656 Min_int32 (kTileSize, fImage.Bounds ().W ())); in dng_find_new_raw_image_digest_task()
1673 fTilesAcross = (fImage.Bounds ().W () + fUnitCell.h - 1) / fUnitCell.h; in Start()
1674 fTilesDown = (fImage.Bounds ().H () + fUnitCell.v - 1) / fUnitCell.v; in Start()
1698 int32 colIndex = (tile.l - fImage.Bounds ().l) / fUnitCell.h; in Process()
1699 int32 rowIndex = (tile.t - fImage.Bounds ().t) / fUnitCell.v; in Process()
1701 DNG_ASSERT (tile.l == fImage.Bounds ().l + colIndex * fUnitCell.h && in Process()
1702 tile.t == fImage.Bounds ().t + rowIndex * fUnitCell.v, in Process()
[all …]
Ddng_simple_image.cpp60 AutoPtr<dng_simple_image> result (new dng_simple_image (Bounds (), in Clone()
66 Bounds (), in Clone()
Ddng_host.cpp540 srcImage.Bounds (), in ResampleImage()
541 dstImage.Bounds (), in ResampleImage()
Ddng_jpeg_image.cpp177 fImageSize = image.Bounds ().Size (); in Encode()
207 image.Bounds ().Size () == negative.OriginalDefaultFinalSize (); in Encode()
Ddng_render.cpp1313 tempImage->Bounds (), in Render()
1318 srcBounds = tempImage->Bounds (); in Render()
1335 dstImage->Bounds ()); in Render()
/external/v8/src/crankshaft/
Dtyping.cc48 return Effect(Bounds(lower, Type::Any(zone()))); in ObservedOnStack()
374 NarrowType(expr, Bounds::Either( in VisitConditional()
390 NarrowType(expr, Bounds(type)); in VisitLiteral()
396 NarrowType(expr, Bounds(Type::Object(zone()))); in VisitRegExpLiteral()
424 NarrowType(expr, Bounds(Type::Object(zone()))); in VisitObjectLiteral()
435 NarrowType(expr, Bounds(Type::Object(zone()))); in VisitArrayLiteral()
488 NarrowType(expr, Bounds(Type::None(zone()))); in VisitThrow()
572 NarrowType(expr, Bounds(Type::None(zone()), Type::Receiver(zone()))); in VisitCallNew()
599 NarrowType(expr, Bounds(Type::Boolean(zone()))); in VisitUnaryOperation()
602 NarrowType(expr, Bounds(Type::Undefined(zone()))); in VisitUnaryOperation()
[all …]
Dtyping.h48 void NarrowType(Expression* e, Bounds b) { in NarrowType()
49 e->set_bounds(Bounds::Both(e->bounds(), b, zone())); in NarrowType()
52 e->set_bounds(Bounds::NarrowLower(e->bounds(), t, zone())); in NarrowLowerType()
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
Dp9-0x.cpp42 template<typename ...ElementTypes, unsigned ...Bounds>
43 struct split_arrays<ElementTypes[Bounds]...> {
47 typedef tuple<unsigned_c<Bounds>...> bounds_types;
/external/autotest/client/cros/multimedia/
Ddisplay_info.py11 class Bounds(object): class in DisplayInfo
52 self.bounds = self.Bounds(d['bounds'])
54 self.work_area = self.Bounds(d['workArea'])
/external/v8/src/
Deffects.h31 Bounds bounds;
34 explicit Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {} in modality()
38 return Effect(Bounds::Unbounded(), POSSIBLE); in Unknown()
42 return Effect(Bounds::Unbounded(), DEFINITE); in Forget()
48 return Effect(Bounds::Either(e1.bounds, e2.bounds, zone), e1.modality); in Seq()
54 Bounds::Either(e1.bounds, e2.bounds, zone), in Alt()
87 Bounds LookupBounds(Var var) { in LookupBounds()
90 ? effect.bounds : Bounds::Unbounded(); in LookupBounds()
Dtyping-reset.cc22 expression->set_bounds(Bounds::Unbounded()); in VisitExpression()
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/
Dtimeline_interaction_record.py144 bounds = timeline_bounds.Bounds()
205 return timeline_bounds.Bounds.GetOverlap(
215 overlapped_walltime_duration = timeline_bounds.Bounds.GetOverlap(
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
Drendering_stats_unittest.py305 timeline_ranges = [bounds.Bounds.CreateFromEvent(marker)
344 timeline_ranges = [bounds.Bounds.CreateFromEvent(marker)
385 timeline_ranges = [bounds.Bounds.CreateFromEvent(marker)
458 timeline_ranges = [bounds.Bounds.CreateFromEvent(marker)
517 timeline_ranges = [bounds.Bounds.CreateFromEvent(marker)
Drendering_frame_unittest.py55 timeline_range = timeline_bounds.Bounds()
110 timeline_range = timeline_bounds.Bounds()
/external/skia/src/animator/
DSkDisplayBounds.h16 DECLARE_DISPLAY_MEMBER_INFO(Bounds);
/external/pdfium/testing/resources/
Dbug_551460.in54 /Bounds [2.0]

123