Home
last modified time | relevance | path

Searched refs:ALL (Results 1 - 25 of 67) sorted by relevance

123

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/enum_types/
H A Dverbose_format.py22 ALL = "all" variable in VerboseKind
28 ALL = "all" variable in VerboseFilter
/arkcompiler/ets_runtime/ecmascript/taskpool/
H A Dtask.h25 ALL, member in panda::ecmascript::TaskType
43 return TaskType::ALL; in GetTaskType()
H A Drunner.cpp49 if (type != TaskType::ALL && type != runningTask_[i]->GetTaskType()) { in TerminateTask()
59 TerminateTask(ALL_TASK_ID, TaskType::ALL); in TerminateThread()
H A Dtaskpool.cpp48 runner_->TerminateTask(id, TaskType::ALL); in Destroy()
H A Dtask_queue.cpp51 if (type != TaskType::ALL && type != task->GetTaskType()) { in TerminateTask()
/arkcompiler/ets_runtime/ecmascript/
H A Dlog_wrapper.h24 #define LOG_FULL(level) ARK_LOG(level, Component::ALL) << "[" << __func__ << ":" << __LINE__ << "] "
34 #define LOG_ECMA_IF(cond, level) (cond) && ARK_LOG(level, Component::ALL)
H A Dlog.h64 ALL = 0xFFFFFFFFULL, enumerator
118 case Component::ALL: in GetComponentStr()
H A Dlog.cpp67 ComponentMark Log::components_ = Component::ALL;
151 components_ = Component::ALL; in SetLogComponentFromString()
/arkcompiler/ets_frontend/es2panda/typescript/types/
H A DtypeFacts.h50 ALL = (1 << 24) - 1, member in panda::es2panda::checker::TypeFacts
105 EMPTY_OBJECT_STRICT_FACTS = ALL & ~(EQ_UNDEFINED | EQ_NULL | EQ_UNDEFINED_OR_NULL),
106 EMPTY_OBJECT_FACTS = ALL,
H A DanyType.cpp45 return TypeFacts::ALL; in GetTypeFacts()
H A DunknownType.cpp27 return TypeFacts::ALL; in GetTypeFacts()
/arkcompiler/runtime_core/static_core/runtime/
H A Dthread_manager.h42 ALL = 8, // See the comment in the function SatisfyTheMask below member in ark::EnumerationFlag
59 bool EnumerateThreads(const Callback &cb, unsigned int incMask = static_cast<unsigned int>(EnumerationFlag::ALL), in EnumerateThreads()
85 if ((mask & static_cast<unsigned int>(EnumerationFlag::ALL)) != 0) { in SatisfyTheMask()
90 // To deal with it, just add a specific ALL case in SatisfyTheMask()
143 unsigned int incMask = static_cast<unsigned int>(EnumerationFlag::ALL), in EnumerateThreadsWithLockheld()
/arkcompiler/ets_frontend/ets2panda/checker/types/
H A DtypeFacts.h55 ALL = (LAST << 1U) - 1U, member in ark::es2panda::checker::TypeFacts
103 EMPTY_OBJECT_STRICT_FACTS = ALL & ~(EQ_UNDEFINED | EQ_NULL | EQ_UNDEFINED_OR_NULL),
104 EMPTY_OBJECT_FACTS = ALL,
/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Dbasicblock.h32 ALL, member in panda::compiler::IterationType
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) {
717 if constexpr (IterationType::ALL == T && IterationDirection::BACKWARD == D) {
859 class InstBackwardIterator<IterationType::INST> : public InstBackwardIterator<IterationType::ALL> {
862 : InstBackwardIterator<IterationType::ALL>(nullptr)
877 explicit InstBackwardIterator(Inst *current) : InstBackwardIterator<IterationType::ALL>(current) {}
998 : public InstSafeIterator<IterationType::ALL, IterationDirectio
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
H A Dbasicblock.h32 ALL, member in ark::compiler::IterationType
49 using AllInstIter = InstForwardIterator<IterationType::ALL>;
55 using AllInstSafeIter = InstSafeIterator<IterationType::ALL, IterationDirection::FORWARD>;
59 using AllInstSafeReverseIter = InstSafeIterator<IterationType::ALL, IterationDirection::BACKWARD>;
460 if constexpr (IterationType::ALL == T && IterationDirection::FORWARD == D) { in InstIterator()
470 if constexpr (IterationType::ALL == T && IterationDirection::BACKWARD == D) { in InstIterator()
612 class InstBackwardIterator<IterationType::INST> : public InstBackwardIterator<IterationType::ALL> {
615 : InstBackwardIterator<IterationType::ALL>(nullptr) in InstBackwardIterator()
630 explicit InstBackwardIterator(Inst *current) : InstBackwardIterator<IterationType::ALL>(current) {} in InstBackwardIterator()
750 : public InstSafeIterator<IterationType::ALL, IterationDirectio
[all...]
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/
H A Dpause_on_exceptions_state.h20 enum class PauseOnExceptionsState { NONE = 0x0, CAUGHT = 0x1, UNCAUGHT = 0x2, ALL = 0x3 }; member in ark::tooling::inspector::PauseOnExceptionsState
/arkcompiler/runtime_core/static_core/runtime/include/
H A Dclass-inl.h177 case FindFilter::ALL: in GetFields()
208 if (FILTER == FindFilter::ALL) { in FindDeclaredField()
243 if (FILTER == FindFilter::STATIC || FILTER == FindFilter::ALL) { in FindField()
268 case FindFilter::ALL: in GetMethods()
281 if constexpr (FILTER == FindFilter::ALL || FILTER == FindFilter::STATIC) { in FindDirectMethod()
290 if constexpr (FILTER == FindFilter::ALL || FILTER == FindFilter::INSTANCE) { in FindDirectMethod()
325 if (FILTER == FindFilter::ALL || FILTER == FindFilter::INSTANCE) { in FindClassMethod()
399 return FindField<FindFilter::ALL>(pred); in FindField()
405 return FindDeclaredField<FindFilter::ALL>(pred); in FindDeclaredField()
444 return FindDirectMethod<FindFilter::ALL, MethodNameCom
[all...]
H A Dstack_walker.h29 ALL, // unwing all frames including inlined member in ark::UnwindPolicy
92 static PANDA_PUBLIC_API StackWalker Create(const ManagedThread *thread, UnwindPolicy policy = UnwindPolicy::ALL);
95 StackWalker(void *fp, bool isFrameCompiled, uintptr_t npc, UnwindPolicy policy = UnwindPolicy::ALL);
405 UnwindPolicy policy_ {UnwindPolicy::ALL};
/arkcompiler/ets_frontend/ets2panda/varbinder/
H A DTSBinder.h37 return ResolveBindingOptions::ALL;
H A DvariableFlags.h96 ALL = (LAST << 1U) - 1U, member in ark::es2panda::varbinder::ResolveBindingOptions
97 ALL_NON_TYPE = ALL - TYPE_ALIASES,
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
H A Dtest_base.py131 verbose in [ALL, SHORT] and filter == ALL -> True
132 verbose in [ALL, SHORT] and filter == KNOWN and status = New or Known or Passed Ignored -> True
133 verbose in [ALL, SHORT] and filter == NEW and status = New -> True
140 if verbose in [VerboseKind.ALL, VerboseKind.SHORT]:
141 is_all = verbose_filter == VerboseFilter.ALL
153 verbose in [ALL, SHORT] -> True
155 verbose == NONE and filter == ALL -> True
163 is_all = verbose_filter == VerboseFilter.ALL
/arkcompiler/ets_frontend/ets2panda/checker/types/ts/
H A DanyType.cpp44 return TypeFacts::ALL; in GetTypeFacts()
H A DunknownType.cpp26 return TypeFacts::ALL; in GetTypeFacts()
/arkcompiler/ets_frontend/es2panda/binder/
H A DvariableFlags.h77 ALL = BINDINGS | INTERFACES, member in panda::es2panda::binder::ResolveBindingOptions
83 ALL = 1U << 0U, member in panda::es2panda::binder::ResolveBindingFlags
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
H A Dcli.py37 ALL = 'all' variable in Command
190 if command in (Command.GEN, Command.ALL):
194 if command in (Command.RUN, Command.ALL):

Completed in 13 milliseconds

123