/arkcompiler/runtime_core/static_core/verification/config/whitelist/ |
H A D | whitelist.cpp | 42 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 D | decorator_value.py | 84 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 D | merge_markdown.py | 24 names = [] 29 names.append(line[1:]) 32 for name in names:
|
/arkcompiler/runtime_core/static_core/cross_values/ |
H A D | cross_values_getters_generator.rb | 37 names = data.scan /DEFINE_VALUE\((\w+),/ 42 names.sort_by(&:first).each do |define|
|
/arkcompiler/runtime_core/static_core/libpandafile/tests/ |
H A D | file_test.cpp | 119 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 D | verify.py | 185 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 D | bytecode_analysis_results.cpp | 75 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 D | hook.py | 75 names: List[str], 79 in get_plugins('hooks', names,
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/ |
H A D | cl_option.cpp | 30 std::copy(optnames.begin(), optnames.end(), std::back_inserter(names)); in FinalizeInitialization()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | cl_option.h | 160 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 D | locations.h | 60 static constexpr std::array names = { in GetName() local 66 return names[static_cast<unsigned>(GetKind())]; in GetName()
|
/arkcompiler/runtime_core/libpandafile/tests/ |
H A D | file_test.cpp | 102 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 D | main.cpp | 113 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 D | context.h | 68 std::array<PandaVector<PandaString>, static_cast<size_t>(WhitelistKind::LAST)> names; member
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | bit_table_test.cpp | 180 static constexpr const char *names[] = {"field0", "field1"}; in GetName() 181 return names[index]; in GetName()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | bit_table.h | 285 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 D | rich_logging.py | 91 def get_option_ini(config: Config, *names: str): 92 for name in names:
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | jsnapi_sample.cpp | 523 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 D | file_items.h | 1457 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 D | file_items.h | 1582 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 D | js_object.cpp | 1987 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 D | js_object_test.cpp | 456 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 D | builtins_string.cpp | 1364 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 D | cocos_worker_test.js | 9177 3659: "Violation error: extending enumerations shall have non-overlaped member names or member values", [all...] |