Home
last modified time | relevance | path

Searched refs:description (Results 1 - 25 of 85) sorted by relevance

1234

/arkcompiler/toolchain/tooling/base/
H A Dpt_types.cpp241 std::string &description) in AppendingHashToDescription()
249 description += "@" + stringstream.str(); in AppendingHashToDescription()
254 void RemoteObject::AppendingSendableDescription(Local<JSValueRef> tagged, std::string &description) in AppendingSendableDescription() argument
257 description += " [Sendable]"; in AppendingSendableDescription()
263 std::string description = RemoteObject::ObjectDescription; in ResolveClassNameToDescription() local
265 return description; in ResolveClassNameToDescription()
267 DebuggerApi::GetObjectClassName(ecmaVm, tagged, description); in ResolveClassNameToDescription()
268 return description.empty() ? RemoteObject::ObjectDescription : description; in ResolveClassNameToDescription()
278 std::string description in PrimitiveRemoteObject() local
240 AppendingHashToDescription(const EcmaVM *ecmaVm, Local<JSValueRef> tagged, std::string &description) AppendingHashToDescription() argument
287 std::string description = tagged->ToString(ecmaVm)->ToString(ecmaVm); PrimitiveRemoteObject() local
294 std::string description = tagged->ToString(ecmaVm)->ToString(ecmaVm) + "n"; // n : BigInt literal postfix PrimitiveRemoteObject() local
305 std::string description = tagged->DebuggerToString(ecmaVm); StringRemoteObject() local
315 std::string description = DescriptionForSymbol(ecmaVm, tagged); SymbolRemoteObject() local
327 std::string description = DescriptionForFunction(ecmaVm, tagged); FunctionRemoteObject() local
340 std::string description = DescriptionForGeneratorFunction(ecmaVm, tagged); GeneratorFunctionRemoteObject() local
354 std::string description = DescriptionForObject(ecmaVm, tagged); ObjectRemoteObject() local
368 std::string description = DescriptionForObject(ecmaVm, tagged); ObjectRemoteObject() local
537 std::string description = "[External: " + address.str() + "]"; DescriptionForNativePointer() local
543 std::string description = "Array(" + std::to_string(tagged->Length(ecmaVm)) + ")"; DescriptionForArray() local
556 std::string description = tagged->ToString(ecmaVm)->ToString(ecmaVm); DescriptionForDate() local
564 std::string description = "Map(" + std::to_string(tagged->GetSize(ecmaVm)) + ")"; DescriptionForMap() local
610 std::string description = "WeakMap(" + std::to_string(tagged->GetSize(ecmaVm)) + ")"; DescriptionForWeakMap() local
654 std::string description = ("Set(" + std::to_string(tagged->GetSize(ecmaVm)) + ")"); DescriptionForSet() local
689 std::string description = ("WeakSet(" + std::to_string(tagged->GetSize(ecmaVm)) + ")"); DescriptionForWeakSet() local
720 std::string description = ("DataView(" + std::to_string(tagged->ByteLength()) + ")"); DescriptionForDataView() local
741 std::string description = RemoteObject::ArrayIteratorDescription + "{}"; DescriptionForArrayIterator() local
747 std::string description = RemoteObject::SetIteratorDescription + "{}"; DescriptionForSetIterator() local
753 std::string description = RemoteObject::MapIteratorDescription + "{}"; DescriptionForMapIterator() local
760 std::string description = ObjectClassName::Arraybuffer + "(" + std::to_string(len) + ")"; DescriptionForArrayBuffer() local
767 std::string description = ("SharedArrayBuffer(" + std::to_string(len) + ")"); DescriptionForSharedArrayBuffer() local
774 std::string description = ("Uint8Array(" + std::to_string(len) + ")"); DescriptionForUint8Array() local
781 std::string description = ("Int8Array(" + std::to_string(len) + ")"); DescriptionForInt8Array() local
788 std::string description = ("Int16Array(" + std::to_string(len) + ")"); DescriptionForInt16Array() local
795 std::string description = ("Int32Array(" + std::to_string(len) + ")"); DescriptionForInt32Array() local
802 std::string description = RemoteObject::JSPrimitiveNumberDescription + "{[[PrimitiveValue]]: " + strValue + "}"; DescriptionForPrimitiveNumber() local
809 std::string description = RemoteObject::JSPrimitiveStringDescription + "{[[PrimitiveValue]]: " + strValue + "}"; DescriptionForPrimitiveString() local
816 std::string description = RemoteObject::JSPrimitiveBooleanDescription + "{[[PrimitiveValue]]: " + strValue + "}"; DescriptionForPrimitiveBoolean() local
831 std::string description = strFuncName + " {<" + strState + ">}"; DescriptionForGeneratorObject() local
837 std::string description = RemoteObject::WeakRefDescription + " {}"; DescriptionForWeakRef() local
843 std::string description = RemoteObject::DateTimeFormatDescription + " {}"; DescriptionForDateTimeFormat() local
849 std::string description = RemoteObject::NumberFormatDescription + " {}"; DescriptionForNumberFormat() local
855 std::string description = RemoteObject::CollatorDescription + " {}"; DescriptionForCollator() local
861 std::string description = RemoteObject::PluralRulesDescription + " {}"; DescriptionForPluralRules() local
867 std::string description = RemoteObject::JSLocaleDescription + " {}"; DescriptionForJSLocale() local
873 std::string description = RemoteObject::JSRelativeTimeFormatDescription + " {}"; DescriptionForJSRelativeTimeFormat() local
879 std::string description = RemoteObject::JSListFormatDescription + " {}"; DescriptionForJSListFormat() local
885 std::string description = "ArrayList"; DescriptionForArrayList() local
891 std::string description = "Deque"; DescriptionForDeque() local
897 std::string description = "HashMap"; DescriptionForHashMap() local
903 std::string description = "HashSet"; DescriptionForHashSet() local
909 std::string description = "LightWeightMap"; DescriptionForLightWeightMap() local
915 std::string description = "LightWeightSet"; DescriptionForLightWeightSet() local
921 std::string description = "LinkedList"; DescriptionForLinkedList() local
927 std::string description = "List"; DescriptionForList() local
933 std::string description = "PlainArray"; DescriptionForPlainArray() local
939 std::string description = "Queue"; DescriptionForQueue() local
945 std::string description = "Stack"; DescriptionForStack() local
951 std::string description = "TreeMap"; DescriptionForTreeMap() local
957 std::string description = "TreeSet"; DescriptionForTreeSet() local
963 std::string description = "Vector"; DescriptionForVector() local
969 std::string description = "Symbol(" + tagged->GetDescription(ecmaVm)->ToString(ecmaVm) + ")"; DescriptionForSymbol() local
982 std::string description = "function " + name->ToString(ecmaVm) + "( { " + sourceCode + " }"; DescriptionForFunction() local
996 std::string description = "function* " + name->ToString(ecmaVm) + "( { " + sourceCode + " }"; DescriptionForGeneratorFunction() local
1046 std::string description; Create() local
[all...]
/arkcompiler/toolchain/tooling/test/testcases/
H A Djs_watch_other_type_test.h133 std::string description = ""; in RecvWatchSubtypeInfo() local
134 ret = watchResult->GetString("description", &description); in RecvWatchSubtypeInfo()
135 if (ret != Result::SUCCESS || description != var_info) { in RecvWatchSubtypeInfo()
184 std::string description = ""; in RecvWatchFunctionInfo() local
185 ret = watchResult->GetString("description", &description); in RecvWatchFunctionInfo()
186 if (ret != Result::SUCCESS || description != func_info) { in RecvWatchFunctionInfo()
H A Djs_watch_set_type_test.h239 std::string description = ""; in RecvWatchSubtypeInfo() local
240 ret = watchResult->GetString("description", &description); in RecvWatchSubtypeInfo()
241 if (ret != Result::SUCCESS || description != set_info) { in RecvWatchSubtypeInfo()
290 std::string description = ""; in RecvWatchObjectInfo() local
291 ret = watchResult->GetString("description", &description); in RecvWatchObjectInfo()
292 if (ret != Result::SUCCESS || description != set_info) { in RecvWatchObjectInfo()
H A Djs_watch_test.h106 ret = watchResult->GetString("description", &numResult); in RecvWatchDescription()
207 std::string description; in RecvWatchDescriptionByJack() local
208 ret = value->GetString("description", &description); in RecvWatchDescriptionByJack()
212 if (description != "jack") { in RecvWatchDescriptionByJack()
H A Djs_watch_basic_type_test.h135 std::string description = ""; in RecvWatchVaribleInfo() local
136 ret = watchResult->GetString("description", &description); in RecvWatchVaribleInfo()
137 if (ret != Result::SUCCESS || description != var_value) { in RecvWatchVaribleInfo()
H A Djs_container_test.h104 std::string description; in JsContainerTest()
132 ret = value->GetString("description", &description); in JsContainerTest()
134 infos.push_back(description); in JsContainerTest()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/objects_passing/
H A Dobjects_passing.js64 function TestUserClass(name, age, id, education, description) {
68 this.description = description;
72 return 'Name: '.concat(this.name, ', Age: ').concat(this.age, ', ID: ').concat(this.id, ', Description: ').concat(this.description);
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/tests/
H A Dtest_object_preview.py55 description=None,
70 description=None,
93 description=None,
/arkcompiler/runtime_core/static_core/tests/cts-generator/generator/
H A Dtest_base.rb42 def write_runner_options(content, run_options, ignore, bugids, tags, description, test_panda_options)
59 if description != ""
60 content.puts "\n# Test description:"
61 description.split("\n").each {|t| content.puts "\# #{t}" }
H A Dsingle_test.rb44 description = @command[Generator::TEST_DESCRIPTION] || ""
47 write_runner_options content, run_options, ignore, bugids, tags, description, test_panda_options
H A Dtest_case.rb74 description = @current_case[Generator::CASE_DESCRIPTION] || ""
78 test_description + " " + description, test_panda_options
/arkcompiler/runtime_core/tests/cts-generator/generator/
H A Dtest_base.rb42 def write_runner_options(content, run_options, ignore, bugids, tags, description, test_panda_options)
59 if description != ""
60 content.puts "\n# Test description:"
61 description.split("\n").each {|t| content.puts "\# #{t}" }
H A Dsingle_test.rb44 description = @command[Generator::TEST_DESCRIPTION] || ""
47 write_runner_options content, run_options, ignore, bugids, tags, description, test_panda_options
/arkcompiler/ets_runtime/test/fuzztest/symbolnew_fuzzer/
H A Dsymbolnew_fuzzer.cpp37 Local<StringRef> description = StringRef::NewFromUtf8(vm_, value, (int)size); in SymbolNewFuzzTest() local
38 SymbolRef::New(vm_, description); in SymbolNewFuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/symbolrefgetdescription_fuzzer/
H A Dsymbolrefgetdescription_fuzzer.cpp33 Local<JSValueRef> description = StringRef::NewFromUtf8(vm, (char *)data, (int)size); in SymbolRefGetDescriptionFuzzTest() local
34 Local<SymbolRef> symbol = SymbolRef::New(vm, description); in SymbolRefGetDescriptionFuzzTest()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/
H A Dremote_object.h92 static RemoteObject Symbol(std::string description)
94 return RemoteObject(RemoteObjectType::SymbolT {std::move(description)});
98 std::optional<std::string> description = std::nullopt)
100 return RemoteObject(RemoteObjectType::ObjectT {std::move(className), objectId, std::move(description)});
H A Dremote_object_type.h38 std::string description; member
44 std::optional<std::string> description; member
/arkcompiler/runtime_core/static_core/tests/cts-coverage-tool/lib/
H A Dspec.rb91 grp['description_tests'] = split(grp['description']).map do |da|
116 ntg['description'] && split(ntg['description']).each do |ntda|
119 warn "Non testable description \"#{ntda}\" in group \"#{ntg['title']}\" not found in iSA."
159 # split long-text description into array of assertions
160 def split(description) # rubocop:disable Metrics
163 description.split(/\./).each do |p|
251 test_group['description'] && split(test_group['description']).each do |tda|
260 @orphaned << { 'file' => file, 'error' => 'Given description assertio
[all...]
/arkcompiler/runtime_core/tests/cts-coverage-tool/lib/
H A Dspec.rb91 grp['description_tests'] = split(grp['description']).map do |da|
116 ntg['description'] && split(ntg['description']).each do |ntda|
119 warn "Non testable description \"#{ntda}\" in group \"#{ntg['title']}\" not found in iSA."
159 # split long-text description into array of assertions
160 def split(description) # rubocop:disable Metrics
163 description.split(/\./).each do |p|
251 test_group['description'] && split(test_group['description']).each do |tda|
260 @orphaned << { 'file' => file, 'error' => 'Given description assertio
[all...]
/arkcompiler/toolchain/tooling/client/manager/
H A Dwatch_manager.cpp190 std::string description; in ShowWatchResult() local
191 ret = result->GetString("description", &description); in ShowWatchResult()
193 LOGE("json parse description error"); in ShowWatchResult()
196 std::cout << " " << watchInfoList_[it->second] << " = " << description << std::endl; in ShowWatchResult()
218 std::string description; in OutputWatchResult() local
219 ret = value->GetString("description", &description); in OutputWatchResult()
221 LOGE("json parse description error"); in OutputWatchResult()
224 std::cout << name << " = " << description; in OutputWatchResult() local
[all...]
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/
H A Drun_java.py44 description = "Execute Java test cases and generate a data file with the bytecode file size of the test cases."
45 parser = argparse.ArgumentParser(description=description)
H A Drun_javar8.py52 description = "Execute Java test cases and generate a data file with the bytecode file size of the test cases."
53 parser = argparse.ArgumentParser(description=description)
/arkcompiler/toolchain/tooling/test/
H A Dpt_types_test.cpp424 std::string description = ObjectRemoteObject::DescriptionForObject(ecmaVm, date); in HWTEST_F_L0() local
425 ASSERT_TRUE(description.find("GMT") != std::string::npos); in HWTEST_F_L0()
432 std::string description = ObjectRemoteObject::DescriptionForObject(ecmaVm, promise); in HWTEST_F_L0() local
433 ASSERT_TRUE(description == "Promise"); in HWTEST_F_L0()
924 std::string description = ObjectRemoteObject::DescriptionForObject(ecmaVm, weakmap); in HWTEST_F_L0() local
925 ASSERT_TRUE(description.find("WeakMap") != std::string::npos); in HWTEST_F_L0()
929 description = ObjectRemoteObject::DescriptionForObject(ecmaVm, mapiterator); in HWTEST_F_L0()
930 ASSERT_TRUE(description.find("MapIterator") != std::string::npos); in HWTEST_F_L0()
934 description = ObjectRemoteObject::DescriptionForObject(ecmaVm, setiterator); in HWTEST_F_L0()
935 ASSERT_TRUE(description in HWTEST_F_L0()
949 std::string description = remoteObject->GetDescription(); HWTEST_F_L0() local
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/napi/sampler/
H A Dsampler_napi_traces_check.py20 parser = argparse.ArgumentParser(description="Napi trace test")
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/tooling/sampler/
H A Dsampler_traces_check.py21 parser = argparse.ArgumentParser(description="Sampler trace test")

Completed in 17 milliseconds

1234