Home
last modified time | relevance | path

Searched full:records (Results 1 – 25 of 83) sorted by relevance

1234

/arkcompiler/ets_frontend/ets2panda/evaluate/
DdebugInfoStorage.cpp135 const auto &records = LazyLoadRecords(iter->second); in FindClass() local
137 auto classIter = records.find(className); in FindClass()
138 return classIter == records.end() ? panda_file::File::EntityId() : classIter->second; in FindClass()
184 if (info->records.has_value()) { in LazyLoadRecords()
185 return *info->records; in LazyLoadRecords()
188 info->records.emplace(allocator_->Adapter()); in LazyLoadRecords()
189 auto &records = *info->records; in LazyLoadRecords() local
205 if (!records.emplace(recordNameView, classId).second) { in LazyLoadRecords()
206 LOG(FATAL, ES2PANDA) << "Failed to emplace class '" << recordNameView << "' in records." in LazyLoadRecords()
211 return records; in LazyLoadRecords()
/arkcompiler/runtime_core/panda_guard/obfuscate/
Dfile_path.cpp66 …// here determines if this records need to be processed as external dependence, including the foll… in DeterminePathType()
81 // scene 2: records that are not code files in DeterminePathType()
89 // scene 3: records whose package names are in the skip list in DeterminePathType()
/arkcompiler/ets_frontend/test_ecma_bcopt/
Dtest_bytecode_optimizer_for_js.txt12 # RECORDS
/arkcompiler/runtime_core/libpandabase/utils/
Dtimers.cpp118 // Print incomplete records in PrintTimers()
120 ss << formattedEvent << ", Incomplete records:" << std::endl; in PrintTimers()
172 … std::cerr << "Event " << event << " not found in records, skip record end time!" << std::endl; in TimerEndImpl()
179 " start timer not found in records, skip record end time!" << std::endl; in TimerEndImpl()
/arkcompiler/runtime_core/panda_guard/configs/
Dguard_graph_context.cpp37 auto records = file_.GetClasses(); in Init() local
38 for (auto id : records) { in Init()
/arkcompiler/runtime_core/disassembler/tests/expected/
Dscript-variable.pa10 # RECORDS
Dscript-export.pa11 # RECORDS
Dscript-dynamic-import.pa10 # RECORDS
Dmodule-local-export.pa11 # RECORDS
Dmodule-namespace-import.pa12 # RECORDS
Dmodule-regular-import.pa12 # RECORDS
/arkcompiler/runtime_core/assembler/
Dassembly-program.cpp25 ss << ", \"records\": "; in JsonDump()
/arkcompiler/runtime_core/static_core/assembler/
Dassembly-program.cpp28 ss << ", \"records\": "; in JsonDump()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
DtypeRelationContext.cpp144 auto &records = checker_->PendingConstraintCheckRecords(); in TryCheckConstraints() local
145 for (auto const &[typeParams, substitution, pos] : records) { in TryCheckConstraints()
148 records.clear(); in TryCheckConstraints()
/arkcompiler/ets_frontend/arkguard/src/utils/
DCommonCollections.ts18 // This records the collections related to property obfuscation.
42 // This records the collections related to whitelists
DSourceMapMergingUtil.ts111 …// segment[2] records the line number of the code before transform, segment[3] records the column …
112 // segment[4] records the name from the names array.
/arkcompiler/ets_frontend/test/scripts/performance_test/
Dreadme.md124 …he package, time means the build cost time, All means it records all data, avg means it records th…
/arkcompiler/runtime_core/docs/
Dassembly_format.md156 | `java.extends` | Used to specify inheritance between records. Value is the name of the base recor…
157 | `java.implements` | Used to specify interface inheritance between records. Value is the name of t…
436 # Records and types:
443 # Fields of records:
494 - Assembler doesn't guarantee that functions, records and their fields will be located in binary fi…
499 # External records and functions:
533 …er!) can be additionally processed during linkage to "bind" functions to records making them "true…
/arkcompiler/ets_frontend/es2panda/test/parser/js/module-record/
Dmodule-record-field-name-option-expected.txt13 # RECORDS
/arkcompiler/ets_frontend/ets2panda/linter/docs/rules/
Drecipe29.md18 - Records.
/arkcompiler/runtime_core/static_core/abc2program/
Dabc_file_utils.h33 constexpr std::string_view DUMP_TITLE_RECORDS = "# RECORDS";
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
Drich_logging.py221 self.records: list[logging.LogRecord] = []
231 self.records.append(record)
235 self.records.clear()
239 self.records = []
475 test_invocation_item.stash[_CAPLOG_RECORDS_KEY][when] = caplog_handler.records
/arkcompiler/ets_frontend/arkguard/src/configs/
DINameObfuscationOption.ts91 …* It records which files cannot be obfuscated (except for file name obfuscation) and their depende…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/03.utility_types/04.record_utility_type/
Drec.params.yaml43 // builtin array of records
53 // array of records
64 // tuple of records
/arkcompiler/ets_frontend/test/scripts/utils/commit_message/
Dget_commit_message.py107 print(f"repo {repo_name} no commit records were found within the specified time range")
127 …print(f'The data was successfully obtained, a total of {data_count} commit records were retrieved')

1234