Home
last modified time | relevance | path

Searched refs:User (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DcontrolFlowBreakContinueWithLabel.ts21 enum User { A, B }
23 let user: User = User.A
25 AssertType(User.A, "User.A");
31 case User.A:
32 AssertType(User.A, "User.A");
34 user = User.B;
35 AssertType(user = User.B, "User.B");
37 AssertType(User.B, "User.B");
42 case User.B:
43 AssertType(User.B, "User.B");
DmappedTypeCircularReferenceInAccessor.ts22 interface User {
25 get bestFriend(): User
26 set bestFriend(user: SerializablePartial<User>)
DpartialTypeNarrowedToByTypeGuard.ts23 type User = { alias
28 type PartialUser = Partial<User>;
DrecursiveConditionalCrash3.ts39 interface User extends Base { interface
47 user: CanBeExpanded<User>,
55 user: CanBeExpanded<User>,
DdeclarationEmitPrivateSymbolCausesVarDeclarationToBeEmitted.ts27 export class User {
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/anonClassDeclarationEmitIsAnon/
Dindex.ts26 export class User { class
31 export class TimestampedUser extends Timestamped(User) {
/arkcompiler/ets_frontend/arkguard/test/grammar/data_type/
Dtype_omit.ts20 interface User { interface
27 type OmitUser = Omit<User, "id">;
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinst.cpp30 Inst *User::GetInst() in GetInst()
37 p += (GetIndex() + 1) * sizeof(User); in GetInst()
64 auto size = new_capacity * (sizeof(User) + sizeof(Inst *)) + sizeof(Inst *); in Reallocate()
69 *reinterpret_cast<Inst **>(reinterpret_cast<User *>(new_stor) + new_capacity) = owner_inst; in Reallocate()
72 users_ = reinterpret_cast<User *>(new_stor); in Reallocate()
78 auto *new_inputs = reinterpret_cast<Input *>(new_stor + sizeof(User) * new_capacity) + 1; in Reallocate()
86User *new_user = new (reinterpret_cast<User *>(new_stor) + new_capacity - i - 1) User(false, i, ne… in Reallocate()
98 users_ = reinterpret_cast<User *>(new_stor); in Reallocate()
109 new (users_ + capacity_ - size_ - 1) User(false, size_, capacity_); in Append()
Dinst.h365 class User final {
367 User() = default;
368 User(bool is_static, unsigned index, unsigned size) in User() function
375 ~User() = default;
378 NO_COPY_SEMANTIC(User);
379 NO_MOVE_SEMANTIC(User);
384 return const_cast<User *>(this)->GetInst(); in GetInst()
439 void SetNext(User *next) in SetNext()
444 void SetPrev(User *prev) in SetPrev()
473 User *next_ {nullptr};
[all …]
Dgraph_checker.cpp633 void PrepareUsers(Inst *inst, ArenaVector<User *> *users) in PrepareUsers()
643 ArenaVector<User *> users(GetLocalAllocator()->Adapter()); in CheckSaveStateInputs()
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dmove_constants.h52 const ArenaVector<BasicBlock *> *GetDominators(const User &user);
Dmove_constants.cpp116 const ArenaVector<BasicBlock *> *MoveConstants::GetDominators(const User &user) in GetDominators()
/arkcompiler/runtime_core/
D.clang-tidy18 User: user
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/
Dreadme.md16 by yourself. After the pragram run for a while(downloading the tool), there comes the User Account …
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Dcodegen_test.cpp296 User user(true, index, size); in __anon0774c0120502()
/arkcompiler/runtime_core/cmake/
DDefinitions.cmake281 # User-specified cross-toolchains:
/arkcompiler/runtime_core/compiler/tests/
Dcompiler_inst_test.cpp1019 User user(false, 0, 1);
/arkcompiler/runtime_core/docs/
Dir_format.md256 **User** of the instruction is an object that points to the consumer instruction and its correspond…