/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | controlFlowBreakContinueWithLabel.ts | 21 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");
|
D | mappedTypeCircularReferenceInAccessor.ts | 22 interface User { 25 get bestFriend(): User 26 set bestFriend(user: SerializablePartial<User>)
|
D | partialTypeNarrowedToByTypeGuard.ts | 23 type User = { alias 28 type PartialUser = Partial<User>;
|
D | recursiveConditionalCrash3.ts | 39 interface User extends Base { interface 47 user: CanBeExpanded<User>, 55 user: CanBeExpanded<User>,
|
D | declarationEmitPrivateSymbolCausesVarDeclarationToBeEmitted.ts | 27 export class User {
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/anonClassDeclarationEmitIsAnon/ |
D | index.ts | 26 export class User { class 31 export class TimestampedUser extends Timestamped(User) {
|
/arkcompiler/ets_frontend/arkguard/test/grammar/data_type/ |
D | type_omit.ts | 20 interface User { interface 27 type OmitUser = Omit<User, "id">;
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
D | inst.cpp | 30 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() 86 …User *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()
|
D | inst.h | 365 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 …]
|
D | graph_checker.cpp | 633 void PrepareUsers(Inst *inst, ArenaVector<User *> *users) in PrepareUsers() 643 ArenaVector<User *> users(GetLocalAllocator()->Adapter()); in CheckSaveStateInputs()
|
/arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
D | move_constants.h | 52 const ArenaVector<BasicBlock *> *GetDominators(const User &user);
|
D | move_constants.cpp | 116 const ArenaVector<BasicBlock *> *MoveConstants::GetDominators(const User &user) in GetDominators()
|
/arkcompiler/runtime_core/ |
D | .clang-tidy | 18 User: user
|
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/ |
D | readme.md | 16 by yourself. After the pragram run for a while(downloading the tool), there comes the User Account …
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
D | codegen_test.cpp | 296 User user(true, index, size); in __anon0774c0120502()
|
/arkcompiler/runtime_core/cmake/ |
D | Definitions.cmake | 281 # User-specified cross-toolchains:
|
/arkcompiler/runtime_core/compiler/tests/ |
D | compiler_inst_test.cpp | 1019 User user(false, 0, 1);
|
/arkcompiler/runtime_core/docs/ |
D | ir_format.md | 256 **User** of the instruction is an object that points to the consumer instruction and its correspond…
|