/arkcompiler/ets_runtime/test/quickfix/ |
H A D | generate_js_and_merge_file.py | 235 ll = line.split(";") 236 original_js_filename = os.path.basename(ll[0]) 237 js_fn = replace_js(prefix + ll[0], os.path.join(output_file_dir, original_js_filename)) 239 ll[0] = js_fn 241 ll[0] = prefix + ll[0] 242 outputfp.write(";".join(ll))
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/ |
H A D | mpl_logging.cpp | 42 void LogInfo::EmitLogForUser(enum LogNumberCode num, enum LogLevel ll, const char *fmt, ...) const in EmitLogForUser() argument 45 int len = snprintf_s(buf, kMaxLogLen, kMaxLogLen - 1, "%s %02d: ", kLongLogLevels[ll], num); in EmitLogForUser() 65 void LogInfo::EmitLogForUser(enum LogNumberCode num, enum LogLevel ll, const std::string &message) const in EmitLogForUser() argument 67 EmitLogForUser(num, ll, "%s", message.c_str()); in EmitLogForUser()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | bounds_analysis.cpp | 439 int64_t ll = left_range.GetLeft(); in NarrowBoundsByNE() local 446 if (ll == rl) { in NarrowBoundsByNE() 449 if (ll == rr) { in NarrowBoundsByNE() 454 if (rl == ll) { in NarrowBoundsByNE() 455 return {BoundsRange(ll + 1, lr), right_range}; in NarrowBoundsByNE() 458 return {BoundsRange(ll, lr - 1), right_range}; in NarrowBoundsByNE() 494 int64_t ll = left_range.GetLeft(); in NarrowBoundsCase3() local 506 // With equal ll and rr left_range cannot be less than right_range in NarrowBoundsCase3() 507 if (ll == rr) { in NarrowBoundsCase3() 510 return {BoundsRange(ll, r in NarrowBoundsCase3() 524 int64_t ll = left_range.GetLeft(); NarrowBoundsCase4() local 551 int64_t ll = left_range.GetLeft(); NarrowBoundsCase6() local 585 int64_t ll = left_range.GetLeft(); TryNarrowBoundsByCC() local [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | mpl_logging.h | 145 void EmitLogForUser(enum LogNumberCode num, enum LogLevel ll, const char *fmt, ...) const; 146 void EmitLogForUser(enum LogNumberCode num, enum LogLevel ll, const std::string &message) const;
|
/arkcompiler/ets_frontend/ets2panda/varbinder/ |
H A D | scope.h | 54 ScopeFindResultT(ScopeT s, uint32_t l, uint32_t ll, Variable *v) : scope(s), level(l), lexLevel(ll), variable(v) {} in ScopeFindResultT() argument 55 ScopeFindResultT(util::StringView n, ScopeT s, uint32_t l, uint32_t ll, Variable *v) in ScopeFindResultT() argument 56 : name(n), scope(s), level(l), lexLevel(ll), variable(v) in ScopeFindResultT()
|
/arkcompiler/ets_frontend/es2panda/binder/ |
H A D | scope.h | 156 ScopeFindResult(Scope *s, uint32_t l, uint32_t ll, Variable *v) : scope(s), level(l), lexLevel(ll), variable(v) {} in ScopeFindResult() argument 157 ScopeFindResult(util::StringView n, Scope *s, uint32_t l, uint32_t ll, uint32_t sl, in ScopeFindResult() argument 159 : name(n), scope(s), level(l), lexLevel(ll), sendableLevel(sl), variable(v), concurrentFunc(c) in ScopeFindResult()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 22529 const ll = (t, e, i) => { 22581 ll(t.halfExtents, e.halfExtents, i); 22601 ll(n.halfExtents, this.halfExtents, t); [all...] |