/external/v8/src/compiler/ |
D | type-cache.h | 30 Type::Union(kUint8, Type::MinusZeroOrNaN(), zone()); 39 Type::Union(Type::SignedSmall(), Type::Hole(), zone()); 46 Type::Union(kSingletonZero, Type::Undefined(), zone()); 48 Type::Union(kSingletonTen, Type::Undefined(), zone()); 50 Type* const kMinusOneToOneOrMinusZeroOrNaN = Type::Union( 51 Type::Union(CreateRange(-1.0, 1.0), Type::MinusZero(), zone()), 54 Type* const kZeroOrOneOrNaN = Type::Union(kZeroOrOne, Type::NaN(), zone()); 58 Type::Union(kSingletonZero, Type::MinusZeroOrNaN(), zone()); 61 Type::Union(kInteger, Type::MinusZero(), zone()); 63 Type::Union(kIntegerOrMinusZero, Type::NaN(), zone()); [all …]
|
D | operation-typer.cc | 30 signed32ish_ = Type::Union(Type::Signed32(), truncating_to_zero, zone); in OperationTyper() 31 unsigned32ish_ = Type::Union(Type::Unsigned32(), truncating_to_zero, zone); in OperationTyper() 35 return Type::Union(left, right, zone()); in Merge() 182 if (nans > 0) type = Type::Union(type, Type::NaN(), zone()); in AddRanger() 209 return nans == 0 ? type : Type::Union(type, Type::NaN(), zone()); in SubtractRanger() 240 return maybe_minuszero ? Type::Union(range, Type::MinusZero(), zone()) in MultiplyRanger() 249 return Type::Union(Type::NaN(), cache_.kSingletonZero, zone()); in ToNumber() 258 type = Type::Union(type, Type::NaN(), zone()); in ToNumber() 260 type = Type::Union(type, cache_.kSingletonZero, zone()); in ToNumber() 262 type = Type::Union(type, cache_.kZeroOrOne, zone()); in ToNumber() [all …]
|
/external/skia/tests/ |
D | RegionTest.cpp | 14 static void Union(SkRegion* rgn, const SkIRect& rect) { in Union() function 26 Union(&r, SkIRect::MakeXYWH(0, 0, 1, 1)); in test_fromchrome() 34 Union(&r, SkIRect::MakeXYWH(0, 0, 3, 3)); in test_fromchrome() 35 Union(&r, SkIRect::MakeXYWH(10, 0, 3, 3)); in test_fromchrome() 36 Union(&r, SkIRect::MakeXYWH(0, 10, 13, 3)); in test_fromchrome() 68 Union(&container, SkIRect::MakeXYWH(0, 0, 40, 20)); in test_fromchrome() 69 Union(&container, SkIRect::MakeXYWH(30, 20, 10, 20)); in test_fromchrome() 75 Union(&rgn, SkIRect::MakeXYWH(0, 0, 10, 10)); in test_fromchrome() 76 Union(&rgn, SkIRect::MakeLTRB(5, 10, 20, 20)); in test_fromchrome() 300 Union(&complexRegion, SkIRect::MakeXYWH(0, 0, 1, 1)); in DEF_TEST() [all …]
|
/external/clang/test/CodeGen/ |
D | 2009-03-08-ZeroEltStructCrash.c | 4 struct Union { struct 9 static inline void Foo(struct Union *u) { in Foo() argument 12 static void Bar(struct Union *u) { in Bar()
|
/external/clang/test/SemaCXX/ |
D | constexpr-printing.cpp | 55 union Union { union 56 constexpr Union(int n) : b(n) {} in Union() function 57 constexpr Union(const Union &u) : b(u.b) {} in Union() function 60 constexpr Union myUnion = 76; 62 constexpr int badness(Union u) { return u.a + u.b; } // expected-note {{read of member 'a' of union… in badness()
|
D | type-traits.cpp | 18 union Union { int i; float f; }; union 176 { int arr[T(__is_pod(Union))]; } in is_pod() 264 { int arr[F(__is_class(Union))]; } in is_class() 269 typedef Union UnionAr[10]; 270 typedef Union UnionType; 274 { int arr[T(__is_union(Union))]; } in is_union() 295 { int arr[F(__is_enum(Union))]; } in is_enum() 340 { int arr[F(__is_final(Union))]; } in is_final() 363 { int arr[F(__is_sealed(Union))]; } in is_sealed() 385 { int arr[F(__is_polymorphic(Union))]; } in is_polymorphic() [all …]
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVValue.h | 133 Union.UInt64Val = TheValue; in SPIRVConstant() 140 Union.FloatVal = TheValue; in SPIRVConstant() 147 Union.DoubleVal = TheValue; in SPIRVConstant() 153 uint64_t getZExtIntValue() const { return Union.UInt64Val;} in getZExtIntValue() 154 float getFloatValue() const { return Union.FloatVal;} in getFloatValue() 155 double getDoubleValue() const { return Union.DoubleVal;} in getDoubleValue() 170 getEncoder(O) << Union.Words[i]; in encode() 179 getDecoder(I) >> Union.Words[i]; in decode() 191 } Union; variable
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/ |
D | is_array.pass.cpp | 57 union Union {}; union 78 test_is_array<Union[]>(); in main() 88 test_is_not_array<Union>(); in main()
|
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/ |
D | MergeTask.java | 25 import org.apache.tools.ant.types.resources.Union; 36 private final Union files = new Union();
|
D | ReportTask.java | 32 import org.apache.tools.ant.types.resources.Union; 65 public static class SourceFilesElement extends Union { 104 private final Union classfiles = new Union(); 136 public Union createClassfiles() { in createClassfiles() 416 private final Union executiondataElement = new Union(); 431 public Union createExecutiondata() { in createExecutiondata()
|
D | InstrumentTask.java | 26 import org.apache.tools.ant.types.resources.Union; 38 private final Union files = new Union();
|
/external/v8/src/ |
D | type-info.cc | 265 AstType* combined_type_from_fcg = AstType::Union( in CompareType() 267 AstType::Union(right_type_from_ic, combined_type_from_ic, zone()), in CompareType() 277 *left_type = AstType::Union(*left_type, left_type_from_ic, zone()); in CompareType() 278 *right_type = AstType::Union(*right_type, right_type_from_ic, zone()); in CompareType() 280 AstType::Union(*combined_type, combined_type_from_ic, zone()); in CompareType() 329 AstType* combined_type_from_fcg = AstType::Union( in BinaryType() 331 AstType::Union(state.GetRightType(), state.GetResultType(), zone()), in BinaryType() 341 *left = AstType::Union(*left, state.GetLeftType(), zone()); in BinaryType() 342 *right = AstType::Union(*right, state.GetRightType(), zone()); in BinaryType() 343 *result = AstType::Union(*result, state.GetResultType(), zone()); in BinaryType() [all …]
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/ |
D | is_move_assignable.pass.cpp | 45 union Union {}; union 62 test_is_move_assignable<Union> (); in main()
|
D | is_nothrow_move_assignable.pass.cpp | 44 union Union {}; union 59 test_has_nothrow_assign<Union>(); in main()
|
D | is_nothrow_copy_assignable.pass.cpp | 44 union Union {}; union 59 test_has_nothrow_assign<Union>(); in main()
|
D | is_trivially_move_assignable.pass.cpp | 46 union Union {}; union 66 test_has_trivial_assign<Union>(); in main()
|
D | is_trivially_copy_assignable.pass.cpp | 46 union Union {}; union 66 test_has_trivially_copy_assignable<Union>(); in main()
|
D | is_copy_assignable.pass.cpp | 45 union Union {}; union 73 test_is_copy_assignable<Union> (); in main()
|
D | is_move_constructible.pass.cpp | 45 union Union {}; union 79 test_is_move_constructible<Union>(); in main()
|
D | is_copy_constructible.pass.cpp | 45 union Union {}; union 78 test_is_copy_constructible<Union>(); in main()
|
D | is_trivially_move_constructible.pass.cpp | 47 union Union {}; union 86 test_is_trivially_move_constructible<Union>(); in main()
|
D | is_trivially_copy_constructible.pass.cpp | 51 union Union {}; union 77 test_is_trivially_copy_constructible<Union>(); in main()
|
D | is_nothrow_copy_constructible.pass.cpp | 47 union Union {}; union 65 test_is_nothrow_copy_constructible<Union>(); in main()
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/ |
D | union.pass.cpp | 37 union Union union 45 test_union<Union>(); in main()
|
/external/vixl/src/aarch64/ |
D | operands-aarch64.cc | 89 CPURegList CPURegList::Union(const CPURegList& list_1, in Union() function in vixl::aarch64::CPURegList 92 return Union(list_1, Union(list_2, list_3)); in Union() 96 CPURegList CPURegList::Union(const CPURegList& list_1, in Union() function in vixl::aarch64::CPURegList 100 return Union(Union(list_1, list_2), Union(list_3, list_4)); in Union()
|