Home
last modified time | relevance | path

Searched defs:tag (Results 1 – 25 of 159) sorted by relevance

1234567

/arkcompiler/runtime_core/panda_guard/util/
Dassert_util.h22 #define PANDA_GUARD_ERROR_PRINT(tag, errCode, desc, cause, solutions) \ argument
31 #define PANDA_GUARD_ASSERT_PRINT(cond, tag, errCode, desc) \ argument
39 #define PANDA_GUARD_ABORT_PRINT(tag, errCode, desc) \ argument
/arkcompiler/ets_frontend/es2panda/ir/expressions/literals/
DtaggedLiteral.h34 explicit TaggedLiteral(LiteralTag tag) : Literal(AstNodeType::TAGGED_LITERAL), tag_(tag) {} in TaggedLiteral()
35 explicit TaggedLiteral(LiteralTag tag, util::StringView str) in TaggedLiteral()
40 explicit TaggedLiteral(LiteralTag tag, uint16_t num) in TaggedLiteral()
/arkcompiler/runtime_core/static_core/verification/util/
Denum_tag.h59 static Enum GetValueFor(size_t tag) in GetValueFor()
83 static Enum GetValueFor(size_t tag) in GetValueFor()
Dint_tag.h42 static Int GetValueFor(size_t tag) in GetValueFor()
/arkcompiler/ets_frontend/es2panda/compiler/core/
DswitchBuilder.cpp43 void SwitchBuilder::CompileTagOfSwitch(VReg tag) in CompileTagOfSwitch()
56 void SwitchBuilder::JumpIfCase(VReg tag, uint32_t index) in JumpIfCase()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.cpp320 uint8_t tag = JSTaggedValue::ToInt8(thread, value); in AtomicReadModifyWriteCase() local
326 int8_t tag = JSTaggedValue::ToInt8(thread, value); in AtomicReadModifyWriteCase() local
332 uint16_t tag = JSTaggedValue::ToInt16(thread, value); in AtomicReadModifyWriteCase() local
338 int16_t tag = JSTaggedValue::ToInt16(thread, value); in AtomicReadModifyWriteCase() local
344 uint32_t tag = JSTaggedValue::ToUint32(thread, value); in AtomicReadModifyWriteCase() local
350 int32_t tag = static_cast<int32_t>(JSTaggedValue::ToUint32(thread, value)); in AtomicReadModifyWriteCase() local
379 … EcmaRuntimeCallInfo *argv, const callbackfun &op, uint8_t &tag) in HandleWithUint8()
402 … EcmaRuntimeCallInfo *argv, const callbackfun &op, int8_t &tag) in HandleWithInt8()
425 … EcmaRuntimeCallInfo *argv, const callbackfun &op, uint16_t &tag) in HandleWithUint16()
448 … EcmaRuntimeCallInfo *argv, const callbackfun &op, int16_t &tag) in HandleWithInt16()
[all …]
/arkcompiler/runtime_core/static_core/runtime/
Dtiming.h89 void NewSection(std::string_view tag) in NewSection()
122 ScopedTiming(std::string_view tag, Timing &timing) : timing_(timing) in ScopedTiming()
/arkcompiler/ets_frontend/ets2panda/linter/src/lib/utils/functions/
DCookBookUtils.ts20 const tag = tags[i]; constant
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DswitchBuilder.h57 void CompileTagOfSwitch(const VReg tag) in CompileTagOfSwitch()
73 void JumpIfCase(const VReg tag, const uint32_t index) in JumpIfCase()
/arkcompiler/runtime_core/static_core/libpandafile/
Dhelpers.h147 inline std::optional<T> GetOptionalTaggedValue(Span<const uint8_t> sp, E tag, Span<const uint8_t> *… in GetOptionalTaggedValue()
164 inline void EnumerateTaggedValues(Span<const uint8_t> sp, E tag, Callback cb, Span<const uint8_t> *… in EnumerateTaggedValues()
180 inline bool EnumerateTaggedValuesWithEarlyStop(Span<const uint8_t> sp, E tag, Callback cb) in EnumerateTaggedValuesWithEarlyStop()
Dclass_data_accessor.cpp40 auto tag = static_cast<ClassTag>(sp[0]); in ClassDataAccessor() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Dvisualizer_printer.cpp32 void VisualizerPrinter::PrintBeginTag(const char *tag) in PrintBeginTag()
38 void VisualizerPrinter::PrintEndTag(const char *tag) in PrintEndTag()
/arkcompiler/ets_runtime/common_components/platform/unix/linux/
Dos.cpp29 int PrctlSetVMA(const void *p, const size_t size, const char *tag) in PrctlSetVMA()
/arkcompiler/runtime_core/static_core/abc2program/
Dabc_literal_array_processor.cpp29 …Processor::FillLiteralArrayData(pandasm::LiteralArray *litArray, const panda_file::LiteralTag &tag, in FillLiteralArrayData()
112 const panda_file::LiteralTag &tag) { in GetLiteralArray()
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/native/core/
DIntlFormattersCache.cpp31 auto tag = options.TagString(); in NumFmtsCacheInvalidation() local
78 auto tag = options.TagString(); in NumRangeFmtsCacheInvalidation() local
/arkcompiler/runtime_core/libpandafile/
Dclass_data_accessor.cpp39 auto tag = static_cast<ClassTag>(sp[0]); in ClassDataAccessor() local
Dhelpers.h181 inline std::optional<T> GetOptionalTaggedValue(Span<const uint8_t> sp, E tag, Span<const uint8_t> *… in GetOptionalTaggedValue()
202 inline void EnumerateTaggedValues(Span<const uint8_t> sp, E tag, Callback cb, Span<const uint8_t> *… in EnumerateTaggedValues()
218 inline bool EnumerateTaggedValuesWithEarlyStop(Span<const uint8_t> sp, E tag, Callback cb) in EnumerateTaggedValuesWithEarlyStop()
Dfield_data_accessor.cpp50 auto tag = static_cast<FieldTag>(sp[0]); in GetValueInternal() local
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefwithinint32_fuzzer/
Djsvaluerefwithinint32_fuzzer.cpp35 Local<JSValueRef> tag = StringRef::NewFromUtf8(vm, (char *)data, (int)size); in JSValueRefWithinInt32FuzzTest() local
/arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/pages/logs/
Dstyles.module.scss39 .tag { class
/arkcompiler/ets_frontend/ets2panda/util/ast-builders/
DtaggedTemplateExpressionBuilder.h29 TaggedTemplateExpressionBuilder &SetTag(Expression *tag) in SetTag()
/arkcompiler/ets_runtime/common_components/heap/allocator/
Dallocator.cpp68 AggregateAllocator& AggregateAllocator::Instance(AllocationTag tag) in Instance()
/arkcompiler/ets_runtime/test/fuzztest/jsvaluerefbooleavalue_fuzzer/
Djsvaluerefbooleavalue_fuzzer.cpp33 Local<JSValueRef> tag = BooleanRef::New(vm, input); in BooleaValueFuzztest() local
/arkcompiler/ets_runtime/test/fuzztest/proxyrefisrevoked_fuzzer/
Dproxyrefisrevoked_fuzzer.cpp38 Local<ProxyRef> tag = ProxyRef::New(vm); in ProxyRefIsRevokedFuzzTest() local
/arkcompiler/ets_frontend/ets2panda/ir/expressions/
DtaggedTemplateExpression.h33 …explicit TaggedTemplateExpression(Expression *tag, TemplateLiteral *quasi, TSTypeParameterInstanti… in TaggedTemplateExpression()

1234567