/arkcompiler/toolchain/tooling/test/testcases/ |
D | js_local_variable_scope_test.h | 123 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/ |
D | CMakeLists.txt | 26 "-cppcoreguidelines-non-private-member-variables-in-classes" 30 "-misc-non-private-member-variables-in-classes"
|
/arkcompiler/ets_frontend/es2panda/typescript/extractor/ |
D | typeExtractor.cpp | 297 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 …]
|
D | typeExtractor.h | 138 …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/ |
D | cross-ohos-aarch64.cmake | 30 # 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/ |
D | loopStatement.ts | 159 let variables: Map<variableInfo, VReg> = new Map<variableInfo, VReg>(); 166 variables.set(varInfo, tmp); 175 variables.forEach((reg, varInfo) => {
|
/arkcompiler/runtime_core/cmake/ |
D | Definitions.cmake | 91 # 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
|
D | README.md | 20 …g., `target_link_libraries(tests compiler base vixl)`), but for getting variables please use the I…
|
D | ClangTidy.cmake | 135 …"-cppcoreguidelines-non-private-member-variables-in-classes" # alias for misc-non-private-member-v…
|
/arkcompiler/ets_frontend/es2panda/aot/ |
D | CMakeLists.txt | 44 "-misc-non-private-member-variables-in-classes"
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | ts2panda.ts | 417 let variables = undefined; variable 425 variables = pg.getVariableDebugInfoArray(); 453 variables,
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
D | CMakeLists.txt | 113 "-misc-non-private-member-variables-in-classes"
|
/arkcompiler/runtime_core/docs/ |
D | rationale-for-bytecode.md | 15 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.
|
D | irtoc.md | 47 Also it is possible to omit variables and create instruction in-place:
|
D | design-of-interpreter.md | 40 1. Bytecode is register-based: all arguments and variables are mapped to virtual registers,
|
D | assembly_format.md | 311 By convention, all arguments are named `a0`, ... `aN` and all local variables are named `v0`, ... `…
|
/arkcompiler/runtime_core/libpandafile/tests/ |
D | debug_info_extractor_test.cpp | 273 … 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/ |
D | CMakeLists.txt | 77 "-misc-non-private-member-variables-in-classes"
|
/arkcompiler/runtime_core/ |
D | CMakeLists.txt | 39 # ----- Global variables ------------------------------------------------------- 41 # Panda as a cmake subdirectory. You can use the following variables if you
|
/arkcompiler/toolchain/build/toolchain/ |
D | toolchain.gni | 82 # four variables reduce the duplication in that boilerplate.
|
/arkcompiler/runtime_core/disassembler/ |
D | CMakeLists.txt | 65 "-misc-non-private-member-variables-in-classes"
|
/arkcompiler/ets_frontend/es2panda/ |
D | CMakeLists.txt | 337 "-misc-non-private-member-variables-in-classes"
|
/arkcompiler/runtime_core/compiler/docs/ |
D | reg_alloc_graph_coloring_doc.md | 4 `Register allocator` assigns program variables to target CPU registers
|
/arkcompiler/ets_frontend/arkguard/ |
D | README.md | 218 It is known that in javascript the variables in the global scope are properties of `globalThis`. So…
|
/arkcompiler/runtime_core/disassembler/tests/ |
D | instructions_test.cpp.in | 339 // There should be no local variables for panda assembler
|