/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( 51 export const COMPONENT_DECORATORS_PARAMS: Set<string> = new Set([COMPONENT_CONSUME_DECORATOR, 54 export const INNER_COMPONENT_DECORATORS: Set<string> = new Set([COMPONENT_DECORATOR_ENTRY, 57 export const INNER_COMPONENT_MEMBER_DECORATORS: Set<string> = new Set([COMPONENT_STATE_DECORATOR, 62 export const STRUCT_DECORATORS: Set<string> = new Set([...INNER_COMPONENT_DECORATORS, 72 export const STRUCT_CONTEXT_METHOD_DECORATORS: Set<string> = new Set([COMPONENT_BUILDER_DECORATOR, 115 export const CUSTOM_DECORATOR_NAME: Set<string> = new Set([ 156 export const FOREACH_LAZYFOREACH: Set<string> = new Set([ 250 export const TEST_RUNNER_DIR_SET: Set<string> = new Set(['TestRunner', 'testrunner']); 274 export const BIND_POPUP_SET: Set<string> = new Set(['bindPopup']); [all …]
|
D | validate_ui_syntax.ts | 105 customDialogs: Set<string>; 106 customComponents: Set<string>; 111 properties: Set<string>; 112 regulars: Set<string>; 113 states: Set<string>; 114 links: Set<string>; 115 props: Set<string>; 116 storageProps: Set<string>; 117 storageLinks: Set<string>; 118 provides: Set<string>; [all …]
|
D | utils.ts | 162 private _componentNames: Set<string> = new Set(['ForEach']); 169 public set componentNames(componentNames: Set<string>) { 545 let allModifiedFiles: Set<string> = new Set(); 548 watchRemovedFiles: string[], hotReloadSupportFiles: Set<string>): FilesObj { 551 allModifiedFiles = new Set([...allModifiedFiles, ...watchModifiedFiles 580 export function writeUseOSFiles(useOSFiles: Set<string>): void { 594 export function writeCollectionFile(cachePath: string, appCollection: Map<string, Set<string>>, 595 …allComponentsOrModules: Map<string, Array<string>>, fileName: string, allFiles: Set<string> = null… 610 export function getAllComponentsOrModules(allFiles: Set<string>, 666 …transformedFiles: Set<string> = new Set(); // ArkTS & TS Files which should be transformed in this… [all …]
|
D | process_import.ts | 86 isEntryPage: boolean = true, pathCollection: Set<string> = new Set()): void { 136 …new Set(), new Set(), new Set(), new Map(), pathCollection, fileResolvePath, /\.d\.ets$/.test(file… 155 …asNameFromParent: Map<string, string>, pagesDir: string, log: LogInfo[], entryCollection: Set<stri… 156 …exportCollection: Set<string>, defaultCollection: Set<string>, asExportCollection: Map<string, str… 157 pathCollection: Set<string>, fileResolvePath: string, isDETS: boolean) { 291 processImport(node, pagesDir, log, asNameFromParent, true, new Set(pathCollection)); 296 processImport(node, pagesDir, log, asNameFromParent, false, new Set(pathCollection)); 310 processImport(node, pagesDir, log, asNameFromParent, false, new Set(pathCollection)); 320 …asNameFromParent: Map<string, string>, defaultNameFromParent: string, defaultCollection: Set<strin… 321 asExportCollection: Map<string, string>, collection: Set<string>): void { [all …]
|
D | process_custom_component.ts | 113 let decoractorMap: Map<string, Map<string, Set<string>>>; 223 const builderParamName: Set<string> = builderParamObjectCollection.get(name); 547 const curChildProps: Set<string> = new Set([]); 549 const propertySet: Set<string> = getCollectionSet(name, propertyCollection); 550 const linkSet: Set<string> = getCollectionSet(name, linkCollection); 601 function getCollectionSet(name: string, collection: Map<string, Set<string>>): Set<string> { 603 return new Set([]); 605 return collection.get(name) || new Set([]); 608 function isThisProperty(node: ts.ObjectLiteralElementLike, propertySet: Set<string>): boolean { 616 function isNonThisProperty(node: ts.ObjectLiteralElementLike, propertySet: Set<string>): boolean { [all …]
|
D | compile_info.ts | 74 const checkErrorMessage: Set<string | Info> = new Set([]); 108 private moduleSharePaths: Set<string> = new Set([]);
|
D | ets_checker.ts | 214 appComponentCollection.set(path.join(fileName), new Set()); 263 export const hotReloadSupportFiles: Set<string> = new Set(); 264 export const shouldResolvedFiles: Set<string> = new Set(); 265 export const appComponentCollection: Map<string, Set<string>> = new Map(); 266 const allResolvedModules: Set<string> = new Set(); 426 const alreadyCheckedFiles: Set<string> = new Set(); 435 function checkNeedUpdateFiles(file: string, needUpdate: NeedUpdateFlag, alreadyCheckedFiles: Set<st… 634 value.parent = [...new Set(value.parent)]; 720 export const dollarCollection: Set<string> = new Set(); 721 export const decoratorParamsCollection: Set<string> = new Set(); [all …]
|
D | process_component_member.ts | 117 export const observedPropertyDecorators: Set<string> = 118 new Set([COMPONENT_STATE_DECORATOR, COMPONENT_PROVIDE_DECORATOR]); 120 export const propAndLinkDecorators: Set<string> = 121 new Set([COMPONENT_PROP_DECORATOR, COMPONENT_LINK_DECORATOR]); 123 export const appStorageDecorators: Set<string> = 124 new Set([COMPONENT_STORAGE_PROP_DECORATOR, COMPONENT_STORAGE_LINK_DECORATOR, 127 export const mandatorySpecifyDefaultValueDecorators: Set<string> = 128 new Set([...observedPropertyDecorators, ...appStorageDecorators]); 130 export const forbiddenSpecifyDefaultValueDecorators: Set<string> = 131 new Set([COMPONENT_LINK_DECORATOR, COMPONENT_CONSUME_DECORATOR, COMPONENT_OBJECT_LINK_DECORATOR]); [all …]
|
D | process_component_constructor.ts | 88 const paramNames: Set<string> = !partialUpdateConfig.partialUpdateMode ? new Set([ 93 ]) : new Set([
|
/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 | 40 const allFiles: Set<string> = new Set(); 42 export const appImportModuleCollection: Map<string, Set<string>> = new Map(); 45 const useOSFiles: Set<string> = new Set(); 88 appImportModuleCollection.set(path.join(sourcePath), new Set()); 141 function processLibso(content: string, sourcePath: string, useOSFiles: Set<string>): string {
|
/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/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. 59 * Set as NaN to use the legend's default 66 * Set as NaN to use the legend's default 73 * Set to null to use the legend's default
|
/developtools/smartperf_host/ide/test/js-heap/logic/ |
D | Allocation.test.ts | 27 combineId: new Set([]), 46 combineId: new Set([]), 68 combineId: new Set([]), 87 let set: Set<number> = new Set([]);
|
/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) 203 w.Header().Set("Access-Control-Allow-Origin", "*") 204 w.Header().Set("request_info", serveInfo) 335 w.Header().Set("content-type", "text/json")
|
/developtools/profiler/host/smartperf/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) 203 w.Header().Set("Access-Control-Allow-Origin", "*") 204 w.Header().Set("request_info", serveInfo) 335 w.Header().Set("content-type", "text/json")
|
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/utils/ |
D | ParamProcessUtil.java | 27 import java.util.Set; 46 public static Set<String> initParamField(String[] paramFileds) { in initParamField()
|
D | HapUtils.java | 46 import java.util.Set; 155 private static final Set<Integer> HAP_SIGNATURE_OPTIONAL_BLOCK_IDS ; 184 Set<Integer> blockIds = new HashSet<Integer>(); 199 public static Set<Integer> getHapSignatureOptionalBlockIds() { in getHapSignatureOptionalBlockIds() 268 …Set<ContentDigestAlgorithm> digestAlgorithms, ZipDataInput[] zipData, List<SigningBlock> optionalB… in computeDigests()
|
/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/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/profiler/host/smartperf/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>();
|