| /developtools/ace_ets2bundle/compiler/src/ |
| D | component_map.ts | 25 export let COMMON_ATTRS: Set<string> = new Set([]); 50 COMMON_ATTRS = new Set(json.attrs); 58 const TRANSITION_COMMON_ATTRS: Set<string> = new Set([ 61 export const GESTURE_ATTRS: Set<string> = new Set([ 67 export const forbiddenUseStateType: Set<string> = new Set(['Scroller', 'SwiperScroller', 75 export const INNER_COMPONENT_NAMES: Set<string> = new Set(); 76 export const NO_DEBUG_LINE_COMPONENT: Set<string> = new Set(); 77 export const BUILDIN_CONTAINER_COMPONENT: Set<string> = new Set(); 78 export const BUILDIN_STYLE_NAMES: Set<string> = new Set([ 81 export const AUTOMIC_COMPONENT: Set<string> = new Set(); [all …]
|
| D | pre_define.ts | 18 export const NATIVE_MODULE: Set<string> = new Set( 54 export const COMPONENT_DECORATORS_PARAMS: Set<string> = new Set([COMPONENT_CONSUME_DECORATOR, 57 export const INNER_COMPONENT_DECORATORS: Set<string> = new Set([COMPONENT_DECORATOR_ENTRY, 60 export const INNER_COMPONENT_MEMBER_DECORATORS: Set<string> = new Set([COMPONENT_STATE_DECORATOR, 66 export const STRUCT_DECORATORS: Set<string> = new Set([...INNER_COMPONENT_DECORATORS, 78 export const STRUCT_CONTEXT_METHOD_DECORATORS: Set<string> = new Set([COMPONENT_BUILDER_DECORATOR, 121 export const CUSTOM_DECORATOR_NAME: Set<string> = new Set([ 156 export const ATTRIBUTE_ANIMATETO_SET: Set<string> = new Set(['animateTo', 'animateToImmediately']); 163 export const FOREACH_LAZYFOREACH: Set<string> = new Set([ 259 export const TEST_RUNNER_DIR_SET: Set<string> = new Set(['TestRunner', 'testrunner']); [all …]
|
| D | validate_ui_syntax.ts | 101 customDialogs: Set<string>; 102 customComponents: Set<string>; 107 properties: Set<string>; 108 regulars: Set<string>; 109 states: Set<string>; 110 links: Set<string>; 111 props: Set<string>; 112 storageProps: Set<string>; 113 storageLinks: Set<string>; 114 provides: Set<string>; [all …]
|
| D | utils.ts | 166 private _componentNames: Set<string> = new Set(['ForEach']); 173 public set componentNames(componentNames: Set<string>) { 582 let allModifiedFiles: Set<string> = new Set(); 585 watchRemovedFiles: string[], hotReloadSupportFiles: Set<string>): FilesObj { 588 allModifiedFiles = new Set([...allModifiedFiles, ...watchModifiedFiles 617 export function writeUseOSFiles(useOSFiles: Set<string>): void { 631 export function writeCollectionFile(cachePath: string, appCollection: Map<string, Set<string>>, 632 …allComponentsOrModules: Map<string, Array<string>>, fileName: string, allFiles: Set<string> = null, 652 export function getAllComponentsOrModules(allFiles: Set<string>, 708 …transformedFiles: Set<string> = new Set(); // ArkTS & TS Files which should be transformed in this… [all …]
|
| D | process_import.ts | 85 isEntryPage: boolean = true, pathCollection: Set<string> = new Set()): void { 136 …new Set(), new Set(), new Set(), new Map(), pathCollection, fileResolvePath, /\.d\.ets$/.test(file… 157 …asNameFromParent: Map<string, string>, pagesDir: string, log: LogInfo[], entryCollection: Set<stri… 158 …exportCollection: Set<string>, defaultCollection: Set<string>, asExportCollection: Map<string, str… 159 pathCollection: Set<string>, fileResolvePath: string, isDETS: boolean) { 295 processImport(node, pagesDir, log, asNameFromParent, true, new Set(pathCollection)); 300 processImport(node, pagesDir, log, asNameFromParent, false, new Set(pathCollection)); 314 processImport(node, pagesDir, log, asNameFromParent, false, new Set(pathCollection)); 324 …asNameFromParent: Map<string, string>, defaultNameFromParent: string, defaultCollection: Set<strin… 325 asExportCollection: Map<string, string>, collection: Set<string>): void { [all …]
|
| D | process_component_member.ts | 121 export const observedPropertyDecorators: Set<string> = 122 new Set([COMPONENT_STATE_DECORATOR, COMPONENT_PROVIDE_DECORATOR]); 124 export const propAndLinkDecorators: Set<string> = 125 new Set([COMPONENT_PROP_DECORATOR, COMPONENT_LINK_DECORATOR]); 127 export const appStorageDecorators: Set<string> = 128 new Set([COMPONENT_STORAGE_PROP_DECORATOR, COMPONENT_STORAGE_LINK_DECORATOR, 131 export const mandatorySpecifyDefaultValueDecorators: Set<string> = 132 new Set([...observedPropertyDecorators, ...appStorageDecorators]); 134 export const forbiddenSpecifyDefaultValueDecorators: Set<string> = 135 new Set([COMPONENT_LINK_DECORATOR, COMPONENT_CONSUME_DECORATOR, COMPONENT_OBJECT_LINK_DECORATOR]); [all …]
|
| D | compile_info.ts | 73 const checkErrorMessage: Set<string | Info> = new Set([]); 107 private moduleSharePaths: Set<string> = new Set([]);
|
| D | process_custom_component.ts | 111 let decoractorMap: Map<string, Map<string, Set<string>>>; 226 const builderParamName: Set<string> = builderParamObjectCollection.get(name); 601 const curChildProps: Set<string> = new Set([]); 603 const linkSet: Set<string> = getCollectionSet(name, linkCollection); 652 function getCollectionSet(name: string, collection: Map<string, Set<string>>): Set<string> { 654 return new Set([]); 656 return collection.get(name) || new Set([]); 659 function isThisProperty(node: ts.ObjectLiteralElementLike, propertySet: Set<string>): boolean { 667 function isNonThisProperty(node: ts.ObjectLiteralElementLike, propertySet: Set<string>): boolean { 898 const forbiddenToInitViaParamSet: Set<string> = new Set([ [all …]
|
| D | ets_checker.ts | 345 appComponentCollection.set(path.join(fileName), new Set()); 439 export const hotReloadSupportFiles: Set<string> = new Set(); 440 export const shouldResolvedFiles: Set<string> = new Set(); 441 export const appComponentCollection: Map<string, Set<string>> = new Map(); 442 const allResolvedModules: Set<string> = new Set(); 444 export const allSourceFilePaths: Set<string> = new Set(); 675 const alreadyCheckedFiles: Set<string> = new Set(); 684 function checkNeedUpdateFiles(file: string, needUpdate: NeedUpdateFlag, alreadyCheckedFiles: Set<st… 917 value.parent = [...new Set(value.parent)]; 1006 export const dollarCollection: Set<string> = new Set(); [all …]
|
| /developtools/ace_js2bundle/ace-loader/plugin/codegen/ |
| D | index.js | 1 …Set([...n])],["div",new Set(["flex-direction","overflow","flex-wrap","justify-content","align-item…
|
| /developtools/ace_ets2bundle/compiler/src/fast_build/system_api/ |
| D | rollup-plugin-system-api.ts | 41 const allFiles: Set<string> = new Set(); 43 export const appImportModuleCollection: Map<string, Set<string>> = new Map(); 44 export const kitModules: Map<string, Map<string, Set<string>>> = new Map(); 47 const useOSFiles: Set<string> = new Set(); 102 appImportModuleCollection.set(path.join(sourcePath), new Set()); 155 function processLibso(content: string, sourcePath: string, useOSFiles: Set<string>): string {
|
| D | api_check_utils.ts | 43 new Set( 57 config.syscapIntersectionSet = new Set(syscapIntersection); 58 config.syscapUnionSet = new Set(allSyscaps);
|
| /developtools/smartperf_host/trace_streamer/src/protos/types/plugins/hiperf_call_plugin/ |
| D | hiperf_call_plugin_config.proto | 22 uint32 frequency = 3; // Set the counts of dumpping records per second, default 1000. 23 bool is_trace = 5; // Set if using --trace-offcpu, default true. 24 bool is_root = 6; // Set if using root privilege, default true. 25 bool is_emulator = 7; // Set if the device is emulator, default false.
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/ |
| D | LegendEntry.ets | 24 * @param formSize Set to NaN to use the legend's default. 25 * @param formLineWidth Set to NaN to use the legend's default. 26 * @param formLineDashEffect Set to nil to use the legend's default. 57 * Set as NaN to use the legend's default 64 * Set as NaN to use the legend's default 71 * Set to null to use the legend's default
|
| /developtools/smartperf_host/ide/server/ |
| D | main.go | 61 w.Header().Set("Access-Control-Allow-Origin", "*") 62 w.Header().Set("Access-Control-Allow-Credentials", "true") 63 w.Header().Set("Access-Control-Allow-Headers", "x-requested-with, authorization, blade-auth") //* 64 w.Header().Set("Access-Control-Allow-Methods", "*") //* 65 w.Header().Set("Access-Control-Max-Age", "3600") 66 w.Header().Set("data-version", version) 67 w.Header().Set("Cache-Control", "no-cache") 68 w.Header().Set("Pragma", "no-cache") 205 w.Header().Set("Access-Control-Allow-Origin", "*") 206 w.Header().Set("request_info", serveInfo) [all …]
|
| /developtools/smartperf_host/ide/test/js-heap/logic/ |
| D | Allocation.test.ts | 25 combineId: new Set([]), 44 combineId: new Set([]), 66 combineId: new Set([]), 85 let set: Set<number> = new Set([]);
|
| /developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/common/ |
| D | utils.test.ts | 527 const allFiles = new Set<string>(); 544 const allFiles = new Set<string>(); 561 const allFiles = new Set<string>(); 578 const allFiles = new Set<string>(); 615 const allFiles = new Set<string>(); 628 const allFiles = new Set<string>(); 641 const allFiles = new Set<string>(); 654 const allFiles = new Set<string>(); 681 const allFiles = new Set<string>(); 694 const allFiles = new Set<string>(); [all …]
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/ |
| D | ParamProcessUtil.java | 28 import java.util.Set; 47 public static Set<String> initParamField(String[] paramFileds) { in initParamField()
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/ |
| D | LocalJKSSignProvider.java | 36 import java.util.Set; 96 Set<String> paramSet = ParamProcessUtil.initParamField(paramFileds); in checkParams()
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/energy/ |
| D | TabPaneEnergyAnomaly.ts | 37 let tempSet = new Set(); 81 …HtmlText(findAppNameIndex: number, nextValues: any[], htmlText: string, tempSet: Set<any>): string{
|
| /developtools/smartperf_host/ide/src/js-heap/model/ |
| D | UiStruct.ts | 138 combineId: Set<number>; 166 this.combineId = new Set<number>();
|
| D | DatabaseStruct.ts | 79 edges: Set<HeapEdge>; 113 this.edges = new Set<HeapEdge>();
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/utils/ |
| D | HapUtils.java | 45 import java.util.Set; 159 private static final Set<Integer> HAP_SIGNATURE_OPTIONAL_BLOCK_IDS ; 188 Set<Integer> blockIds = new HashSet<Integer>(); 203 public static Set<Integer> getHapSignatureOptionalBlockIds() { in getHapSignatureOptionalBlockIds() 272 …Set<ContentDigestAlgorithm> digestAlgorithms, ZipDataInput[] zipData, List<SigningBlock> optionalB… in computeDigests()
|
| /developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/utils/ |
| D | utils.ts | 30 export function scanFiles(filepath: string, fileList: Set<string>) {
|
| /developtools/smartperf_host/ide/test/trace/component/trace/base/ |
| D | TraceRowConfig.test.ts | 165 traceRowConfig.expandedNodeList = new Set([1, 2, 3]); 171 traceRowConfig.expandedNodeList = new Set([2, 3]);
|