| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | small_vector.h | 210 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 218 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 231 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 238 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 240 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 242 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 246 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 254 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 256 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() 258 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SmallVector() [all …]
|
| /arkcompiler/ets_frontend/ts2panda/tests/types/ |
| D | union.test.ts | 29 describe("union tests in union.test.ts", function () { 30 it("test union with primitives", function () { 31 let fileNames = 'tests/types/union/union_primitives.ts'; 68 it("test union with user defined type", function () { 69 let fileNames = 'tests/types/union/union_userDefinedType.ts'; 104 it("test union with multi same primitives", function () { 105 let fileNames = 'tests/types/union/union_multi_same_primi.ts'; 130 it("test union with multi same user defined type", function () { 131 let fileNames = 'tests/types/union/union_multi_userDefinedType.ts';
|
| /arkcompiler/runtime_core/runtime/mem/gc/ |
| D | gc_workers_thread_pool.h | 101 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GCWorkersTask() 108 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GCWorkersTask() 115 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GCWorkersTask() 121 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) 132 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GetMarkingStack() 139 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GetRegionData() 146 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GetCard() 156 union StorageType {
|
| /arkcompiler/ets_runtime/test/typeinfer/builtins/ |
| D | builtins.ts | 28 AssertType(Object.getOwnPropertyDescriptor({}, "str"), "union"); 31 AssertType(Object.getPrototypeOf({}), "union"); 151 AssertType(arr.pop(), "union"); 156 AssertType(arr.shift(), "union"); 194 AssertType(str.match("123"), "union"); 218 AssertType(sym.description, "union"); 222 AssertType(Symbol.keyFor(Symbol.iterator), "union"); 228 AssertType(werkRef.deref(), "union");
|
| /arkcompiler/runtime_core/runtime/include/ |
| D | managed_thread.h | 198 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GetStatus() 425 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in ReadFlag() 431 … return (fts_.as_struct.flags) != NO_FLAGS; // NOLINT(cppcoreguidelines-pro-type-union-access) in TestAllFlags() 438 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SetFlag() 446 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in ClearFlag() 453 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in ReadFlagsAndThreadStatusUnsafe() 763 union FlagsAndThreadStatus old_fts { in StoreStatus() 765 union FlagsAndThreadStatus new_fts { in StoreStatus() 767 …_fts.as_int = ReadFlagsAndThreadStatusUnsafe(); // NOLINT(cppcoreguidelines-pro-type-union-access) in StoreStatus() 771 … if (old_fts.as_struct.flags != NO_FLAGS) { // NOLINT(cppcoreguidelines-pro-type-union-access) in StoreStatus() [all …]
|
| D | method.h | 201 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in Method() 204 …onstraints imposed on other reads or writes NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in Method() 617 …onstraints imposed on other reads or writes NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in SetNativePointer() 625 …onstraints imposed on other reads or writes NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GetNativePointer() 750 // which should become visible NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GetProfilingData() 757 // which should become visible NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GetProfilingDataWithoutCheck() 767 // which should become visible NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in GetProfilingData() 782 // which should become visible NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in IsProfilingWithoutLock() 851 union PointerInMethod { 870 union PointerInMethod pointer_ {
|
| /arkcompiler/ets_frontend/es2panda/typescript/types/ |
| D | unionType.h | 28 : Type(TypeFlag::UNION), constituentTypes_(allocator->Adapter()) in UnionType() 40 : Type(TypeFlag::UNION), constituentTypes_(std::move(constituentTypes)) in UnionType() 48 : Type(TypeFlag::UNION), constituentTypes_(constituentTypes) in UnionType()
|
| D | typeFlag.h | 35 UNION = 1ULL << 8, // x: a | b enumerator 77 UNION_OR_INTERSECTION = UNION | INTERSECTION,
|
| D | typeMapping.h | 34 _(TypeFlag::UNION, UnionType) \
|
| D | arrayType.cpp | 25 bool elemIsUnion = (element_->TypeFlags() == TypeFlag::UNION); in ToString()
|
| /arkcompiler/runtime_core/verification/util/ |
| D | int_set.h | 123 … return other.SwitchOnRepr([this](const auto &other_repr) { return repr_->Union(other_repr); }); 229 virtual IntSet<T, THRESHOLD> Union(const SmallRepr &other) const = 0; 230 virtual IntSet<T, THRESHOLD> Union(const LargeRepr &other) const = 0; 302 IntSet<T, THRESHOLD> Union(const SmallRepr &other) const override in Union() function 314 IntSet<T, THRESHOLD> Union(const LargeRepr &other) const override in Union() function 316 return other.Union(*this); in Union() 455 IntSet<T, THRESHOLD> Union(const SmallRepr &other) const override in Union() function 462 IntSet<T, THRESHOLD> Union(const LargeRepr &other) const override in Union() function
|
| D | callable.h | 50 union method_union {
|
| /arkcompiler/ets_runtime/ecmascript/compiler/base/ |
| D | bit_set.h | 75 void Union(const BitSet &bitset) in Union() function 118 union Data {
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_arraybuffer.h | 31 union UnionType32 { 35 union UnionType64 {
|
| D | builtins_math.h | 22 union Float64Union {
|
| /arkcompiler/runtime_core/templates/ |
| D | common.rb | 53 n = name.split(Regexp.union(['-', '.'])).map(&:capitalize).join 90 n = "#{lang}.#{name}".split(Regexp.union(['-', '.'])).map(&:capitalize).join
|
| /arkcompiler/runtime_core/verification/util/tests/ |
| D | set_operations_property_test.cpp | 102 prop("Union", [](set &&set1, set &&set2) { in __anon36fc55b10502() 144 prop("Union", [](set &&set1, set &&set2, set &&set3) { in __anon36fc55b10802()
|
| D | int_set_property_test.cpp | 133 rc::prop("Union", [&]() { in __anon50e355d80502()
|
| /arkcompiler/ets_runtime/test/typeinfer/assertTypeRules/ |
| D | assertTypeRules.ts | 24 * | let test : number | string | AssertType(test, "union") |
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
| D | test-type-annotation.ts | 35 // Test union type
|
| /arkcompiler/ets_runtime/ecmascript/ts_types/ |
| D | global_ts_type_ref.h | 32 UNION, enumerator
|
| /arkcompiler/ets_frontend/es2panda/typescript/core/ |
| D | typeRelation.cpp | 24 if (source->TypeFlags() == TypeFlag::UNION) { in IsAllTypesAssignableTo()
|
| /arkcompiler/runtime_core/compiler/optimizer/analysis/ |
| D | bounds_analysis.h | 81 static BoundsRange Union(const ArenaVector<BoundsRange> &ranges);
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | bit_helper.h | 26 union Data {
|
| /arkcompiler/runtime_core/runtime/ |
| D | method.cpp | 181 // imposed on other reads or writes NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) 604 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in StartProfiling() 629 // which should become visible acquire NOLINTNEXTLINE(cppcoreguidelines-pro-type-union-access) in StopProfiling()
|