| /arkcompiler/runtime_core/static_core/libpandabase/ |
| D | options.yaml | 49 - name: log-components 83 description: Enable logs from specified components 90 possible_values: $log-components 91 description: Enable debug or above logs from specified components 98 possible_values: $log-components 99 description: Enable info or above logs from specified components 106 possible_values: $log-components 107 description: Enable warning or above logs from specified components 114 possible_values: $log-components 115 description: Enable error or above logs from specified components [all …]
|
| /arkcompiler/runtime_core/libpandabase/ |
| D | options.yaml | 49 - name: log-components 79 description: Enable logs from specified components 86 possible_values: $log-components 87 description: Enable debug or above logs from specified components 94 possible_values: $log-components 95 description: Enable info or above logs from specified components 102 possible_values: $log-components 103 description: Enable warning or above logs from specified components 110 possible_values: $log-components 111 description: Enable error or above logs from specified components [all …]
|
| /arkcompiler/runtime_core/compiler/ |
| D | compiler_logger.cpp | 19 std::bitset<CompilerLoggerComponents::LOG_COMPONENTS_NUM> CompilerLogger::components(0); member in panda::compiler::CompilerLogger 25 components.reset(); in SetComponents() 28 components.set(); in SetComponents() 32 components.reset(); in SetComponents() 38 components.set(COMPONENT); \ in SetComponents()
|
| D | compiler_logger.h | 50 return components.test(comp); in IsComponentEnabled() 55 components.set(comp); in EnableComponent() 63 static std::bitset<CompilerLoggerComponents::LOG_COMPONENTS_NUM> components;
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/ohmurl/ |
| D | ohmurl_import.ets | 16 import { MainPage } from "library/ets/components/MainPage" // Should fail on ArkTS 1.2 17 import { Something1 } from "library/src/main/ets/components/Something1" // Valid 18 import { Something2 } from "ets/components/Something2" // Should Fail 20 import { RelativeImport } from "../components/MainPage" // Valid
|
| D | ohmurl_import.ets.migrate.ets | 16 import { MainPage } from 'library/src/main/ets/components/MainPage' // Should fail on ArkTS 1.2 17 import { Something1 } from "library/src/main/ets/components/Something1" // Valid 18 import { Something2 } from 'entry/src/main/ets/components/Something2' // Should Fail 20 import { RelativeImport } from "../components/MainPage" // Valid
|
| /arkcompiler/runtime_core/static_core/libpandabase/templates/ |
| D | logger.rb | 50 def components method 51 @components 61 @components = data.components.map { |op| Component.new(op) }
|
| D | logger_impl_gen.inc.erb | 20 % LoggerData.components.each do |c| 55 % LoggerData.components.each do |c| 97 % LoggerData.components.each do |c|
|
| /arkcompiler/runtime_core/libpandabase/templates/ |
| D | logger.rb | 50 def components method 51 @components 61 @components = data.components.map { |op| Component.new(op) }
|
| D | logger_impl_gen.inc.erb | 20 % LoggerData.components.each do |c| 55 % LoggerData.components.each do |c| 97 % LoggerData.components.each do |c|
|
| /arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/code_coverage/ |
| D | llvm_cov_tool.py | 42 self.components: Dict[str, Path] = {} 49 self.components[component_name] = Path() 78 for key in self.components: 81 self.components[key] = profdata_files_list_file_path 100 for component_name, profdata_files_list_file_path in self.components.items(): 103 self.components[component_name] = merged_profdata_file_path 142 for component_name, merged_profdata_file_path in self.components.items(): 144 self.components[component_name] = dot_info_file_path 148 if len(self.components): 149 for component_name, dot_info_file in self.components.items():
|
| D | lcov_tool.py | 39 self.components: Dict[str, Path] = {} 42 for key in self.components: 61 self.components[component_name] = dot_info_file 80 for component_name, dot_info_file in self.components.items(): 106 self.components[component_name] = Path()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/playground/frontend/src/ |
| D | App.tsx | 18 import MosaicApp from './components/mosaic/MosaicApp'; 19 import {ThemeProvider} from './components/theme/ThemeContext'; 20 import Header from './components/header/Header';
|
| /arkcompiler/runtime_core/static_core/gn/build/ |
| D | fixup-third-party.sh | 22 # components shoild be placed in $ARK_ROOT/gn/third_party directory, 24 COMPONENTS='utils_native zlib' 32 for component in $COMPONENTS; do
|
| /arkcompiler/runtime_core/gn/build/ |
| D | fixup-third-party.sh | 22 # components shoild be placed in $ARK_ROOT/gn/ark-third-party directory, 24 COMPONENTS='utils_native zlib icu' 32 for component in $COMPONENTS
|
| /arkcompiler/ets_frontend/ets2panda/linter/homecheck/resources/thirdPartyModules/@ohos/gif-drawable/ |
| D | index.ets | 15 export { default as GIFComponentV2 } from './src/main/ets/components/gif/display/GIFComponentV2'; 16 export { default as GIFComponent } from './src/main/ets/components/gif/display/GIFComponent';
|
| /arkcompiler/runtime_core/static_core/docs/ |
| D | task_manager.md | 3 Internally in VM we have different tasks for two components `GC` and `JIT`. Both of this components… 31 …eue for tasks of the same "kind" or "components" (for example "JIT") which is fullfilled by corres…
|
| D | memory-management-SW-requirements.md | 3 The main components of Panda memory management: 54 # 4. INTERACTION WITH OTHER COMPONENTS
|
| /arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/ |
| D | struct_extends_struct.ets | 25 /* @@? 16:1 Error TypeError: Structs are only used to define UI components, it should be translated… 26 /* @@? 20:1 Error TypeError: Structs are only used to define UI components, it should be translated…
|
| D | struct_in_struct.ets | 25 /* @@? 16:1 Error TypeError: Structs are only used to define UI components, it should be translated… 26 /* @@? 18:5 Error TypeError: Structs are only used to define UI components, it should be translated…
|
| /arkcompiler/ets_frontend/test/sdk_test_projects/bytecodehar_increace_compile/entry/src/main/ets/pages/ |
| D | Index.ets | 16 import {testA} from "bytecodehar/src/main/ets/components/TestA" 17 import {testB} from "bytecodehar/src/main/ets/components/TestB"
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/checked/inlining_test/ |
| D | inlining_order_1.ets | 17 …-threshold=100 --compiler-hotness-threshold=22 --log-level=debug --log-components=compiler --compi… 22 …ng-threshold=0 --compiler-hotness-threshold=30 --log-level=debug --log-components=compiler --compi… 30 //! RUN options: "--log-level=debug --log-components=compiler --compiler-log=inlining", en…
|
| /arkcompiler/ets_frontend/arkguard/test/ut/utils/ |
| D | ProjectCollections.spec.ts | 459 …ault\\default@HarCompileArkTS\\esmodule\\release\\libraryHar\\src\\main\\ets\\components\\test.ts", 460 relativeSourceFilePath: "libraryHar/src/main/ets/components/test.ets", 461 originSourceFilePath: "D:/WORK/demo/libraryHar/src/main/ets/components/test.ets", 462 rollupModuleId: "D:\\WORK\\demo\\libraryHar\\src\\main\\ets\\components\\test.ets" 469 "libraryHar/src/main/ets/components/test.ets" 478 …ault\\default@HarCompileArkTS\\esmodule\\release\\libraryHar\\src\\main\\ets\\components\\test.ts", 479 relativeSourceFilePath: "libraryHar/src/main/ets/components/test.ets", 480 originSourceFilePath: "D:/WORK/demo/libraryHar/src/main/ets/components/test.ets", 481 rollupModuleId: "D:\\WORK\\demo\\libraryHar\\src\\main\\ets\\components\\test.ets" 488 "libraryHar/src/main/ets/components/test.ets" [all …]
|
| /arkcompiler/ets_frontend/ets2panda/driver/dependency_analyzer/ |
| D | BUILD.gn | 20 "//build/config/components/runtime_core/static_core/ark_common_config.gni") 35 "//build/config/components/runtime_core/static_core:ark_common_config",
|
| /arkcompiler/ets_frontend/ets2panda/declgen_ets2ts/ |
| D | BUILD.gn | 20 "//build/config/components/runtime_core/static_core/ark_common_config.gni") 35 "//build/config/components/runtime_core/static_core:ark_common_config",
|