Searched refs:Union (Results 76 - 100 of 219) sorted by path

123456789

/external/chromium_org/mojo/services/view_manager/
H A Ddisplay_manager.cc101 dirty_rect_.Union(root_relative_rect);
/external/chromium_org/pdf/
H A Dfading_controls.cc224 rc = rc.Union((*iter)->rect());
H A Dpaint_aggregator.cc229 rect = existing_rect.Union(rect);
244 pp::Rect combined_rect = existing_rect.Union(rect);
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc1823 bounding_rect = bounding_rect.Union(rects[i]);
1871 rect = rect.Union(rects[j]);
/external/chromium_org/ppapi/cpp/
H A Drect.cc65 Rect Rect::Union(const Rect& rect) const { function in class:pp::Rect
169 FloatRect FloatRect::Union(const FloatRect& rect) const { function in class:pp::FloatRect
H A Drect.h350 /// Union() computes the union of this rectangle with the given rectangle.
356 Rect Union(const Rect& rect) const;
735 /// Union() computes the union of this rectangle with the given rectangle.
741 FloatRect Union(const FloatRect& rect) const;
/external/chromium_org/ppapi/tests/
H A Dtest_paint_aggregator.cc70 pp::Rect expected_bounds = r1.Union(r2);
89 pp::Rect expected_bounds = r1.Union(r2);
273 pp::Rect expected_paint_rect = scroll_rect.Union(paint_rect);
293 pp::Rect expected_paint_rect = scroll_rect.Union(paint_rect);
/external/chromium_org/ppapi/utility/graphics/
H A Dpaint_aggregator.cc75 bounds = bounds.Union(paint_rects[i]);
110 ret.paint_bounds = ret.paint_bounds.Union(scroll_damage);
124 Rect combined_rect = existing_rect.Union(rect);
268 inner = inner.Union(existing_rect);
270 outer = outer.Union(existing_rect);
/external/chromium_org/sync/internal_api/public/base/
H A Denum_set.h22 EnumSet<E, Min, Max> Union(EnumSet<E, Min, Max> set1,
155 // self-mutating versions of Union, Intersection, and Difference
225 friend EnumSet Union<E, MinEnumValue, MaxEnumValue>(
266 EnumSet<E, Min, Max> Union(EnumSet<E, Min, Max> set1, function
H A Denum_set_unittest.cc147 const TestEnumSet enums3 = Union(enums1, enums2);
170 TEST_F(EnumSetTest, Union) {
173 const TestEnumSet enums3 = Union(enums1, enums2);
/external/chromium_org/sync/sessions/
H A Dmodel_type_registry.cc260 return Union(GetEnabledDirectoryTypes(), GetEnabledNonBlockingTypes());
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathGrammar.y412 $$ = new Union;
H A DXPathPredicate.cpp252 Value Union::evaluate(EvaluationContext& context) const
H A DXPathPredicate.h107 class Union FINAL : public Expression {
/external/chromium_org/third_party/icu/source/i18n/
H A Didentifier_info.cpp159 fRequiredScripts->Union(scriptsForCP);
H A Dscriptset.cpp105 ScriptSet &ScriptSet::Union(const ScriptSet &other) { function in class:ScriptSet
H A Dscriptset.h44 ScriptSet &Union(const ScriptSet &other);
/external/chromium_org/third_party/skia/tests/
H A DRegionTest.cpp12 static void Union(SkRegion* rgn, const SkIRect& rect) { function
24 Union(&r, SkIRect::MakeXYWH(0, 0, 1, 1));
32 Union(&r, SkIRect::MakeXYWH(0, 0, 3, 3));
33 Union(&r, SkIRect::MakeXYWH(10, 0, 3, 3));
34 Union(&r, SkIRect::MakeXYWH(0, 10, 13, 3));
66 Union(&container, SkIRect::MakeXYWH(0, 0, 40, 20));
67 Union(&container, SkIRect::MakeXYWH(30, 20, 10, 20));
73 Union(&rgn, SkIRect::MakeXYWH(0, 0, 10, 10));
74 Union(&rgn, SkIRect::MakeLTRB(5, 10, 20, 20));
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dcparse.py157 "Struct or Union"
194 class Union(Compound): class in inherits:Compound
467 node = Union()
473 if not isinstance( _node, Union ):
523 if isinstance( node, Union ):
H A Dgenpyx.py200 " the tag of a Struct, Union or Enum "
204 "Struct, Union or Enum "
208 "Struct or Union"
221 elif isinstance(self,Union):
255 class Union(Compound): class in inherits:Compound
449 class StructDeclarator(Declarator): # also used in Union
H A Dir.py352 " the tag of a Struct, Union or Enum "
356 "Struct, Union or Enum "
391 "Struct or Union"
400 elif isinstance(self,Union):
426 class Union(genpyx.Union, Compound): class in inherits:genpyx.Union, Compound
660 assert not type(parent[i]) in (TypeAlias, Enum, Struct, Union)
705 class StructDeclarator(genpyx.StructDeclarator, Declarator): # also used in Union
771 if self and isinstance(self[0],Union):
1147 cparse.Union
[all...]
/external/chromium_org/tools/gn/
H A Dlocation.cc72 LocationRange LocationRange::Union(const LocationRange& other) const { function in class:LocationRange
H A Dlocation.h49 LocationRange Union(const LocationRange& other) const;
H A Dparse_tree.cc222 return left_->GetRange().Union(right_->GetRange());
267 return begin_token_.range().Union(end_token_.range());
269 return statements_[0]->GetRange().Union(
348 return if_token_.range().Union(if_false_->GetRange());
349 return if_token_.range().Union(if_true_->GetRange());
386 return function_.range().Union(block_->GetRange());
387 return function_.range().Union(args_->GetRange());
570 return op_.range().Union(operand_->GetRange());
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbitmaptools.cc52 void Union(int x, int y) { function in struct:Box
221 box.Union(x, y);

Completed in 8055 milliseconds

123456789