Home
last modified time | relevance | path

Searched defs:other (Results 1 – 25 of 183) sorted by relevance

12345678

/arkcompiler/runtime_core/static_core/runtime/interpreter/
Dacc_vregister-inl.h33 ALWAYS_INLINE inline AccVRegisterT(const AccVRegister &other) in AccVRegisterT()
79 ALWAYS_INLINE inline void Move(const StaticVRegisterRef &other) in Move()
85 ALWAYS_INLINE inline void Move(const DynamicVRegisterRef &other) in Move()
121 ALWAYS_INLINE inline void MovePrimitive(const AccVRegisterTRef &other) in MovePrimitive()
130 ALWAYS_INLINE inline void MoveReference(const AccVRegisterTRef &other) in MoveReference()
139 ALWAYS_INLINE inline void Move(const AccVRegisterTRef &other) in Move()
Dvregister.h242 ALWAYS_INLINE inline void MovePrimitive(const T &other) in MovePrimitive()
248 ALWAYS_INLINE inline void MoveReference(const T &other) in MoveReference()
254 ALWAYS_INLINE inline void Move(const T &other) in Move()
427 ALWAYS_INLINE inline void MovePrimitive(const StaticVRegisterRef &other) in MovePrimitive()
433 ALWAYS_INLINE inline void MoveReference(const StaticVRegisterRef &other) in MoveReference()
439 ALWAYS_INLINE inline void Move(const StaticVRegisterRef &other) in Move()
519 ALWAYS_INLINE inline void MovePrimitive(const DynamicVRegisterRef &other) in MovePrimitive()
525 ALWAYS_INLINE inline void MoveReference(const DynamicVRegisterRef &other) in MoveReference()
531 ALWAYS_INLINE inline void Move(const DynamicVRegisterRef &other) in Move()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dptr.h89 explicit Ptr(const Ptr &other) : pointer(other.get()) {} in Ptr()
91 explicit Ptr(Ptr &&other) noexcept : pointer(other.get()) {} in Ptr() function
94 explicit Ptr(const Ptr<U, CheckU> &other) : pointer(other.get()) in Ptr()
100 Ptr(const Ptr<U, CheckU> &other, PtrCheckerType<T> checker) : pointer(other.get()) in Ptr()
106 explicit Ptr(Ptr<U, CheckU> &&other) : pointer(other.get()) in Ptr()
112 Ptr(Ptr<U, CheckU> &&other, PtrCheckerType<T> checker) : pointer(other.get()) in Ptr()
177 void swap(Ptr &other) noexcept in swap()
Dsafe_ptr.h60 SafePtr(const SafePtr &other) : base(other.base) {} in SafePtr()
62 SafePtr(SafePtr &&other) noexcept : base(std::move(other.base)) {} in SafePtr() function
65 explicit SafePtr(const SafePtr<U> &other) : base(other.get(), CheckNothing<T>) in SafePtr()
70 explicit SafePtr(SafePtr<U> &&other) : base(other.get(), CheckNothing<T>) in SafePtr() function
120 void swap(SafePtr &other) noexcept in swap()
/arkcompiler/runtime_core/static_core/irtoc/lang/
Dregmap.rb37 def +(other) argument
47 def -(other) argument
57 def ==(other) argument
Dregmask.rb88 def +(other) argument
106 def -(other) argument
129 def ==(other) argument
/arkcompiler/runtime_core/libpandabase/mem/
Darena_allocator_stl_adapter.h36 using other = ArenaAllocatorAdapter<U, use_oom_handler>; member
45 …ArenaAllocatorAdapter(const ArenaAllocatorAdapter<U, use_oom_handler> &other) : allocator_(other.a… in ArenaAllocatorAdapter()
74 using other = ArenaAllocatorAdapter<U, use_oom_handler>; member
83 …ArenaAllocatorAdapter(const ArenaAllocatorAdapter<U, use_oom_handler> &other) : allocator_(other.a… in ArenaAllocatorAdapter()
88 ArenaAllocatorAdapter(ArenaAllocatorAdapter &&other) noexcept in ArenaAllocatorAdapter() function
Dmem_range.h48 bool IsIntersect(const MemRange &other) const in IsIntersect()
55 bool Contains(const MemRange &other) const in Contains()
/arkcompiler/runtime_core/static_core/libpandabase/mem/
Darena_allocator_stl_adapter.h38 using other = ArenaAllocatorAdapter<U, USE_OOM_HANDLER>; member
47 …ArenaAllocatorAdapter(const ArenaAllocatorAdapter<U, USE_OOM_HANDLER> &other) : allocator_(other.a… in ArenaAllocatorAdapter()
78 using other = ArenaAllocatorAdapter<U, USE_OOM_HANDLER>; member
87 …ArenaAllocatorAdapter(const ArenaAllocatorAdapter<U, USE_OOM_HANDLER> &other) : allocator_(other.a… in ArenaAllocatorAdapter()
92 ArenaAllocatorAdapter(ArenaAllocatorAdapter &&other) noexcept in ArenaAllocatorAdapter() function
Dmem_range.h46 bool IsIntersect(const MemRange &other) const in IsIntersect()
53 bool Contains(const MemRange &other) const in Contains()
/arkcompiler/runtime_core/static_core/runtime/mem/
Drunslots_allocator_stl_adapter.h39 using other = RunSlotsAllocatorAdapter<U, AllocConfigT, LockConfigT>; member
51 RunSlotsAllocatorAdapter(const RunSlotsAllocatorAdapter<U, AllocConfigT, LockConfigT> &other) in RunSlotsAllocatorAdapter()
87 using other = RunSlotsAllocatorAdapter<U, AllocConfigT, LockConfigT>; member
97 RunSlotsAllocatorAdapter(const RunSlotsAllocatorAdapter<U, AllocConfigT, LockConfigT> &other) in RunSlotsAllocatorAdapter()
103 RunSlotsAllocatorAdapter(RunSlotsAllocatorAdapter &&other) noexcept in RunSlotsAllocatorAdapter() function
Dallocator_adapter.h38 using other = AllocatorAdapter<U, ALLOC_SCOPE_T>; member
51 AllocatorAdapter(const AllocatorAdapter<U, ALLOC_SCOPE_T> &other) : allocator_(other.allocator_) in AllocatorAdapter()
86 using other = AllocatorAdapter<U, ALLOC_SCOPE_T>; member
98 AllocatorAdapter(const AllocatorAdapter<U, ALLOC_SCOPE_T> &other) : allocator_(other.allocator_) in AllocatorAdapter()
Dvm_handle-inl.h27 inline VMHandle<T>::VMHandle(const LocalObjectHandle<P> &other) : HandleBase(other.GetAddress()) in VMHandle()
/arkcompiler/ets_frontend/es2panda/parser/program/
Dprogram.cpp32 Program::Program(Program &&other) in Program() function in panda::es2panda::parser::Program
56 Program &Program::operator=(Program &&other) in operator =()
/arkcompiler/ets_frontend/ets2panda/ir/
Dstatement.h42 Statement(Statement const &other) : AstNode(static_cast<AstNode const &>(other)) {} in Statement() function
57 …TypedStatement(TypedStatement const &other) : Typed<Statement>(static_cast<Typed<Statement> const … in TypedStatement() function
78 AnnotatedStatement(AnnotatedStatement const &other) in AnnotatedStatement() function
Dexpression.cpp21 AnnotatedExpression::AnnotatedExpression(AnnotatedExpression const &other, ArenaAllocator *const al… in AnnotatedExpression() function in panda::es2panda::ir::AnnotatedExpression
/arkcompiler/ets_frontend/es2panda/typescript/types/
Dtype.cpp29 void Type::Identical(TypeRelation *relation, Type *other) in Identical()
39 void Type::Compare([[maybe_unused]] TypeRelation *relation, [[maybe_unused]] Type *other) {} in Compare()
/arkcompiler/ets_runtime/ecmascript/mem/
Dchunk_allocator.h36 using other = ChunkAllocator<U>; member
45 explicit ChunkAllocator(const ChunkAllocator<U> &other) : chunk_(other.chunk_) in ChunkAllocator()
53 ChunkAllocator(ChunkAllocator &&other) noexcept in ChunkAllocator() function
Dmark_stack.h105 inline void BeginMarking(Heap *heap, ContinuousStack<T> *other) in BeginMarking()
114 inline void FinishMarking(ContinuousStack<T> *other) in FinishMarking()
Dcaddress_allocator.h36 using other = CAddressAllocator<U>; member
45 explicit CAddressAllocator(const CAddressAllocator<U> &other [[maybe_unused]]) in CAddressAllocator()
/arkcompiler/ets_frontend/ets2panda/util/
Dustring.h61 int Compare(const StringView &other) const noexcept in Compare()
66 int Compare(const std::string_view &other) const noexcept in Compare()
294 void Append(const StringView &other) noexcept in Append()
303 void Append(const char *other) noexcept in Append()
311 void Append(const std::string &other) noexcept in Append()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dframe_states.h51 void CopyFrom(FrameLiveOut *other) in CopyFrom()
56 bool MergeLiveout(FrameLiveOut *other) in MergeLiveout()
91 void CopyCurrentStatus(FrameContext *other) in CopyCurrentStatus()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mempool/include/
Dmempool_allocator.h214 using other = MapleAllocatorAdapter<U>; member
220 …MapleAllocatorAdapter(const MapleAllocatorAdapter<U> &other) : mapleAllocator(other.mapleAllocator) in MapleAllocatorAdapter()
246 using other = MapleAllocatorAdapter<U>; member
252 …MapleAllocatorAdapter(const MapleAllocatorAdapter<U> &other) : mapleAllocator(other.mapleAllocator) in MapleAllocatorAdapter()
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
Dcpu_affinity.cpp110 CpuSet &CpuSet::operator&=(const CpuSet &other) in operator &=()
116 CpuSet &CpuSet::operator|=(const CpuSet &other) in operator |=()
122 CpuSet &CpuSet::operator^=(const CpuSet &other) in operator ^=()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/
Dets_handle.h36 inline explicit EtsHandle(const VMHandle<P> &other) : VMHandle<T>(other) in EtsHandle()

12345678