Home
last modified time | relevance | path

Searched defs:base (Results 1 – 25 of 146) sorted by relevance

123456

/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/proxies/ets_proxy/
Dcheck_inheritance.js25 let base = new FooBase(); variable
57 let base = new FooBase(); variable
/arkcompiler/runtime_core/libpandabase/tests/
Dregmask_test.cpp24 void CompareWithBitset(RegMask mask, BitsetType base) in CompareWithBitset()
43 BitsetType base(value); in TestRegMask() local
/arkcompiler/ets_runtime/ecmascript/base/
Dstring_helper.cpp18 namespace panda::ecmascript::base { namespace
Dblock_hook_scope.cpp22 namespace panda::ecmascript::base { namespace
Dbuiltins_base.cpp19 namespace panda::ecmascript::base { namespace
Dpath_helper.cpp17 namespace panda::ecmascript::base { namespace
/arkcompiler/runtime_core/static_core/libpandabase/tests/
Dregmask_test.cpp24 void CompareWithBitset(RegMask mask, BitsetType base) in CompareWithBitset()
43 BitsetType base(value); in TestRegMask() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Doperands.h346 explicit MemRef(Reg base) : MemRef(base, 0) {} in MemRef()
347 MemRef(Reg base, ssize_t disp) : MemRef(base, INVALID_REGISTER, 0, disp) {} in MemRef()
348 MemRef(Reg base, Reg index, uint16_t scale) : MemRef(base, index, scale, 0) {} in MemRef()
349 …MemRef(Reg base, Reg index, uint16_t scale, ssize_t disp) : disp_(disp), scale_(scale), base_(base… in MemRef()
421 …explicit Shift(Reg base, ShiftType type, uint32_t scale) : scale_(scale), base_(base), type_(type)… in Shift()
422 explicit Shift(Reg base, uint32_t scale) : Shift(base, ShiftType::LSL, scale) {} in Shift()
/arkcompiler/ets_runtime/test/moduletest/memleakobjectcreate/
Dmemleakobjectcreate.js18 var base = { variable
/arkcompiler/ets_frontend/ets2panda/util/
Darktsconfig.cpp84 static std::string MakeAbsolute(const std::string &path, const std::string &base) in MakeAbsolute()
91 ArkTsConfig::Pattern::Pattern(std::string value, std::string base) : value_(std::move(value)), base… in Pattern()
139 static std::string ResolveConfigLocation(const std::string &relPath, const std::string &base) in ResolveConfigLocation()
165 auto base = ArkTsConfig(basePath); in ParseExtends() local
343 const auto &base = ParseExtends(configPath_, *extends, arktsConfigDir); in Parse() local
383 void ArkTsConfig::Inherit(const ArkTsConfig &base) in Inherit()
483 static fs::path Relative(const fs::path &src, const fs::path &base) in Relative()
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/classes/
Dtest-ts-classes-24.ts35 let base = new Base(); variable
/arkcompiler/runtime_core/static_core/verification/cflow/
Dcflow_common.cpp24 PandaString OffsetAsHexStr(const void *base, const void *ptr) in OffsetAsHexStr()
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsInterfaceDeclaration.cpp71 for (auto *base : type->Bases()) { in CheckInheritedPropertiesAreIdentical() local
112 for (auto *base : resolvedInterface->Bases()) { in Check() local
/arkcompiler/runtime_core/static_core/plugins/ets/playground/backend/
Dtox.ini1 [base] section
23 pytest --junitxml=report.xml --cov={[base]project_module_dir} --cov-report=term-missing ./tests argument
/arkcompiler/runtime_core/static_core/runtime/core/
Dcore_itable_builder.h25 bool Build([[maybe_unused]] ClassLinker *classLinker, [[maybe_unused]] Class *base, in Build()
/arkcompiler/runtime_core/static_core/runtime/include/
Ditable_builder.h50 bool Build([[maybe_unused]] ClassLinker *classLinker, [[maybe_unused]] Class *base, in Build()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.h249 #define DECLARE_HANDLE_PROFILE_STUB_CLASS(name, base, ...) \ argument
263 #define DECLARE_HANDLE_JIT_PROFILE_STUB_CLASS(name, base, ...) \ argument
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
Dmem_hooks.h56 AddrRange(uintptr_t base, size_t size) : base_(base), size_(size) {} in AddrRange()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dstring_helpers.h85 int base = (str[0] == '0' && (str[1] == 'x' || str[1] == 'X')) ? BASE16 : BASE10; variable
/arkcompiler/runtime_core/libpandabase/utils/
Dstring_helpers.h84 int base = (str[0] == '0' && (str[1] == 'x' || str[1] == 'X')) ? BASE16 : BASE10; variable
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/aarch64/
Dassembler_aarch64.h229 : base_(base), offsetReg_(offset), offsetImm_(0), addrmod_(AddrMode::OFFSET), in base_() argument
234 : base_(base), offsetReg_(offset), offsetImm_(0), addrmod_(AddrMode::OFFSET), in base_() argument
239 : base_(base), offsetReg_(RegisterId::INVALID_REG), offsetImm_(offset), addrmod_(addrmod), in base_() argument
/arkcompiler/runtime_core/static_core/irtoc/backend/compiler/
Dcodegen_boundary.cpp72 Reg base = GetTarget().GetFrameReg(); in GeneratePrologue() local
176 Reg base = GetTarget().GetFrameReg(); in RemoveBoundaryFrame() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dpeep.cpp39 Operand *base = mem.GetBaseRegister(); in IfOperandIsLiveAfterInsn() local
202 Operand *base = mem.GetBaseRegister(); in IsOpndLiveinBB() local
252 Operand *base = mem.GetBaseRegister(); in IfOperandIsLiveAfterInsn() local
415 Operand *base = mem.GetBaseRegister(); in IsOpndLiveinBB() local
/arkcompiler/ets_runtime/test/aottest/pgo_track_type/
Dpgo_track_type.ts91 let base = -10 variable
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_itable_builder.cpp51 static Span<ITable::Entry> LinearizeITable(ClassLinker *classLinker, Class *base, Span<Class *> cla… in LinearizeITable()
98 bool EtsITableBuilder::Build(ClassLinker *classLinker, Class *base, Span<Class *> classInterfaces, … in Build()

123456