/arkcompiler/runtime_core/libpandabase/utils/ |
D | logger.h | 109 Message(Level level, Component component, bool print_system_error) in Message() argument 110 : level_(level), component_(component), print_system_error_(print_system_error) in Message() 155 void WriteMobileLog(Level level, const char *component, const char *message) in WriteMobileLog() argument 180 std::string panda_component = "Ark " + std::string(component); in WriteMobileLog() 184 static bool IsLoggingOn(Level level, Component component) in IsLoggingOn() argument 187 (logger->component_mask_.test(component) || level == Level::FATAL); in IsLoggingOn() 190 static bool IsLoggingOnOrAbort(Level level, Component component) in IsLoggingOnOrAbort() argument 192 if (IsLoggingOn(level, component)) { in IsLoggingOnOrAbort() 206 …tatic bool IsMessageSuppressed([[maybe_unused]] Level level, [[maybe_unused]] Component component); 209 static void Log(Level level, Component component, const std::string &str); [all …]
|
D | logger.cpp | 94 bool Logger::IsMessageSuppressed([[maybe_unused]] Level level, [[maybe_unused]] Component component) in IsMessageSuppressed() argument 154 void Logger::Log(Level level, Component component, const std::string &str) in Log() argument 156 if (!IsLoggingOn(level, component)) { in Log() 161 if (!IsLoggingOn(level, component)) { in Log() 167 logger->LogLineInternal(level, component, str); in Log() 168 logger->WriteMobileLog(level, GetComponentTag(component), str.c_str()); in Log() 173 logger->LogLineInternal(level, component, line); in Log() 174 logger->WriteMobileLog(level, GetComponentTag(component), line.c_str()); in Log() 179 logger->LogLineInternal(level, component, str.substr(i)); in Log() 180 logger->WriteMobileLog(level, GetComponentTag(component), str.substr(i).c_str()); in Log() [all …]
|
/arkcompiler/ets_runtime/ecmascript/ |
D | log.h | 72 static inline bool LogIsLoggable(Level level, Component component) in LogIsLoggable() argument 74 return (level >= level_) && ((components_ & component) != 0ULL); in LogIsLoggable() 76 static inline std::string GetComponentStr(Component component) in GetComponentStr() argument 78 switch (component) in GetComponentStr() 115 template<LogLevel level, Component component> 120 std::string str = Log::GetComponentStr(component); in HiLog() 172 template<Level level, Component component> 177 std::string str = Log::GetComponentStr(component); in StdLog() 206 #define ARK_LOG(level, component) panda::ecmascript::Log::LogIsLoggable(level, component) && \ argument 207 panda::ecmascript::HiLog<LOG_##level, (component)>() [all …]
|
D | log.cpp | 149 for (const auto &component : components) { in SetLogComponentFromString() local 150 if (component == "all") { in SetLogComponentFromString() 154 if (component == "gc") { in SetLogComponentFromString() 158 if (component == "ecmascript") { in SetLogComponentFromString() 162 if (component == "interpreter") { in SetLogComponentFromString() 166 if (component == "debugger") { in SetLogComponentFromString() 170 if (component == "compiler") { in SetLogComponentFromString() 174 if (component == "builtins") { in SetLogComponentFromString() 178 if (component == "trace") { in SetLogComponentFromString()
|
/arkcompiler/runtime_core/scripts/ |
D | install-third-party | 91 while read -r component 93 component=$(echo "$component" | perl -lane 'chomp; s/^\s+//; s/\s+$//; print $_') 95 if [[ "$component" == "" || "$component" =~ ^# ]] ; then 99 IFS=',' read -r -a info <<< "$component"
|
/arkcompiler/runtime_core/templates/messages/ |
D | messages.h.erb | 17 % component = Messages.component.upcase 18 #ifndef PANDA_<%= component %>_MESSAGES_GEN_H_ 19 #define PANDA_<%= component %>_MESSAGES_GEN_H_ 43 LOG(<%= level %>, <%= component %>) << <%= msg.stream_ops(true) %>; \ 46 LOG(DEBUG, <%= component %>) << <%= msg.stream_ops(false) %>; 80 #endif // PANDA_<%= component %>_MESSAGES_GEN_H_
|
/arkcompiler/runtime_core/templates/ |
D | messages.rb | 18 ['LOG', component, Messages.split_words(name)].flatten.join('_').upcase 30 msg = is_short ? "#{component} #{level} #{number}: #{short_message}" : message 70 @component = data.component.capitalize 79 component: @component,
|
/arkcompiler/runtime_core/gn/build/ |
D | fixup-third-party.sh | 32 for component in $COMPONENTS 34 find . -regex ".*/$component.*/BUILD.gn" -exec rm -rf {} \;
|
/arkcompiler/toolchain/inspector/ |
D | ws_server.h | 31 …WsServer(const std::string& component, const std::function<void(std::string&&)>& onMessage, int32_… in WsServer() argument 32 …int port) : instanceId_(instanceId), componentName_(component), wsOnMessage_(onMessage), port_(por… in WsServer()
|
/arkcompiler/runtime_core/libpandabase/templates/ |
D | logger_impl_gen.inc.erb | 18 static const char *GetComponentTag(Logger::Component component) 21 if (component == Logger::Component::<%= c.enum %>) {
|
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | circularlySimplifyingConditionalTypesNoCrash.ts | 36 component: ComponentClass<P>
|
D | NOTICE | 3 …arty open source software along with this software and/or this software component (in the followin…
|
/arkcompiler/runtime_core/cmake/ |
D | README.md | 20 You may use built libraries in your component (e.g., `target_link_libraries(tests compiler base vix…
|
/arkcompiler/runtime_core/scripts/third-party-lists/ |
D | public | 18 # * One component record per line
|
/arkcompiler/runtime_core/compiler/docs/ |
D | reg_alloc_graph_coloring_doc.md | 41 …own as Affinity-components. In best-case scenario all nodes in affinity-component should be colore… 42 To find biases it is used component search algorithm which is recursive call to DFS, until all node…
|
/arkcompiler/runtime_core/docs/ |
D | assembly_format.md | 166 | `java.annotation.element.array.component.type` | Used to specify component type of the array anno… 192 …eArr, java.annotation.element.type=array, java.annotation.element.array.component.type=i32, java.a…
|
D | design-of-interpreter.md | 11 | Requirements | Enlists the requirements to the component. |
|
D | doxygen.config | 1189 # luminance component of the colors in the HTML output. Values below 100
|
/arkcompiler/ets_frontend/ |
D | README.md | 12 …end tool in the ARK Runtime Subsystem. Combined with the ace-ets2bundle component, it supports con…
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
D | cocos_worker_test.js | 23823 this._componentName = this.component; 23824 this.component = ""; 35776 component(t, e) { 56507 this.component = t || ""; 56514 const e = t.getComponent(this.component); 56516 N(3928, t.name, this.component); 56590 return this._paths[t].component; 58406 …stanceof _q ? s.toHierarchy(t.path) : t instanceof dq ? s.toComponent(t.component) : s.toCustomize…
|