Home
last modified time | relevance | path

Searched refs:GetSourceCode (Results 1 – 24 of 24) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/tests/
Dclass_hash_table_test.cpp57 std::string GetSourceCode() const in GetSourceCode() function in panda::compiler::ClassHashTableTest
106 auto res = parser.Parse(GetSourceCode()); in TEST_F()
211 auto res = parser.Parse(GetSourceCode()); in TEST_F()
242 auto res = parser.Parse(GetSourceCode()); in TEST_F()
280 auto res = parser.Parse(GetSourceCode()); in TEST_F()
321 auto res = parser.Parse(GetSourceCode()); in TEST_F()
/arkcompiler/runtime_core/compiler/tests/
Dclass_hash_table_test.cpp57 const std::string GetSourceCode() const in GetSourceCode() function in panda::compiler::ClassHashTableTest
106 auto res = parser.Parse(GetSourceCode()); in TEST_F()
211 auto res = parser.Parse(GetSourceCode()); in TEST_F()
242 auto res = parser.Parse(GetSourceCode()); in TEST_F()
280 auto res = parser.Parse(GetSourceCode()); in TEST_F()
321 auto res = parser.Parse(GetSourceCode()); in TEST_F()
/arkcompiler/runtime_core/static_core/libpandafile/
Ddebug_info_extractor.cpp159 const uint8_t *GetSourceCode() const in GetSourceCode() function in panda::panda_file::LineNumberProgramHandler
161 return state_->GetSourceCode(); in GetSourceCode()
243 const char *sourceCode = utf::Mutf8AsCString(handler.GetSourceCode()); in Extract()
304 const char *DebugInfoExtractor::GetSourceCode(File::EntityId methodId) const in GetSourceCode() function in panda::panda_file::DebugInfoExtractor
Ddebug_info_extractor.h76 virtual const char *GetSourceCode(File::EntityId methodId) const;
Dline_number_program.h61 const uint8_t *GetSourceCode() const in GetSourceCode() function
/arkcompiler/runtime_core/libpandafile/
Ddebug_info_extractor.cpp160 const uint8_t *GetSourceCode() const in GetSourceCode() function in panda::panda_file::LineNumberProgramHandler
162 return state_->GetSourceCode(); in GetSourceCode()
244 const char *source_code = utf::Mutf8AsCString(handler.GetSourceCode()); in Extract()
313 const char *DebugInfoExtractor::GetSourceCode(File::EntityId method_id) const in GetSourceCode() function in panda::panda_file::DebugInfoExtractor
Ddebug_info_extractor.h76 const char *GetSourceCode(File::EntityId method_id) const;
Dline_number_program.h61 const uint8_t *GetSourceCode() const in GetSourceCode() function
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Ddebug_info_extractor.cpp169 const uint8_t *GetSourceCode() const in GetSourceCode() function in panda::ecmascript::LineNumberProgramHandler
171 return state_->GetSourceCode(); in GetSourceCode()
247 const std::string &DebugInfoExtractor::GetSourceCode(const panda_file::File::EntityId methodId) in GetSourceCode() function in panda::ecmascript::DebugInfoExtractor
310 sourceCode = reinterpret_cast<const char *>(handler.GetSourceCode()); in ExtractorMethodDebugInfo()
Ddebug_info_extractor.h92 const std::string &GetSourceCode(const panda_file::File::EntityId methodId);
/arkcompiler/runtime_core/static_core/disassembler/
Ddisasm_backed_debug_info_extractor.cpp75 const char *DisasmBackedDebugInfoExtractor::GetSourceCode(panda_file::File::EntityId methodId) const in GetSourceCode() function in panda::disasm::DisasmBackedDebugInfoExtractor
81 return DebugInfoExtractor::GetSourceCode(methodId); in GetSourceCode()
Ddisasm_backed_debug_info_extractor.h33 const char *GetSourceCode(panda_file::File::EntityId methodId) const override;
/arkcompiler/runtime_core/static_core/disassembler/tests/
Dextractor_test.cpp56 ASSERT_NE(extractor.GetSourceCode(id), nullptr); in TEST()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/
Ddebug_info_cache.cpp180 auto s = cache.GetSourceCode(disasm_file); in TEST_F()
183 s = cache.GetSourceCode("source.pa"); in TEST_F()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Ddebug_info_cache.h52 std::string GetSourceCode(std::string_view sourceFile);
Dinspector.cpp70 inspectorServer_.OnCallDebuggerGetScriptSource(std::bind(&Inspector::GetSourceCode, this, _1)); in Inspector()
348 std::string Inspector::GetSourceCode(std::string_view sourceFile) in GetSourceCode() function in panda::tooling::inspector::Inspector
350 return debugInfoCache_.GetSourceCode(sourceFile); in GetSourceCode()
Dinspector.h93 std::string GetSourceCode(std::string_view sourceFile);
Ddebug_info_cache.cpp319 std::string DebugInfoCache::GetSourceCode(std::string_view sourceFile) in GetSourceCode() function in panda::tooling::inspector::DebugInfoCache
326 return GetDebugInfo(&it->second.first).GetSourceCode(it->second.second); in GetSourceCode()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_function.cpp345 const std::string &sourceCode = debugExtractor->GetSourceCode(method->GetMethodId()); in FunctionPrototypeToString()
/arkcompiler/ets_runtime/ecmascript/napi/
DJSNapi接口说明.md4224 ### GetSourceCode subsection
4226 Local<StringRef> GetSourceCode(const EcmaVM *vm, int lineNumber)��
4252 Local<StringRef> src = callback->GetSourceCode(vm, 10);
Djsnapi_expo.cpp2333 Local<StringRef> FunctionRef::GetSourceCode(const EcmaVM *vm, int lineNumber) in GetSourceCode() function in panda::FunctionRef
2354 …const std::string &allSourceCode = debugExtractor->GetSourceCode(panda_file::File::EntityId(mainMe… in GetSourceCode()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi_expo.h700 Local<StringRef> GetSourceCode(const EcmaVM *vm, int lineNumber);
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp100 const std::string &source = extractor->GetSourceCode(mainMethodIndex); in NotifyScriptParsed()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_first_tests.cpp1847 HWTEST_F_L0(JSNApiTests, GetSourceCode) in HWTEST_F_L0() argument