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

1 2 3

  /external/clang/test/Sema/
static-assert.c 31 #define UNION(T1, T2) union { \
39 typedef UNION(unsigned, struct A) U1;
40 UNION(char[2], short) u2 = { .one = { 'a', 'b' } };
41 typedef UNION(char, short) U3; // expected-error {{static_assert failed "type size mismatch"}}
42 typedef UNION(float, 0.5f) U4; // expected-error {{expected a type}}
  /cts/tests/tests/graphics/src/android/graphics/cts/
Region_OpTest.java 35 assertEquals(Op.UNION, Op.valueOf("UNION"));
50 Op.UNION,
RegionTest.java 66 // UNION
198 mRegion.union(new Rect(3, 3, 5, 5));
235 // union (inclusive-or) the two regions
237 // union null rectangle
239 assertTrue(mRegion.union(rect1));
242 // 1. union rectangle inside this region
246 assertTrue(mRegion.union(rect3));
250 // 2. union rectangle overlap this region
254 assertTrue(mRegion.union(rect4));
258 // 3. union rectangle out of this regio
    [all...]
RegionIteratorTest.java 67 region.op(rect, Region.Op.UNION);
  /system/tools/hidl/c2hal/
Type.h 37 UNION,
48 union {
73 case Qualifier::UNION: return "union";
CompositeDeclaration.cpp 72 mQualifier == Type::Qualifier::UNION ||
Type.cpp 135 case Type::Qualifier::UNION:
c2hal_l.ll 194 "union" { return UNION; }
c2hal_y.yy 80 * both start with STRUCT/UNION/ENUM opt_id
89 %token UNION
151 %union {
528 | UNION { $$ = android::Type::Qualifier::UNION; }
  /external/libmojo/mojo/public/cpp/bindings/lib/
bindings_internal.h 51 // A serialized union always takes 16 bytes:
182 UNION = 1 << 12
298 ? MojomTypeCategory::UNION
311 ? MojomTypeCategory::UNION
array_serialization.h 441 MojomTypeCategory::UNION>::value>::type> {
457 // data in the union and the space in the array used to hold the union.
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Clipping.java 91 canvas.clipRect(40, 40, 100, 100, Region.Op.UNION);
Regions.java 106 drawRgn(canvas, Color.RED, "Union", Region.Op.UNION);
  /frameworks/base/graphics/java/android/graphics/
Region.java 39 UNION(2),
250 public final boolean union(Rect r) { method in class:Region
251 return op(r, Op.UNION);
Path.java 137 * Union (inclusive-or) the two paths.
139 UNION,
527 rects.op((int) left, (int) top, (int) right, (int) bottom, Region.Op.UNION);
  /system/tools/hidl/
hidl-gen_l.ll 99 "union" { return token::UNION; }
hidl-gen_y.yy 81 *errorMsg = idstr + " cannot be a name inside an struct or union";
91 "interface", "struct", "union", "string", "vec", "enum", "ref", "handle",
106 "typedef", "typeid", "typename", "union", "unsigned", "using", "virtual", "void",
198 %token<str> UNION
258 %union {
782 | UNION { $$ = CompoundType::STYLE_UNION; }
794 std::cerr << "ERROR: unknown error in struct or union declaration at "
  /packages/apps/Settings/src/com/android/settings/widget/
DotsPageIndicator.java 360 combinedUnselectedPath.op(unselectedPath, Path.Op.UNION);
369 combinedUnselectedPath.op(getRetreatingJoinPath(), Path.Op.UNION);
387 * dot pair separately and later take the union for these cases.
438 unselectedDotPath.op(unselectedDotLeftPath, Path.Op.UNION);
469 unselectedDotPath.op(unselectedDotRightPath, Path.Op.UNION);
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AccessibilityController.java 565 portionOfWindowAlreadyAccountedFor.op(nonMagnifiedBounds, Region.Op.UNION);
569 mMagnificationRegion.op(windowBounds, Region.Op.UNION);
572 nonMagnifiedBounds.op(windowBounds, Region.Op.UNION);
579 accountedBounds.op(nonMagnifiedBounds, Region.Op.UNION);
612 dirtyRegion.op(mOldMagnificationRegion, Region.Op.UNION);
    [all...]
DisplayContent.java     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Region_Delegate.java 102 } else if (regionOp == Region.Op.UNION.nativeInt) {
  /external/flatbuffers/include/flatbuffers/
idl.h 55 TD(UNION, "", Offset<void>, int, int, int, int)
293 StructDef *struct_def; // only set if this is a union
  /frameworks/base/core/java/android/view/
SurfaceView.java 366 region.op(l, t, l+w, t+h, Region.Op.UNION);
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvView.java 736 region.op(left, top, left + width, top + height, Region.Op.UNION);
    [all...]
  /frameworks/base/core/java/android/widget/
StackView.java 547 stackInvalidateRect.union(childInvalidateRect);
554 canvas.clipRect(stackInvalidateRect, Region.Op.UNION);
    [all...]

Completed in 723 milliseconds

1 2 3