/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | typeofStripsFreshness.ts | 30 const ALL = "all"; constant 31 AssertType(ALL, "string"); 34 type All = typeof ALL;
|
/arkcompiler/ets_runtime/ecmascript/taskpool/ |
D | task.h | 24 ALL, enumerator 42 return TaskType::ALL; in GetTaskType()
|
D | runner.cpp | 44 if (type != TaskType::ALL && type != runningTask_[i]->GetTaskType()) { in TerminateTask() 54 TerminateTask(ALL_TASK_ID, TaskType::ALL); in TerminateThread()
|
D | taskpool.h | 51 void TerminateTask(int32_t id, TaskType type = TaskType::ALL);
|
D | taskpool.cpp | 45 runner_->TerminateTask(id, TaskType::ALL); in Destroy()
|
D | task_queue.cpp | 51 if (type != TaskType::ALL && type != task->GetTaskType()) { in TerminateTask()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | log_wrapper.h | 24 #define LOG_FULL(level) ARK_LOG(level, Component::ALL) << __func__ << ":" << __LINE__ << " " 31 #define LOG_ECMA_IF(cond, level) (cond) && ARK_LOG(level, Component::ALL)
|
D | log.h | 51 ALL = 0xFFFFFFFFULL, enumerator 96 case Component::ALL: in GetComponentStr()
|
D | log.cpp | 67 ComponentMark Log::components_ = Component::ALL; 151 components_ = Component::ALL; in SetLogComponentFromString()
|
D | js_date_time_format.h | 24 enum class DefaultsOption : uint8_t { DATE = 0x01, TIME, ALL }; enumerator
|
/arkcompiler/ets_frontend/es2panda/typescript/types/ |
D | typeFacts.h | 49 ALL = (1 << 24) - 1, enumerator 104 EMPTY_OBJECT_STRICT_FACTS = ALL & ~(EQ_UNDEFINED | EQ_NULL | EQ_UNDEFINED_OR_NULL), 105 EMPTY_OBJECT_FACTS = ALL,
|
D | unknownType.cpp | 27 return TypeFacts::ALL; in GetTypeFacts()
|
D | anyType.cpp | 45 return TypeFacts::ALL; in GetTypeFacts()
|
/arkcompiler/runtime_core/compiler/optimizer/ir/ |
D | basicblock.h | 32 ALL, enumerator 49 using AllInstIter = InstForwardIterator<IterationType::ALL>; 55 using AllInstSafeIter = InstSafeIterator<IterationType::ALL, IterationDirection::FORWARD>; 59 using AllInstSafeReverseIter = InstSafeIterator<IterationType::ALL, IterationDirection::BACKWARD>; 707 if constexpr (IterationType::ALL == T && IterationDirection::FORWARD == D) { in InstIterator() 717 if constexpr (IterationType::ALL == T && IterationDirection::BACKWARD == D) { in InstIterator() 859 class InstBackwardIterator<IterationType::INST> : public InstBackwardIterator<IterationType::ALL> { 862 : InstBackwardIterator<IterationType::ALL>(nullptr) 877 …explicit InstBackwardIterator(Inst *current) : InstBackwardIterator<IterationType::ALL>(current) {} in InstBackwardIterator() 998 : public InstSafeIterator<IterationType::ALL, IterationDirection::BACKWARD> { [all …]
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | variableFlags.h | 74 ALL = BINDINGS | INTERFACES, enumerator 80 ALL = 1U << 0U, enumerator
|
D | binder.h | 57 bindingOptions_ = ResolveBindingOptions::ALL; in Binder() 69 void IdentifierAnalysis(ResolveBindingFlags flags = ResolveBindingFlags::ALL); 232 ResolveBindingFlags bindingFlags_ {ResolveBindingFlags::ALL};
|
D | binder.cpp | 184 } else if (bindingFlags_ & ResolveBindingFlags::ALL) { in IdentifierAnalysis() 206 if (currentScope->FindLocal(localName, ResolveBindingOptions::ALL) != nullptr || in ValidateExportDecl() 293 res = scope_->Find(ident->Name(), ResolveBindingOptions::ALL); in LookupIdentReference()
|
/arkcompiler/runtime_core/pandastdlib/ |
D | CMakeLists.txt | 21 add_custom_target(pandastdlib ALL
|
/arkcompiler/runtime_core/panda/ |
D | CMakeLists.txt | 47 add_custom_target(panda ALL
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_date_time_format_test.cpp | 214 thread, JSHandle<JSTaggedValue>::Cast(options), RequiredOption::ANY, DefaultsOption::ALL); in HWTEST_F_L0() 253 …thread, JSHandle<JSTaggedValue>::Cast(options), RequiredOption::ANY, DefaultsOption::ALL); // test… in HWTEST_F_L0() 304 …thread, JSHandle<JSTaggedValue>::Cast(options), RequiredOption::ANY, DefaultsOption::ALL); // test… in HWTEST_F_L0() 396 thread, JSHandle<JSTaggedValue>::Cast(options), RequiredOption::ANY, DefaultsOption::ALL); in HWTEST_F_L0() 443 thread, JSHandle<JSTaggedValue>::Cast(options), RequiredOption::ANY, DefaultsOption::ALL); in HWTEST_F_L0() 489 thread, JSHandle<JSTaggedValue>::Cast(options), RequiredOption::ANY, DefaultsOption::ALL); in HWTEST_F_L0() 600 thread, JSHandle<JSTaggedValue>::Cast(options), RequiredOption::ANY, DefaultsOption::ALL); in HWTEST_F_L0() 694 thread, JSHandle<JSTaggedValue>::Cast(options), RequiredOption::ANY, DefaultsOption::ALL); in HWTEST_F_L0()
|
/arkcompiler/runtime_core/assembler/ |
D | CMakeLists.txt | 109 add_custom_target(pandasm ALL
|
/arkcompiler/toolchain/tooling/base/ |
D | pt_params.h | 338 enum class PauseOnExceptionsState : uint8_t { NONE, UNCAUGHT, ALL }; enumerator 362 state_ = PauseOnExceptionsState::ALL; in StoreState() 372 PauseOnExceptionsState state_ {PauseOnExceptionsState::ALL};
|
/arkcompiler/runtime_core/libpandafile/ |
D | CMakeLists.txt | 47 add_custom_target(type_gen_${PROJECT_NAME} ALL DEPENDS "${OUTFILE}")
|
/arkcompiler/ets_frontend/es2panda/ |
D | es2panda.cpp | 93 ast.Binder()->IdentifierAnalysis(binder::ResolveBindingFlags::ALL); in Compile()
|
/arkcompiler/ets_frontend/es2panda/ir/ |
D | astNode.h | 76 ALL = STATIC | ASYNC | ACCESS | DECLARE | READONLY | ABSTRACT, enumerator
|