Home
last modified time | relevance | path

Searched refs:names (Results 1 - 24 of 24) sorted by relevance

/arkcompiler/runtime_core/static_core/verification/config/whitelist/
H A Dwhitelist.cpp42 auto &names = config->whitelistNames[k]; in InsertIntoWhitelist() local
43 if (std::find(names.begin(), names.end(), name) != names.end()) { in InsertIntoWhitelist()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
H A Ddecorator_value.py84 Log.exception_and_raise(_LOGGER, f"Cannot process CLI names {cli_name}")
88 def _to_qemu(names: Union[str, List[Tuple[str, bool]], None]) -> Optional[QemuKind]:
89 if names is None:
91 if isinstance(names, str):
92 return enum_from_str(names, QemuKind)
93 result = [n for n in names if n[1] is not None]
108 def _to_test_suites(names: Optional[List[Union[str, TestSuitesFromCliTuple]]]) -> Optional[Set[str]]:
109 if names is None:
112 for name in names:
/arkcompiler/runtime_core/static_core/plugins/ets/doc/
H A Dmerge_markdown.py24 names = []
29 names.append(line[1:])
32 for name in names:
/arkcompiler/runtime_core/static_core/cross_values/
H A Dcross_values_getters_generator.rb37 names = data.scan /DEFINE_VALUE\((\w+),/
42 names.sort_by(&:first).each do |define|
/arkcompiler/runtime_core/static_core/libpandafile/tests/
H A Dfile_test.cpp119 std::vector<std::string> names = {"C", "B", "A"}; in TEST() local
121 classes.reserve(names.size()); in TEST()
123 for (auto &name : names) { in TEST()
137 for (size_t i = 0; i < names.size(); i++) { in TEST()
138 EXPECT_EQ(pandaFile->GetClassId(reinterpret_cast<const uint8_t *>(names[i].c_str())).GetOffset(), in TEST()
/arkcompiler/runtime_core/static_core/plugins/ets/snippet_verifier/
H A Dverify.py185 def check_name(names, name, filename, i, correct_tags):
186 if name in names:
191 names[name] = True
197 names = {}
217 correct_tags = check_name(names, sm['name'],
/arkcompiler/runtime_core/bytecode_optimizer/
H A Dbytecode_analysis_results.cpp75 const auto &names = local_export_slot_external_names_[slot]; local
76 if (name_idx > names.size()) {
79 external_name = names[name_idx];
128 os << "Local export slot external names: " << std::endl; in Dump()
141 os << "Namespace import slot source record names: " << std::endl; in Dump()
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
H A Dhook.py75 names: List[str],
79 in get_plugins('hooks', names,
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
H A Dcl_option.cpp30 std::copy(optnames.begin(), optnames.end(), std::back_inserter(names)); in FinalizeInitialization()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
H A Dcl_option.h160 DEBUG_ASSERT(names.size() > 0, "names.size should be non zero"); in GetName()
161 return names[0]; in GetName()
183 std::vector<std::string> names; // names of the option member in maplecl::OptionInterface
293 DEBUG_ASSERT(names.size() > 0, "names.size should be non zero"); in onstexpr()
294 return ((value == true) ? names[0] : this->GetDisabledName()[0]); in onstexpr()
/arkcompiler/runtime_core/compiler/optimizer/ir/
H A Dlocations.h60 static constexpr std::array names = { in GetName() local
66 return names[static_cast<unsigned>(GetKind())]; in GetName()
/arkcompiler/runtime_core/libpandafile/tests/
H A Dfile_test.cpp102 std::vector<std::string> names = {"C", "B", "A"}; in HWTEST() local
105 for (auto &name : names) { in HWTEST()
119 for (size_t i = 0; i < names.size(); i++) { in HWTEST()
120 EXPECT_EQ(panda_file->GetClassId(reinterpret_cast<const uint8_t *>(names[i].c_str())).GetOffset(), in HWTEST()
/arkcompiler/ets_frontend/ets2panda/aot/
H A Dmain.cpp113 static std::optional<std::vector<util::Plugin>> InitializePlugins(std::vector<std::string> const &names) in InitializePlugins() argument
116 for (auto &name : names) { in InitializePlugins()
/arkcompiler/runtime_core/static_core/verification/config/context/
H A Dcontext.h68 std::array<PandaVector<PandaString>, static_cast<size_t>(WhitelistKind::LAST)> names; member
/arkcompiler/runtime_core/libpandabase/tests/
H A Dbit_table_test.cpp180 static constexpr const char *names[] = {"field0", "field1"}; in GetName()
181 return names[index]; in GetName()
/arkcompiler/runtime_core/libpandabase/utils/
H A Dbit_table.h285 static const std::array<const char *, sizeof...(Columns)> names = { in GetBitTableColumnNamesImpl() local
287 return names.data(); in GetBitTableColumnNamesImpl()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
H A Drich_logging.py91 def get_option_ini(config: Config, *names: str):
92 for name in names:
/arkcompiler/ets_runtime/ecmascript/napi/test/
H A Djsnapi_sample.cpp523 Local<ArrayRef> names = object->GetOwnPropertyNames(vm); in GetProperty() local
524 int cnt = names->Length(vm); in GetProperty()
527 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in GetProperty()
597 Local<ArrayRef> names = object->GetOwnEnumerablePropertyNames(vm); in GetOwnEnumerablePropertyNames() local
598 int cnt = names->Length(vm); in GetOwnEnumerablePropertyNames()
601 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in GetOwnEnumerablePropertyNames()
613 Local<ArrayRef> names = object->GetAllPropertyNames(vm, flag); in PrintAllProperty() local
614 int cnt = names->Length(vm); in PrintAllProperty()
632 Local<JSValueRef> value = ArrayRef::GetValueAt(vm, names, i); in PrintAllProperty()
/arkcompiler/runtime_core/libpandafile/
H A Dfile_items.h1457 std::vector<std::string> names; in GetMethodNames() local
1473 names.emplace_back(class_name); in GetMethodNames()
1475 return names; in GetMethodNames()
/arkcompiler/runtime_core/static_core/libpandafile/
H A Dfile_items.h1582 std::vector<std::string> names; in GetMethodNames() local
1598 names.emplace_back(className); in GetMethodNames()
1600 return names; in GetMethodNames()
/arkcompiler/ets_runtime/ecmascript/
H A Djs_object.cpp1987 JSHandle<TaggedArray> names = factory->NewTaggedArray(length); in EnumerableOwnNames() local
1998 names->Set(thread, copyLength, keyHandle); in EnumerableOwnNames()
2004 return factory->CopyArray(names, length, copyLength); in EnumerableOwnNames()
/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_object_test.cpp456 JSHandle<TaggedArray> names = JSObject::EnumerableOwnNames(thread, obj); in HWTEST_F_L0() local
458 JSHandle<JSTaggedValue> keyFromNames(thread, JSTaggedValue(names->Get(0))); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_string.cpp1364 JSHandle<JSTaggedValue> names(groupName); in ProcessNamedCaptures()
1365 JSHandle<JSTaggedValue> capture = JSObject::GetProperty(thread, namedCaptures, names).GetValue(); in ProcessNamedCaptures()
/arkcompiler/ets_frontend/es2panda/test/compiler/js/
H A Dcocos_worker_test.js9177 3659: "Violation error: extending enumerations shall have non-overlaped member names or member values",
[all...]

Completed in 63 milliseconds