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

1 2 3 4 5

  /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 131 case Type::Qualifier::UNION:
c2hal_y.yy 80 * both start with STRUCT/UNION/ENUM opt_id
89 %token UNION
151 %union {
528 | UNION { $$ = android::Type::Qualifier::UNION; }
c2hal_l.ll 193 "union" { return UNION; }
  /frameworks/support/core/ktx/src/main/java/androidx/core/graphics/
Path.kt 37 * Returns the union of two paths as a new [Path].
42 op(p, Path.Op.UNION)
57 * Returns the union of two paths as a new [Path].
74 * Returns the union minus the intersection of two paths as a new [Path].
Region.kt 32 * Return the union of this region and the specified [Rect] as a new region.
36 union(r)
41 * Return the union of this region and the specified region as a new region.
45 op(r, Region.Op.UNION)
82 * Return the union of this region and the specified [Rect] as a new region.
87 * Return the union of this region and the specified region as a new region.
110 * Return the union minus the intersection of this region and the specified [Rect]
120 * Return the union minus the intersection of this region and the specified region
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
RegionInterceptingFrameLayout.java 79 internalInsetsInfo.touchableRegion.op(riv.getInterceptRegion(), Op.UNION);
  /system/tools/hidl/docs/src/parser/elements/declarations/
CompoundDeclarationParser.kt 42 assert(token.identifier == TokenGrammar.STRUCT || token.identifier == TokenGrammar.UNION)
45 //type - struct or union
78 TokenGrammar.STRUCT, TokenGrammar.UNION -> {
  /system/tools/hidl/docs/src/parser/files/
AbstractFileParser.kt 53 val unions: List<EntryParser> by lazy { getEntriesByCompoundDeclarationParser(TokenGrammar.UNION) }
68 TokenGrammar.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 145 * Union (inclusive-or) the two paths.
147 UNION,
535 rects.op((int) left, (int) top, (int) right, (int) bottom, Region.Op.UNION);
  /system/tools/hidl/docs/src/parser/elements/
EntryParser.kt 157 TokenGrammar.STRUCT, TokenGrammar.UNION -> CompoundDeclarationParser(iter)
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Regions.java 106 drawRgn(canvas, Color.RED, "Union", Region.Op.UNION);
  /system/tools/hidl/
hidl-gen_l.ll 116 "union" { return token::UNION; }
  /system/tools/hidl/docs/src/lexer/
Token.kt 48 UNION("union", TokenCategory.TypeDef),
  /external/libmojo/mojo/public/cpp/bindings/
array_data_view.h 168 BelongsTo<T, MojomTypeCategory::UNION>::value>::type> {
  /external/libmojo/mojo/public/cpp/bindings/lib/
bindings_internal.h 47 // A serialized union always takes 16 bytes:
202 UNION = 1 << 12
  /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 560 portionOfWindowAlreadyAccountedFor.op(nonMagnifiedBounds, Region.Op.UNION);
564 mMagnificationRegion.op(windowBounds, Region.Op.UNION);
567 nonMagnifiedBounds.op(windowBounds, Region.Op.UNION);
574 accountedBounds.op(nonMagnifiedBounds, Region.Op.UNION);
607 dirtyRegion.op(mOldMagnificationRegion, Region.Op.UNION);
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
set_kernels.cc 306 enum SetOperation { A_MINUS_B = 0, B_MINUS_A = 1, INTERSECTION = 2, UNION = 3 };
324 if ("union" != set_operation_str) {
331 return UNION;
375 case UNION:

Completed in 388 milliseconds

1 2 3 4 5