Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:variableInfo
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/toolchain/tooling/client/manager/
H
A
D
variable_manager.cpp
292
void VariableManager::AddVariableInfo(TreeNode *parentNode, std::unique_ptr<PropertyDescriptor>
variableInfo
)
in AddVariableInfo()
argument
294
if (
variableInfo
&&
variableInfo
->GetValue() &&
variableInfo
->GetValue()->HasObjectId()) {
in AddVariableInfo()
295
variableInfo_.AddObjectNode(parentNode, std::move(
variableInfo
));
in AddVariableInfo()
297
variableInfo_.AddVariableNode(parentNode, std::move(
variableInfo
));
in AddVariableInfo()
H
A
D
variable_manager.h
86
void AddVariableInfo(TreeNode *parentNode, std::unique_ptr<PropertyDescriptor>
variableInfo
);
/arkcompiler/runtime_core/static_core/disassembler/
H
A
D
disassembler.cpp
1577
for (const auto &
variableInfo
: localVariableTable) {
in SerializeLocalVariableTable()
1579
regStream <<
variableInfo
.regNumber << '(';
in SerializeLocalVariableTable()
1580
if (
variableInfo
.regNumber < 0) {
in SerializeLocalVariableTable()
1583
uint32_t vreg =
variableInfo
.regNumber;
in SerializeLocalVariableTable()
1593
os << "#\t " << std::setw(startWidth) << std::right <<
variableInfo
.startOffset << " ";
in SerializeLocalVariableTable()
1594
os << std::setw(endWidth) << std::right <<
variableInfo
.endOffset << " ";
in SerializeLocalVariableTable()
1596
os << std::setw(nameWidth) << std::right <<
variableInfo
.name << " " <<
variableInfo
.type;
in SerializeLocalVariableTable()
1597
if (!
variableInfo
.typeSignature.empty() &&
variableInfo
in SerializeLocalVariableTable()
[all...]
/arkcompiler/toolchain/tooling/client/domain/
H
A
D
runtime_client.cpp
274
std::unique_ptr<PropertyDescriptor>
variableInfo
= PropertyDescriptor::Create(*(innerResult->Get(i)));
in HandleGetProperties()
local
275
variableManager.AddVariableInfo(node, std::move(
variableInfo
));
in HandleGetProperties()
/arkcompiler/toolchain/tooling/test/testcases/
H
A
D
js_module_variable_test.h
140
auto
variableInfo
= PropertyDescriptor::Create(*(innerResult->Get(i)));
in JsModuleVariableTest()
141
outPropertyDesc.emplace_back(std::move(
variableInfo
));
in JsModuleVariableTest()
Completed in 7 milliseconds