/external/libmojo/ui/gfx/range/ |
D | range_unittest.cc | 26 EXPECT_EQ(T(10, 12), r1.Intersect(r1)); in TestContainsAndIntersects() 30 EXPECT_TRUE(r1.Intersect(r2).is_empty()); in TestContainsAndIntersects() 33 EXPECT_TRUE(r2.Intersect(r1).is_empty()); in TestContainsAndIntersects() 39 EXPECT_EQ(T(10, 12), r1.Intersect(r3)); in TestContainsAndIntersects() 40 EXPECT_EQ(T(10, 12), r3.Intersect(r1)); in TestContainsAndIntersects() 46 EXPECT_EQ(T(5, 8), r2.Intersect(r3)); in TestContainsAndIntersects() 47 EXPECT_EQ(T(5, 8), r3.Intersect(r2)); in TestContainsAndIntersects() 218 TypeParam invalid = r1.Intersect(r2); in TYPED_TEST()
|
D | range_f.cc | 17 RangeF RangeF::Intersect(const RangeF& range) const { in Intersect() function in gfx::RangeF 27 RangeF RangeF::Intersect(const Range& range) const { in Intersect() function in gfx::RangeF 29 return Intersect(range_f); in Intersect()
|
D | range_f.h | 81 RangeF Intersect(const RangeF& range) const; 82 RangeF Intersect(const Range& range) const;
|
D | range.cc | 16 Range Range::Intersect(const Range& range) const { in Intersect() function in gfx::Range
|
/external/tensorflow/tensorflow/core/framework/ |
D | tensor_slice_test.cc | 133 EXPECT_TRUE(a.Intersect(b, &c)); in TEST() 141 EXPECT_TRUE(b.Intersect(a, &c)); in TEST() 150 EXPECT_TRUE(a.Intersect(b, &c)); in TEST() 159 EXPECT_TRUE(a.Intersect(b, &c)); in TEST() 168 EXPECT_FALSE(a.Intersect(b, &c)); in TEST() 176 EXPECT_FALSE(a.Intersect(b, &c)); in TEST()
|
D | tensor_slice.h | 131 bool Intersect(const TensorSlice& other, TensorSlice* result) const; 134 return Intersect(other, nullptr); in Overlaps()
|
/external/v8/src/compiler/ |
D | operation-typer.cc | 266 return Type::Intersect(type, Type::Number(), zone()); in ToNumber() 280 type = Type::Intersect(type, Type::PlainNumber(), zone()); in NumberAbs() 369 type = Type::Intersect(type, Type::MinusZeroOrNaN(), zone()); in NumberFloor() 411 type = Type::Intersect(type, Type::PlainNumber(), zone()); in NumberSign() 476 return Type::Intersect(Type::Union(type, cache_.kSingletonZero, zone()), in NumberToInt32() 488 return Type::Intersect(Type::Union(type, cache_.kSingletonZero, zone()), in NumberToUint32() 537 lhs = Type::Intersect(lhs, Type::PlainNumber(), zone()); in NumberAdd() 538 rhs = Type::Intersect(rhs, Type::PlainNumber(), zone()); in NumberAdd() 582 lhs = Type::Intersect(lhs, Type::PlainNumber(), zone()); in NumberSubtract() 583 rhs = Type::Intersect(rhs, Type::PlainNumber(), zone()); in NumberSubtract() [all …]
|
D | typer.cc | 360 type = Type::Intersect(type, NodeProperties::GetType(node), in Decorate() 448 Type::Intersect(type, t->cache_.kIntegerOrMinusZero, t->zone()), in ToInteger() 1186 Type* current_integer = Type::Intersect(current_type, integer, zone()); in Weaken() 1187 Type* previous_integer = Type::Intersect(previous_type, integer, zone()); in Weaken() 1778 index = Type::Intersect(index, Type::Integral32(), zone()); in TypeCheckBounds() 1798 return Type::Intersect(arg, Type::InternalizedString(), zone()); in TypeCheckInternalizedString() 1808 return Type::Intersect(arg, Type::Number(), zone()); in TypeCheckNumber() 1813 return Type::Intersect(arg, Type::Receiver(), zone()); in TypeCheckReceiver() 1818 return Type::Intersect(arg, Type::SignedSmall(), zone()); in TypeCheckSmi() 1823 return Type::Intersect(arg, Type::String(), zone()); in TypeCheckString() [all …]
|
D | store-store-elimination.cc | 107 UnobservablesSet Intersect(UnobservablesSet other, Zone* zone) const; 440 cur_set = cur_set.Intersect(new_set, temp_zone()); in RecomputeUseIntersection() 484 UnobservablesSet UnobservablesSet::Intersect(UnobservablesSet other, in Intersect() function in v8::internal::compiler::UnobservablesSet
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | RangeConstraintManager.cpp | 247 RangeSet Intersect(BasicValueFactory &BV, Factory &F, in Intersect() function in __anond608d61b0111::RangeSet 390 if (Ranges->Intersect(BV, F, Zero, Zero).isEmpty()) in checkNull() 430 Result = Result.Intersect(BV, F, ++IntType.getZeroValue(), in GetRange() 465 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, Upper, Lower); in assumeSymNE() 480 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, AdjInt, AdjInt); in assumeSymEQ() 509 return GetRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); in getSymLTRange() 545 return GetRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); in getSymGTRange() 581 return GetRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); in getSymGERange() 617 return RS.Intersect(getBasicVals(), F, Lower, Upper); in getSymLERange() 645 return GetRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); in getSymLERange()
|
/external/pdfium/core/fxge/ |
D | cfx_cliprgn.cpp | 33 m_Box.Intersect(rect); in IntersectRect() 47 m_Box.Intersect(mask_rect); in IntersectMaskRect() 81 new_box.Intersect(mask_box); in IntersectMaskF()
|
/external/pdfium/core/fxcrt/ |
D | fx_coordinates.h | 199 void Intersect(const FX_RECT& src); 200 void Intersect(int l, int t, int r, int b) { Intersect(FX_RECT(l, t, r, b)); } in Intersect() function 247 void Intersect(const CFX_FloatRect& other_rect); 540 void Intersect(const RectType& rt) { in Intersect() function 554 rect.Intersect(*this); in IntersectWith() 559 rect.Intersect(*this); in IntersectWith()
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_imagerenderer.cpp | 52 clip_box.Intersect(image_rect); in Start() 82 dest_rect.Intersect(image_rect); in Start()
|
/external/pdfium/core/fpdfapi/page/ |
D | cpdf_clippath.cpp | 49 rect.Intersect(path_rect); in GetClipBox() 63 rect.Intersect(layer_rect); in GetClipBox()
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_list_box.cpp | 115 rcItem.Intersect(rcList); in DrawThisAppearance() 117 rcItem.Intersect(rcClient); in DrawThisAppearance() 286 rcCaret.Intersect(GetClientRect()); in GetFocusRect()
|
D | cpwl_caret.cpp | 39 rcRect.Intersect(rcClip); in DrawThisAppearance()
|
/external/tensorflow/tensorflow/core/util/ |
D | tensor_slice_set.cc | 93 if (slice.Intersect(x.second.slice, &intersection)) { in Query() 150 if (slice.Intersect(x.second.slice, &intersection)) { in QueryMeta()
|
/external/pdfium/core/fpdfdoc/ |
D | cpvt_wordrange.h | 45 CPVT_WordRange Intersect(const CPVT_WordRange& that) const { in Intersect() function
|
/external/protobuf/python/google/protobuf/internal/ |
D | well_known_types_test.py | 400 out_mask.Intersect(mask1, mask2) 405 out_mask.Intersect(mask1, mask2) 410 out_mask.Intersect(mask1, mask2) 414 out_mask.Intersect(mask1, mask2)
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | api.h | 65 SWR_RECT& Intersect(const SWR_RECT& other) in Intersect() function 83 return Intersect(other);
|
/external/webrtc/talk/media/base/ |
D | codec.cc | 67 void FeedbackParams::Intersect(const FeedbackParams& from) { in Intersect() function in cricket::FeedbackParams 163 feedback_params.Intersect(other.feedback_params); in IntersectFeedbackParams()
|
/external/v8/src/crankshaft/ |
D | hydrogen-check-elimination.cc | 266 le->maps_ = re->maps_ = le->maps_->Intersect(re->maps_, zone); in Copy() 284 entry->maps_ = entry->maps_->Intersect(string_maps(), zone); in Copy() 394 MapSet intersection = instr->maps()->Intersect( in ReduceCheckMaps() 594 MapSet intersection = le->maps_->Intersect(re->maps_, zone()); in ReduceCompareObjectEqAndBranch() 617 MapSet intersection = entry->maps_->Intersect(string_maps(), zone()); in ReduceIsStringAndBranch()
|
/external/libmojo/ui/gfx/geometry/ |
D | rect_f.cc | 100 void RectF::Intersect(const RectF& rect) { in Intersect() function in gfx::RectF 235 result.Intersect(b); in IntersectRects()
|
/external/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
D | geom.h | 156 inline BoundingBox Intersect(const BoundingBox& that) const { in Intersect() function 186 const float intersect_area = this->Intersect(that).GetArea(); in PascalScore()
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_imagerenderer.cpp | 218 rect.Intersect(m_pRenderStatus->GetRenderDevice()->GetClipBox()); in GetDrawRect() 424 clip_box.Intersect(image_rect); in StartDIBSource() 461 dest_rect.Intersect(image_rect); in StartDIBSource()
|