| /arkcompiler/runtime_core/platforms/unix/libpandabase/futex/ |
| D | fmutex.cpp | 20 #define FAIL_WITH_MESSAGE(m) \ argument 23 #define LOG_MESSAGE(l, m) argument 24 #define HELPERS_TO_UNSIGNED(m) m argument 28 #define LOG_MESSAGE(l, m) LOG(l, COMMON) << (m) // NOLINT(cppcoreguidelines-macro-usage) argument 29 #define FAIL_WITH_MESSAGE(m) LOG_MESSAGE(FATAL, m) // NOLINT(cppcoreguidelines-macro-usage) argument 30 #define HELPERS_TO_UNSIGNED(m) helpers::ToUnsigned(m) // NOLINT(cppcoreguidelines-macro-usage) argument 43 static inline void FutexWait(ATOMIC_INT *m, int v) in FutexWait() 75 int *GetStateAddr(struct fmutex *const m) in GetStateAddr() 80 void IncrementWaiters(struct fmutex *m) in IncrementWaiters() 85 void DecrementWaiters(struct fmutex *m) in DecrementWaiters() [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/common/bouncing_peas/ |
| D | bouncing_peas_unit.cpp | 25 [[maybe_unused]] static long SkoalaCreateRedrawerPeer([[maybe_unused]] ark::Method *m, in SkoalaCreateRedrawerPeer() 30 [[maybe_unused]] static long SkoalaGetFrame([[maybe_unused]] ark::Method *m, in SkoalaGetFrame() 36 [[maybe_unused]] static long SkoalaInitRedrawer([[maybe_unused]] ark::Method *m, [[maybe_unused]] i… in SkoalaInitRedrawer() 43 [[maybe_unused]] static long SkoalaPaint1nMake([[maybe_unused]] ark::Method *m) in SkoalaPaint1nMake() 48 …[[maybe_unused]] ark::Method *m, [[maybe_unused]] long ptr /*KNativePointer*/, [[maybe_unused]] fl… in SkoalaPictureRecorder1nBeginRecording() 54 [[maybe_unused]] ark::Method *m, [[maybe_unused]] long ptr /*KNativePointer*/) in SkoalaPictureRecorder1nFinishRecordingAsDrawable() 59 …[[maybe_unused]] ark::Method *m, [[maybe_unused]] long ptr /*KNativePointer*/, [[maybe_unused]] fl… in SkoalaPictureRecorder1nFinishRecordingAsPictureWithCull() 64 [[maybe_unused]] static long SkoalaPictureRecorder1nMake([[maybe_unused]] ark::Method *m) in SkoalaPictureRecorder1nMake() 69 [[maybe_unused]] ark::Method *m, [[maybe_unused]] long paragraphStylePtr /*KNativePointer*/, in SkoalaParagraphParagraphBuilder1nMake() 74 …unused]] static long SkoalaParagraphParagraphBuilder1nGetFinalizer([[maybe_unused]] ark::Method *m) in SkoalaParagraphParagraphBuilder1nGetFinalizer() [all …]
|
| /arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/futex/ |
| D | fmutex.cpp | 20 #define FAIL_WITH_MESSAGE(m) ASSERT(0) argument 21 #define LOG_MESSAGE(l, m) argument 22 #define HELPERS_TO_UNSIGNED(m) m argument 27 #define LOG_MESSAGE(l, m) LOG(l, COMMON) << (m) // NOLINT(cppcoreguidelines-macro-usage) argument 28 #define FAIL_WITH_MESSAGE(m) LOG_MESSAGE(FATAL, m) // NOLINT(cppcoreguidelines-macro-usage) argument 29 #define HELPERS_TO_UNSIGNED(m) ark::helpers::ToUnsigned(m) // NOLINT(cppcoreguidelines-macro-usage) argument 42 static inline void FutexWait(ATOMIC_INT *m, int v) in FutexWait() 74 int *GetStateAddr(struct fmutex *const m) in GetStateAddr() 79 void IncrementWaiters(struct fmutex *const m) in IncrementWaiters() 84 void DecrementWaiters(struct fmutex *const m) in DecrementWaiters() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | instruction_combine.cpp | 188 Int64BinopMatcher m(gate, circuit_); in VisitICMP() local 416 Int32BinopMatcher m(n.Left().Gate(), circuit_); in VisitExtractValue() local 428 Int32BinopMatcher m(n.Left().Gate(), circuit_); in VisitExtractValue() local 440 Int32BinopMatcher m(n.Left().Gate(), circuit_); in VisitExtractValue() local 461 Int64BinopMatcher m(gate, circuit_); in ReduceInt64Add() local 487 Int32BinopMatcher m(gate, circuit_); in ReduceInt32Add() local 529 Int64BinopMatcher m(gate, circuit_); in ReduceInt64Sub() local 552 Int32BinopMatcher m(gate, circuit_); in ReduceInt32Sub() local 575 Int64BinopMatcher m(gate, circuit_); in ReduceInt64Mul() local 616 Int32BinopMatcher m(gate, circuit_); in ReduceInt32Mul() local [all …]
|
| /arkcompiler/runtime_core/static_core/libpandafile/tests/ |
| D | panda_cache_test.cpp | 101 auto *m = new ElementMock(); in GetNewMockElement() local 117 auto *m = GetNewMockElement(i); in RunWriter() local 127 auto *m = GetElement(id); in RunReader() local 157 void SetElement(EntityId id, ElementMock *m) override in SetElement() 181 void SetElement(EntityId id, ElementMock *m) override in SetElement() 205 void SetElement(EntityId id, ElementMock *m) override in SetElement() 252 auto *m = reinterpret_cast<ElementMock *>(cache->GetMethodFromCache(id)); in CleanMethodMocks() local 263 auto *m = reinterpret_cast<ElementMock *>(cache->GetFieldFromCache(newId)); in CleanFieldMocks() local 272 auto *m = reinterpret_cast<ElementMock *>(cache->GetClassFromCache(id)); in CleanClassMocks() local
|
| /arkcompiler/ets_runtime/test/moduletest/merge/ |
| D | merge.js | 25 var m = new Merge("a") variable
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/ |
| D | class_hierarchy_phase.cpp | 18 bool M2MKlassHierarchy::PhaseRun(maple::MIRModule &m) in PhaseRun()
|
| /arkcompiler/ets_frontend/es2panda/test/type_extractor/testcases/ |
| D | test-builtin-generic-class-type.ts | 17 let m = new Map(); variable
|
| D | test-interface.ts | 21 let m : Child = new Member(); variable
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
| D | test-class-definition.ts | 30 public get m() { return 2 }; method in Foo 31 protected set m(b: number) { }; method in Foo
|
| D | test_satisfies8.ts | 27 const m: boolean = x.m; constant
|
| D | test-function-with-type-assertion.ts | 17 class Derived1 extends Base { private m; } property in Derived1
|
| /arkcompiler/ets_frontend/ets2panda/test/parser/ts/ |
| D | test-class-definition.ts | 30 public get m() { return 2 }; method in Foo 31 protected set m(b: number) { }; method in Foo
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
| D | cg_phasemanager.cpp | 72 void CgFuncPM::GenerateOutPutFile(MIRModule &m) in GenerateOutPutFile() 123 void CgFuncPM::PostOutPut(MIRModule &m) in PostOutPut() 235 void CgFuncPM::SweepUnusedStaticSymbol(MIRModule &m) in SweepUnusedStaticSymbol() 290 bool CgFuncPM::PhaseRun(MIRModule &m) in PhaseRun() 430 void CgFuncPM::CreateCGAndBeCommon(MIRModule &m, const Target *t) in CreateCGAndBeCommon() 494 void CgFuncPM::PrepareLower(MIRModule &m) in PrepareLower() 508 void CgFuncPM::DoFuncCGLower(const MIRModule &m, MIRFunction &mirFunc) in DoFuncCGLower()
|
| /arkcompiler/ets_frontend/ets2panda/ir/ |
| D | validationInfo.h | 26 ValidationInfo(util::StringView m, lexer::SourcePosition p) noexcept : msg(m), pos(p) {} in ValidationInfo()
|
| /arkcompiler/ets_frontend/es2panda/ir/ |
| D | validationInfo.h | 26 ValidationInfo(util::StringView m, lexer::SourcePosition p) noexcept : msg(m), pos(p) {} in ValidationInfo()
|
| /arkcompiler/ets_runtime/test/aottest/privateproperty_js/ |
| D | privateproperty_js.js | 19 #m() { method in ComputedProperty
|
| /arkcompiler/ets_frontend/es2panda/test/parser/ts/type_checker/ |
| D | functionCall.ts | 88 var m: number[] = func10({ x: 1, y: "foo" }); variable 89 var m: number[] = func10({ x: "bar", y: 2 }); variable
|
| /arkcompiler/ets_frontend/ets2panda/test/compiler/ts/ |
| D | functionCall.ts | 88 var m: number[] = func10({ x: 1, y: "foo" }); variable 89 var m: number[] = func10({ x: "bar", y: 2 }); variable
|
| /arkcompiler/ets_runtime/test/aottest/retype_unreachable_test/ |
| D | retype_unreachable_test.ts | 22 for(let k = 0, m = 10; k < m; k++, m--){ variable
|
| /arkcompiler/ets_runtime/test/deopttest/async_deopt/ |
| D | async_deopt.ts | 25 m:number = 3 property in B
|
| /arkcompiler/ets_frontend/es2panda/test/compiler/js/objectExpression/ |
| D | object-spread-element-arguments-check.js | 20 m(b) { method
|
| /arkcompiler/ets_frontend/arkguard/test/grammar/wildcard_global/keep_global3/ |
| D | keep_single_global.ts | 22 function m() {} // keep function
|
| /arkcompiler/ets_runtime/ecmascript/compiler/tests/ |
| D | instruction_combine_test.cpp | 167 Int32BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 178 Int32BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 260 Int64BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 273 Int64BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 331 Int32BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 345 Int32BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 403 Int64BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 415 Int64BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 427 Int64BinopMatcher m(result, &circuit); in HWTEST_F_L0() local 441 Int64BinopMatcher m(result, &circuit); in HWTEST_F_L0() local [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
| D | aarch64_targetinfo.cpp | 30 extern "C" void MAPLEInitializeAArch64TargetInfo(MemPool *m) in MAPLEInitializeAArch64TargetInfo()
|