/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 | 28 assertEquals(Op.UNION, Op.valueOf("UNION")); 42 Op.UNION,
|
RegionTest.java | 54 // UNION 185 mRegion.union(new Rect(3, 3, 5, 5)); 224 // union (inclusive-or) the two regions 228 // union null rectangle 230 assertTrue(mRegion.union(rect1)); 233 // 1. union rectangle inside this region 237 assertTrue(mRegion.union(rect3)); 241 // 2. union rectangle overlap this region 245 assertTrue(mRegion.union(rect4)); 249 // 3. union rectangle out of this regio [all...] |
RegionIteratorTest.java | 55 region.op(rect, Region.Op.UNION);
|
CanvasTest.java | 838 assertTrue(mCanvas.clipRect(mRectF, Op.UNION)); 847 assertTrue(mCanvas.clipRect(mRect, Op.UNION)); 864 assertTrue(mCanvas.clipRect(0, 0, 10, 31, Op.UNION)); 890 assertTrue(mCanvas.clipPath(p, Op.UNION)); 905 assertFalse(mCanvas.clipRegion(r, Op.UNION)); [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
vdbe-compress.tcl | 23 # opcode implementations and into a single large union. The union contains 35 # The union definition is inserted in place of a special marker comment 40 set beforeUnion {} ;# C code before union 41 set unionDef {} ;# C code of the union 42 set afterUnion {} ;# C code after the union 45 # Read program text up to the spot where the union should be 50 if {[regexp {INSERT STACK UNION HERE} $line]} break 54 # Process the remaining text. Build up the union definition as we go. 115 puts " ** The following union is automatically generated by the [all...] |
space_used.tcl | 38 UNION ALL
|
/external/chromium_org/third_party/sqlite/src/test/ |
collate5.test | 13 # focus of this file is testing DISTINCT, UNION, INTERSECT and EXCEPT 103 # Tests named collate5-2.* focus on UNION, EXCEPT and INTERSECT 106 # collate5-2.1.* - UNION 123 SELECT a FROM collate5t1 UNION select a FROM collate5t2; 128 SELECT a FROM collate5t2 UNION select a FROM collate5t1; 133 SELECT a, b FROM collate5t1 UNION select a, b FROM collate5t2; 138 SELECT a, b FROM collate5t2 UNION select a, b FROM collate5t1; 186 # This test ensures performs a UNION operation with a bunch of different 208 SELECT * FROM collate5t3 UNION SELECT * FROM collate5t3; 222 SELECT a FROM collate5t1 UNION ALL SELECT a FROM collate5t2 ORDER BY 1 [all...] |
fuzz_common.tcl | 218 {[SimpleSelect $nMulti] UNION [Select $nMulti]} \ 219 {[SimpleSelect $nMulti] UNION ALL [Select $nMulti]} \
|
tester.tcl | [all...] |
/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);
|
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
glsl_parser.h | 171 UNION = 389, 372 #define UNION 389 444 typedef union YYSTYPE
|
glsl_parser.cc | 280 UNION = 389, 481 #define UNION 389 553 typedef union YYSTYPE 782 union yyalloc 790 # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) [all...] |
glsl_lexer.cc | [all...] |
/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 | 126 * Union (inclusive-or) the two paths. 128 UNION, 486 rects.op((int) left, (int) top, (int) right, (int) bottom, Region.Op.UNION);
|
/frameworks/base/services/java/com/android/server/wm/ |
DisplayMagnifier.java | 330 magnifiedBounds.op(windowBounds, Region.Op.UNION); 339 nonMagnifiedBounds.op(windowBounds, Region.Op.UNION); 346 accountedBounds.op(nonMagnifiedBounds, Region.Op.UNION); 385 dirtyRegion.op(mOldMagnifiedBounds, Region.Op.UNION);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Region_Delegate.java | 102 } else if (regionOp == Region.Op.UNION.nativeInt) {
|
/frameworks/base/core/java/android/view/ |
SurfaceView.java | 316 region.op(l, t, l+w, t+h, Region.Op.UNION); [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
parse.y | 203 EXCEPT INTERSECT UNION 419 multiselect_op(A) ::= UNION(OP). {A = @OP;} 420 multiselect_op(A) ::= UNION ALL. {A = TK_ALL;} [all...] |
/external/sqlite/dist/orig/ |
shell.c | [all...] |
/external/sqlite/dist/ |
shell.c | [all...] |
/external/chromium_org/third_party/sqlite/src/contrib/ |
sqlitecon.tcl | 268 UNION ALL 272 append cmd "UNION ALL SELECT name FROM $name.sqlite_master\ 283 AND sql NOT NULL UNION ALL SELECT sql FROM sqlite_temp_master 287 append cmd " UNION ALL SELECT sql FROM $name.sqlite_master\ 297 AND sql NOT NULL UNION ALL SELECT sql FROM sqlite_temp_master 301 append cmd " UNION ALL SELECT sql FROM $name.sqlite_master\
|
/frameworks/base/core/java/android/widget/ |
StackView.java | 541 stackInvalidateRect.union(childInvalidateRect); 548 canvas.clipRect(stackInvalidateRect, Region.Op.UNION); [all...] |