/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/enum_types/ |
H A D | verbose_format.py | 22 ALL = "all" variable in VerboseKind 28 ALL = "all" variable in VerboseFilter
|
/arkcompiler/ets_runtime/ecmascript/taskpool/ |
H A D | task.h | 25 ALL, member in panda::ecmascript::TaskType 43 return TaskType::ALL; in GetTaskType()
|
H A D | runner.cpp | 49 if (type != TaskType::ALL && type != runningTask_[i]->GetTaskType()) { in TerminateTask() 59 TerminateTask(ALL_TASK_ID, TaskType::ALL); in TerminateThread()
|
H A D | taskpool.cpp | 48 runner_->TerminateTask(id, TaskType::ALL); in Destroy()
|
H A D | task_queue.cpp | 51 if (type != TaskType::ALL && type != task->GetTaskType()) { in TerminateTask()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | log_wrapper.h | 24 #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 D | log.h | 64 ALL = 0xFFFFFFFFULL, enumerator 118 case Component::ALL: in GetComponentStr()
|
H A D | log.cpp | 67 ComponentMark Log::components_ = Component::ALL; 151 components_ = Component::ALL; in SetLogComponentFromString()
|
/arkcompiler/ets_frontend/es2panda/typescript/types/ |
H A D | typeFacts.h | 50 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 D | anyType.cpp | 45 return TypeFacts::ALL; in GetTypeFacts()
|
H A D | unknownType.cpp | 27 return TypeFacts::ALL; in GetTypeFacts()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | thread_manager.h | 42 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 D | typeFacts.h | 55 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 D | basicblock.h | 32 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 D | basicblock.h | 32 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 D | pause_on_exceptions_state.h | 20 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 D | class-inl.h | 177 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 D | stack_walker.h | 29 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 D | TSBinder.h | 37 return ResolveBindingOptions::ALL;
|
H A D | variableFlags.h | 96 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 D | test_base.py | 131 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 D | anyType.cpp | 44 return TypeFacts::ALL; in GetTypeFacts()
|
H A D | unknownType.cpp | 26 return TypeFacts::ALL; in GetTypeFacts()
|
/arkcompiler/ets_frontend/es2panda/binder/ |
H A D | variableFlags.h | 77 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 D | cli.py | 37 ALL = 'all' variable in Command 190 if command in (Command.GEN, Command.ALL): 194 if command in (Command.RUN, Command.ALL):
|