Home
last modified time | relevance | path

Searched refs:union (Results 1 – 25 of 197) sorted by relevance

12345678

/frameworks/compile/slang/tests/F_union/
Dstderr.txt.expect1 union.rscript:4:7: error: unions cannot be exported: 'u'
2 union.rscript:9:14: error: unions containing RS object types are not allowed
3 union.rscript:16:11: error: unions containing RS object types are not allowed
Dunion.rscript4 union u {
9 static union u2 {
16 union iu {
/frameworks/compile/slang/tests/F_reduce_general_bad_result/
Dreduce_general_bad_result.rscript8 // NOTE: union and bitfield errors are only emitted once per type, so
36 union UnionShortDouble {
41 union UnionCharInt {
46 union UnionLongFloat {
51 // result type cannot be union
54 static void AccumUnionShortDouble(union UnionShortDouble *accum, short s, double d) { }
55 static void CombineUnionShortDouble(union UnionShortDouble *accum,
56 const union UnionShortDouble *other) { }
61 static void AccumUnionCharInt(union UnionCharInt *accum, short s, double d) { }
62 static void CombineUnionCharInt(union UnionCharInt *accum, const union UnionCharInt *other) { }
[all …]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dbitfield.rscript19 // There is a C99 rule (under "Structure and union members") that
21 // of unions: if a union contains several structures that share a
22 // common initial sequence, and if the union object currently contains
25 // completed type of the union is visible. Two structures share a
52 union CommonInitialSequence {
57 static union CommonInitialSequence U, V;
/frameworks/compile/slang/lit-tests/padding/
Dbitfield.rscript25 // There is a C99 rule (under "Structure and union members") that
27 // of unions: if a union contains several structures that share a
28 // common initial sequence, and if the union object currently contains
31 // completed type of the union is visible. Two structures share a
58 union CommonInitialSequence {
63 static union CommonInitialSequence U, V;
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dbitfield.rscript21 // There is a C99 rule (under "Structure and union members") that
23 // of unions: if a union contains several structures that share a
24 // common initial sequence, and if the union object currently contains
27 // completed type of the union is visible. Two structures share a
54 union CommonInitialSequence {
59 static union CommonInitialSequence U, V;
/frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/
DCamera2UtilsTest.java298 assertFalse(setUp.union(null)); in requestSettingsSetNullArgToUnion()
305 assertFalse(setUp.union(setUp)); in requestSettingsSetSelfArgToUnion()
372 master.union(slave); in requestSettingsSetNullPreservedByUnions()
377 master.union(slave); in requestSettingsSetNullPreservedByUnions()
382 master.union(slave); in requestSettingsSetNullPreservedByUnions()
387 master.union(slave); in requestSettingsSetNullPreservedByUnions()
406 sets[0].union(sets[1]); in requestSettingsSetUnionChangesRecorded()
432 sets[0].union(sets[1]); in requestSettingsSetUnionChangesReflected()
438 sets[0].union(sets[1]); in requestSettingsSetUnionChangesReflected()
445 sets[0].union(sets[1]); in requestSettingsSetUnionChangesReflected()
/frameworks/base/services/tests/servicestests/src/com/android/server/backup/utils/
DSparseArrayUtilsTest.java46 assertThat(SparseArrayUtils.union(sparseArray)).isEqualTo( in union_mergesSets()
54 assertThat(SparseArrayUtils.union(sparseArray)).isEqualTo(Sets.newHashSet()); in union_returnsEmptySetForEmptyList()
/frameworks/base/graphics/java/android/graphics/
DRectF.java472 public void union(float left, float top, float right, float bottom) { in union() method in RectF
499 public void union(@NonNull RectF r) { in union() method in RectF
500 union(r.left, r.top, r.right, r.bottom); in union()
510 public void union(float x, float y) { in union() method in RectF
DRect.java637 public void union(int left, int top, int right, int bottom) { in union() method in Rect
660 public void union(@NonNull Rect r) { in union() method in Rect
661 union(r.left, r.top, r.right, r.bottom); in union()
671 public void union(int x, int y) { in union() method in Rect
DRegion.java257 public final boolean union(@NonNull Rect r) { in union() method in Region
/frameworks/base/services/backup/java/com/android/server/backup/utils/
DSparseArrayUtils.java38 public static<V> HashSet<V> union(SparseArray<HashSet<V>> sets) { in union() method in SparseArrayUtils
/frameworks/base/services/core/java/com/android/server/wm/utils/
DRegionUtils.java46 outRegion.union(rects.get(i)); in rectListToRegion()
/frameworks/native/vulkan/api/templates/
Dasciidoc.tmpl98 typedef {{if GetAnnotation $ "union"}}union{{else}}struct{{end}} {
Dvulkan_h.tmpl261 Emits either 'struct' or 'union' for the specified class.
267 {{if GetAnnotation $ "union"}}union{{else}}struct{{end}}
Dvk_xml.tmpl328 Emits either 'struct' or 'union' for the specified class.
334 {{if GetAnnotation $ "union"}}union{{else}}struct{{end}}
/frameworks/base/tools/hiddenapi/
Dmerge_csv.py60 headers = headers.union(reader.fieldnames)
/frameworks/base/core/java/android/widget/
DSlidingDrawer.java618 region.union(frame.left, frame.top - deltaY, frame.right, frame.bottom - deltaY); in moveHandle()
619 region.union(0, frame.bottom - deltaY, getWidth(), in moveHandle()
648 region.union(frame.left - deltaX, frame.top, frame.right - deltaX, frame.bottom); in moveHandle()
649 region.union(frame.right - deltaX, 0, in moveHandle()
/frameworks/base/graphics/java/android/graphics/drawable/
DRippleDrawable.java928 drawingBounds.union(rippleBounds); in getDirtyBounds()
935 drawingBounds.union(rippleBounds); in getDirtyBounds()
938 dirtyBounds.union(drawingBounds); in getDirtyBounds()
939 dirtyBounds.union(super.getDirtyBounds()); in getDirtyBounds()
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
DCamera2RequestSettingsSet.java205 public boolean union(Camera2RequestSettingsSet moreSettings) { in union() method in Camera2RequestSettingsSet
/frameworks/base/packages/Tethering/tests/integration/
DAndroid.bp62 // purposes. This is currently the union of TetheringTests, TetheringIntegrationTests and
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarTouchableRegionManager.java145 info.touchableRegion.union(bubbleRect); in onComputeInternalInsets()
/frameworks/rs/tests/java_api/MathErr/src/com/example/android/rs/matherr/
Dmath_err.rscript20 typedef union
/frameworks/base/core/java/android/gesture/
DGestureStroke.java73 bx.union(p.x, p.y); in GestureStroke()
DGestureOverlayView.java633 areaToRefresh.union((int) previousX - border, (int) previousY - border, in touchMove()
637 areaToRefresh.union((int) cX - border, (int) cY - border, in touchMove()

12345678