| /arkcompiler/ets_frontend/es2panda/typescript/types/ |
| D | stringType.cpp | 20 void StringType::ToString(std::stringstream &ss) const in ToString() 25 void StringType::Identical(TypeRelation *relation, Type *other) in Identical() 32 void StringType::AssignmentTarget(TypeRelation *relation, Type *source) in AssignmentTarget() 39 TypeFacts StringType::GetTypeFacts() const in GetTypeFacts() 44 Type *StringType::Instantiate([[maybe_unused]] ArenaAllocator *allocator, [[maybe_unused]] TypeRela… in Instantiate()
|
| D | stringType.h | 23 class StringType : public Type { 25 StringType() : Type(TypeFlag::STRING) {} in StringType() function
|
| D | typeMapping.h | 26 _(TypeFlag::STRING, StringType) \
|
| D | globalTypesHolder.cpp | 44 globalTypes_[static_cast<size_t>(GlobalTypeId::STRING)] = allocator->New<StringType>(); in GlobalTypesHolder()
|
| /arkcompiler/ets_frontend/ets2panda/checker/types/ts/ |
| D | stringType.cpp | 19 void StringType::ToString(std::stringstream &ss, [[maybe_unused]] bool precise) const in ToString() 24 void StringType::Identical(TypeRelation *relation, Type *other) in Identical() 31 void StringType::AssignmentTarget(TypeRelation *relation, Type *source) in AssignmentTarget() 38 TypeFacts StringType::GetTypeFacts() const in GetTypeFacts() 43 Type *StringType::Instantiate([[maybe_unused]] ArenaAllocator *allocator, [[maybe_unused]] TypeRela… in Instantiate()
|
| D | stringType.h | 22 class StringType : public Type { 24 StringType() : Type(TypeFlag::STRING) {} in StringType() function
|
| /arkcompiler/runtime_core/static_core/libpandabase/os/ |
| D | cpu_affinity.h | 173 template <class StringType = std::string> 174 …static std::enable_if_t<is_stringable_v<StringType>, StringType> CpuSetToString(const CpuSet &cpus… in CpuSetToString() 176 StringType mask(cpuCount_, '0'); in CpuSetToString()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/ |
| D | TypeCreateErasedBodyTest.sts | 60 .addParameter(new ParameterCreator(StringType.REF)) 61 .addResult(StringType.REF)
|
| D | TypeMethodTest.sts | 95 … test(serializeMethodType.getResultType() == StringType.REF, " has String result type") +
|
| /arkcompiler/ets_frontend/arkguard/test/grammar/removeComments/ |
| D | removeComments3_expected.txt | 20 * @typedef {T extends string ? "StringType" : "NonStringType"} StringTypeChecker<T>
|
| /arkcompiler/ets_frontend/ets2panda/checker/types/ |
| D | typeMapping.h | 27 _(TypeFlag::STRING, StringType) \
|
| D | globalTypesHolder.cpp | 75 globalTypes_[static_cast<size_t>(GlobalTypeId::STRING)] = allocator->New<StringType>(); in AddTSSpecificTypes()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | type.h | 50 V(STRING, StringType) \ 200 static GateType StringType() in StringType() function
|
| D | typed_bytecode_lowering.cpp | 477 ASSERT(tacc.GetParamType() == ParamType::StringType()); in SpeculateNumbersOrString() 478 GateRef result = builder_.TypedBinaryOp<Op>(left, right, ParamType::StringType()); in SpeculateNumbersOrString() 482 ASSERT(tacc.GetParamType() == ParamType::StringType()); in SpeculateNumbersOrString() 483 GateRef result = builder_.TypedBinaryOp<Op>(left, right, ParamType::StringType()); in SpeculateNumbersOrString()
|
| D | type_info_accessors.cpp | 37 return ParamType::StringType(); in PGOSampleTypeToParamType() 45 return ParamType::StringType(); in PGOSampleTypeToParamType()
|
| D | hcr_circuit_builder.cpp | 760 … { currentControl, currentDepend, number }, GateType::StringType()); in NumberToString()
|
| D | number_speculative_retype.cpp | 461 return SetOutputType(gate, GateType::StringType()); in VisitNumberToString() 514 return SetOutputType(gate, GateType::StringType()); in VisitStringAdd()
|
| D | stub_builder.cpp | 6449 callback.ProfileOpType(Int32(PGOSampleType::StringType())); in FastStrictEqual() 6535 callback.ProfileOpType(Int32(PGOSampleType::StringType())); in FastEqual() 6645 callback.ProfileOpType(Int32(PGOSampleType::StringType())); in FastEqual() 7378 callback.ProfileOpType(Int32(PGOSampleType::StringType())); in TryStringAdd()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | Value.sts | 246 } else if (t instanceof StringType) { 247 return new StringValue(t as StringType, o! as string) 436 } else if (ft instanceof StringType && val instanceof StringValue) { 483 } else if (ft instanceof StringType && val instanceof StringValue) { 618 } else if (et instanceof StringType && val instanceof StringValue) { 1046 private typ: StringType 1057 internal constructor(typ: StringType, data: String) {
|
| D | Type.sts | 206 return StringType.REF 422 return StringType.REF 2534 export final class StringType extends Type { 2535 public static readonly REF: StringType = new StringType() 2590 * Checks for equality this instance with provided object, treated as a StringType 2594 * @returns true if object also has StringType 2597 return other instanceof StringType
|
| D | Object.sts | 323 if (t instanceof StringType || t instanceof ArrayType) {
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | Reflect.sts | 206 … } else if (t instanceof StringType || t instanceof ArrayType || t instanceof LambdaType) {
|
| D | json.sts | 462 } else if (typ instanceof StringType 1112 } else if (value instanceof JSONString && typ instanceof StringType) {
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/types/ |
| D | pgo_profiler_type.h | 175 static int32_t StringType() in StringType() function
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/ |
| D | pgo_profiler_test.cpp | 1083 ASSERT_EQ(static_cast<uint32_t>(primitiveType), PGOSampleType::StringType()); in HWTEST_F_L0()
|