Home
last modified time | relevance | path

Searched refs:record_name (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/runtime_core/assembler/
Dannotation.h37 AnnotationData(std::string_view record_name, std::vector<AnnotationElement> elements) in AnnotationData() argument
38 : record_name_(record_name), elements_(std::move(elements)) in AnnotationData()
42 explicit AnnotationData(std::string_view record_name) : record_name_(record_name) {} in AnnotationData() argument
Dassembly-emitter.cpp416 auto record_name = annotation.GetName(); in CreateAnnotationItem() local
417 auto it = program.record_table.find(record_name); in CreateAnnotationItem()
419 SetLastError("Record " + record_name + " not found"); in CreateAnnotationItem()
425 SetLastError("Record " + record_name + " isn't annotation"); in CreateAnnotationItem()
459 auto *cls = entities.class_items.find(record_name)->second; in CreateAnnotationItem()
1213 std::string record_name = GetOwnerName(name); in EmitDebugInfo() local
1215 if (!record_name.empty()) { in EmitDebugInfo()
1216 auto &rec = program.record_table.find(record_name)->second; in EmitDebugInfo()
Dassembly-parser.cpp1823 std::string record_name = record_full_name.substr(0, pos_point); in ParseOperandField() local
1826 auto it_record = program_.record_table.find(record_name); in ParseOperandField()
1828 context_.token = record_name; in ParseOperandField()
1830 it_record = program_.record_table.find(record_name); in ParseOperandField()
1842 … field.bound_left = context_.tokens[context_.number - 1].bound_left + record_name.length() + 1; in ParseOperandField()
/arkcompiler/ets_frontend/test262/
Drun_sunspider.py515 record_name = os.path.splitext(os.path.split(self.js_file)[1])[0]
562 record_name = os.path.splitext(os.path.split(self.js_file)[1])[0]
/arkcompiler/ets_frontend/es2panda/test/
Drunner.py921record_name = os.path.relpath(test_path, os.path.dirname(self.files_info_path)).split('.')[0]
923 … file_info = ('%s;%s;%s;%s;%s' % (test_path, record_name, module_kind, test_path, record_name))