/external/chromium_org/v8/src/compiler/ |
D | typer.cc | 70 Bounds TypeNode(Node* node) { in TypeNode() 84 return Bounds(); in TypeNode() 90 #define DECLARE_METHOD(x) inline Bounds Type##x(Node* node); 95 Bounds OperandType(Node* node, int i) { in VALUE_OP_LIST() 100 Bounds result = in ContextType() 126 Bounds bounds = TypeNode(node); in Post() 153 Bounds previous = NodeProperties::GetBounds(node); in Pre() 154 Bounds bounds = TypeNode(node); in Pre() 155 NodeProperties::SetBounds(node, Bounds::Both(bounds, previous, zone())); in Pre() 178 Bounds previous = NodeProperties::GetBounds(node); in Pre() [all …]
|
D | node.h | 34 Bounds bounds() { return bounds_; } in bounds() 38 Bounds bounds_; 39 explicit NodeData(Zone* zone) : bounds_(Bounds(Type::None(zone))) {} in NodeData() 42 void set_bounds(Bounds b) { bounds_ = b; } in set_bounds()
|
D | node-properties.h | 43 static inline Bounds GetBounds(Node* node); 44 static inline void SetBounds(Node* node, Bounds bounds);
|
D | node-properties-inl.h | 201 inline Bounds NodeProperties::GetBounds(Node* node) { return node->bounds(); } in GetBounds() 203 inline void NodeProperties::SetBounds(Node* node, Bounds b) { in SetBounds()
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkRecordDraw.cpp | 139 const Bounds largest = Bounds::MakeLargest(); in FillBounds() 175 typedef SkRect Bounds; typedef in SkRecords::FillBounds 179 Bounds bounds; // Bounds of everything in the block. 199 Bounds clip = SkRect::Make(devBounds); in updateClipBoundsForClipOp() 202 fCurrentClipBounds = this->adjustForSaveLayerPaints(&clip) ? clip : Bounds::MakeLargest(); in updateClipBoundsForClipOp() 212 Bounds clip = SkRect::Make(op.devBounds); in updateClipBounds() 214 this->adjustForSaveLayerPaints(&clip, kSavesToIgnore) ? clip : Bounds::MakeLargest(); in updateClipBounds() 251 SaveBounds sb = { 0, Bounds::MakeEmpty(), paint }; in pushSaveBlock() 296 Bounds popSaveBlock() { in popSaveBlock() 302 const Bounds& bounds = in popSaveBlock() [all …]
|
/external/chromium_org/tools/telemetry/telemetry/timeline/ |
D | bounds_unittest.py | 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)) 20 self.assertEquals(10, bounds.Bounds.GetOverlap(20, 30, 10, 40))
|
D | bounds.py | 5 class Bounds(object): class 14 bounds = Bounds() 104 return Bounds.GetOverlap(first_bounds.min_, first_bounds.max_,
|
D | model.py | 56 self._bounds = bounds.Bounds() 162 self._thread_time_bounds[thread] = bounds.Bounds()
|
/external/chromium_org/extensions/renderer/resources/ |
D | app_window_custom_bindings.js | 22 var Bounds = function(boundsKey) { class 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', { 97 Bounds.prototype.setPosition = function(left, top) { [all …]
|
/external/chromium_org/v8/src/ |
D | typing.cc | 66 return Effect(Bounds(lower, Type::Any(zone()))); in ObservedOnStack() 376 NarrowType(expr, Bounds::Either( in VisitConditional() 392 NarrowType(expr, Bounds(type)); in VisitLiteral() 397 NarrowType(expr, Bounds(Type::RegExp(zone()))); in VisitRegExpLiteral() 418 NarrowType(expr, Bounds(Type::Object(zone()))); in VisitObjectLiteral() 429 NarrowType(expr, Bounds(Type::Array(zone()))); in VisitArrayLiteral() 479 NarrowType(expr, Bounds(Type::None(zone()))); in VisitThrow() 546 NarrowType(expr, Bounds(Type::None(zone()), Type::Receiver(zone()))); in VisitCallNew() 573 NarrowType(expr, Bounds(Type::Boolean(zone()))); in VisitUnaryOperation() 576 NarrowType(expr, Bounds(Type::Undefined(zone()))); in VisitUnaryOperation() [all …]
|
D | effects.h | 33 Bounds bounds; 36 explicit Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {} in modality() 40 return Effect(Bounds::Unbounded(zone), POSSIBLE); in Unknown() 44 return Effect(Bounds::Unbounded(zone), DEFINITE); in Forget() 50 return Effect(Bounds::Either(e1.bounds, e2.bounds, zone), e1.modality); in Seq() 56 Bounds::Either(e1.bounds, e2.bounds, zone), in Alt() 89 Bounds LookupBounds(Var var) { in LookupBounds() 92 ? effect.bounds : Bounds::Unbounded(Base::zone()); in LookupBounds()
|
D | typing.h | 51 void NarrowType(Expression* e, Bounds b) { in NarrowType() 52 e->set_bounds(Bounds::Both(e->bounds(), b, zone())); in NarrowType() 55 e->set_bounds(Bounds::NarrowLower(e->bounds(), t, zone())); in NarrowLowerType()
|
/external/chromium_org/third_party/lcov/contrib/galaxy/ |
D | posterize.pl | 42 my $Bounds = ""; 290 $Bounds = `tail -1 $Image`; 291 ($Junk, $Junk, $minX, $minY, $maxX, $maxY) = split / /, $Bounds;
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/ |
D | p9-0x.cpp | 42 template<typename ...ElementTypes, unsigned ...Bounds> 43 struct split_arrays<ElementTypes[Bounds]...> { 47 typedef tuple<unsigned_c<Bounds>...> bounds_types;
|
/external/chromium_org/tools/telemetry/telemetry/web_perf/ |
D | timeline_interaction_record.py | 168 bounds = timeline_bounds.Bounds() 235 return timeline_bounds.Bounds.GetOverlap( 245 overlapped_walltime_duration = timeline_bounds.Bounds.GetOverlap(
|
/external/chromium_org/extensions/common/api/ |
D | app_current_window_internal.idl | 10 dictionary Bounds { 47 static void setBounds(DOMString boundsType, Bounds bounds);
|
D | system_display.idl | 8 dictionary Bounds { 70 Bounds bounds; 80 Bounds workArea;
|
/external/chromium_org/third_party/skia/src/animator/ |
D | SkDisplayBounds.h | 16 DECLARE_DISPLAY_MEMBER_INFO(Bounds);
|
/external/skia/src/animator/ |
D | SkDisplayBounds.h | 16 DECLARE_DISPLAY_MEMBER_INFO(Bounds);
|
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
D | SDL_BWin.h | 114 SDL_GLView = new BGLView(Bounds(), "SDL GLView", in CreateView() 133 SDL_View = new SDL_BView(Bounds()); in CreateView()
|
/external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/ |
D | rendering_frame_unittest.py | 55 timeline_range = timeline_bounds.Bounds() 110 timeline_range = timeline_bounds.Bounds()
|
/external/chromium_org/extensions/browser/api/app_current_window_internal/ |
D | app_current_window_internal_api.cc | 32 using app_current_window_internal::Bounds; 58 void GetBoundsFields(const Bounds& bounds_spec, gfx::Rect* bounds) { in GetBoundsFields() 208 const Bounds& bounds_spec = params->bounds; in RunWithWindow()
|
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/ |
D | SkPdfType3FunctionDictionary_autogen.cpp | 23 SkPdfArray* SkPdfType3FunctionDictionary::Bounds(SkPdfNativeDoc* doc) { in Bounds() function in SkPdfType3FunctionDictionary
|
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/ |
D | SkPdfType3FunctionDictionary_autogen.cpp | 23 SkPdfArray* SkPdfType3FunctionDictionary::Bounds(SkPdfNativeDoc* doc) { in Bounds() function in SkPdfType3FunctionDictionary
|
/external/llvm/lib/CodeGen/ |
D | MachineTraceMetrics.cpp | 465 LoopBounds Bounds(BlockInfo, MTM.Loops); in computeTrace() local 468 Bounds.Downward = false; in computeTrace() 469 Bounds.Visited.clear(); in computeTrace() 471 for (UpwardPO I = ipo_ext_begin(MBB, Bounds), E = ipo_ext_end(MBB, Bounds); in computeTrace() 488 Bounds.Downward = true; in computeTrace() 489 Bounds.Visited.clear(); in computeTrace() 491 for (DownwardPO I = po_ext_begin(MBB, Bounds), E = po_ext_end(MBB, Bounds); in computeTrace()
|