Home
last modified time | relevance | path

Searched refs:variables (Results 1 – 25 of 31) sorted by relevance

12

/arkcompiler/toolchain/tooling/test/testcases/
Djs_local_variable_scope_test.h123 std::map<std::string, std::string> variables; in SendNotification()
129 extractLocalVariable(name, value, variables); in SendNotification()
130 ASSERT_EQ(variables[name], truthGroundMap_.at(name)); in SendNotification()
132 ASSERT_EQ(variables.size(), truthGroundMap_.size()); in SendNotification()
144 …LocalVariable(std::string name, RemoteObject *value, std::map<std::string, std::string> &variables) in extractLocalVariable() argument
150 if (variables.find(name) == variables.end()) { in extractLocalVariable()
151 variables.emplace(name, variableValue); in extractLocalVariable()
/arkcompiler/runtime_core/panda/
DCMakeLists.txt26 "-cppcoreguidelines-non-private-member-variables-in-classes"
30 "-misc-non-private-member-variables-in-classes"
/arkcompiler/ets_frontend/es2panda/typescript/extractor/
DtypeExtractor.cpp297 std::vector<binder::Variable *> variables; in GetDeclNodeFromIdentifier() local
298 variables.reserve(identifier->TSVariables().size() + 1U); in GetDeclNodeFromIdentifier()
299 variables.emplace_back(identifier->Variable()); in GetDeclNodeFromIdentifier()
301 variables.emplace_back(v); in GetDeclNodeFromIdentifier()
304 for (const auto &v : variables) { in GetDeclNodeFromIdentifier()
517 ArenaVector<const binder::Variable *> variables(recorder_->Allocator()->Adapter()); in GetTypeIndexFromTSQualifiedNode() local
519 GetVariablesFromTSQualifiedNodes(v, identifiers, variables); in GetTypeIndexFromTSQualifiedNode()
523 for (const auto &v : variables) { in GetTypeIndexFromTSQualifiedNode()
984 …Deque<const ir::Identifier *> &identifiers, ArenaVector<const binder::Variable *> &variables) const in GetVariablesFromTSQualifiedNodes()
989 variables.emplace_back(variable); in GetVariablesFromTSQualifiedNodes()
[all …]
DtypeExtractor.h138 …eque<const ir::Identifier *> &identifiers, ArenaVector<const binder::Variable *> &variables) const;
140 …eque<const ir::Identifier *> &identifiers, ArenaVector<const binder::Variable *> &variables) const;
/arkcompiler/runtime_core/cmake/toolchain/
Dcross-ohos-aarch64.cmake30 # Toolchain file can be sourced multiple times with different sets of variables.
46 … # Do not add linker flags multiple times when variables persist across toolchain file invocation.
/arkcompiler/ets_frontend/ts2panda/src/statement/
DloopStatement.ts159 let variables: Map<variableInfo, VReg> = new Map<variableInfo, VReg>();
166 variables.set(varInfo, tmp);
175 variables.forEach((reg, varInfo) => {
/arkcompiler/runtime_core/cmake/
DDefinitions.cmake91 # Enable global register variables usage only for clang >= 9.0.0 and gcc >= 8.0.0.
95 # Also calling conventions of functions that use global register variables are different:
96 # clang stores and restores registers that are used for global variables in the prolog
98 # function that refers to global register variables to interpreter loop.
100 # For this reason we disable global register variables usage for clang debug builds as
DREADME.md20 …g., `target_link_libraries(tests compiler base vixl)`), but for getting variables please use the I…
DClangTidy.cmake135 …"-cppcoreguidelines-non-private-member-variables-in-classes" # alias for misc-non-private-member-v…
/arkcompiler/ets_frontend/es2panda/aot/
DCMakeLists.txt44 "-misc-non-private-member-variables-in-classes"
/arkcompiler/ets_frontend/ts2panda/src/
Dts2panda.ts417 let variables = undefined; variable
425 variables = pg.getVariableDebugInfoArray();
453 variables,
/arkcompiler/runtime_core/bytecode_optimizer/
DCMakeLists.txt113 "-misc-non-private-member-variables-in-classes"
/arkcompiler/runtime_core/docs/
Drationale-for-bytecode.md15 also known as operation's _operands_. Operands may be _registers_ (very fast "variables" located
19 is used for storing local variables along with function arguments and doing function calls.
166 that most of operations inside a function happen on local and/or temporary variables, while
169 and/or variables.
Dirtoc.md47 Also it is possible to omit variables and create instruction in-place:
Ddesign-of-interpreter.md40 1. Bytecode is register-based: all arguments and variables are mapped to virtual registers,
Dassembly_format.md311 By convention, all arguments are named `a0`, ... `aN` and all local variables are named `v0`, ... `…
/arkcompiler/runtime_core/libpandafile/tests/
Ddebug_info_extractor_test.cpp273 … std::vector<panda_file::LocalVariableInfo> variables = extractor.GetLocalVariableTable(method_id); in GetLocalVariableInfoWrapper() local
276 for (const auto &variable : variables) { in GetLocalVariableInfoWrapper()
/arkcompiler/runtime_core/assembler/
DCMakeLists.txt77 "-misc-non-private-member-variables-in-classes"
/arkcompiler/runtime_core/
DCMakeLists.txt39 # ----- Global variables -------------------------------------------------------
41 # Panda as a cmake subdirectory. You can use the following variables if you
/arkcompiler/toolchain/build/toolchain/
Dtoolchain.gni82 # four variables reduce the duplication in that boilerplate.
/arkcompiler/runtime_core/disassembler/
DCMakeLists.txt65 "-misc-non-private-member-variables-in-classes"
/arkcompiler/ets_frontend/es2panda/
DCMakeLists.txt337 "-misc-non-private-member-variables-in-classes"
/arkcompiler/runtime_core/compiler/docs/
Dreg_alloc_graph_coloring_doc.md4 `Register allocator` assigns program variables to target CPU registers
/arkcompiler/ets_frontend/arkguard/
DREADME.md218 It is known that in javascript the variables in the global scope are properties of `globalThis`. So…
/arkcompiler/runtime_core/disassembler/tests/
Dinstructions_test.cpp.in339 // There should be no local variables for panda assembler

12