Home
last modified time | relevance | path

Searched refs:Set (Results 1 – 25 of 73) sorted by relevance

123

/developtools/ace_ets2bundle/compiler/src/
Dcomponent_map.ts25 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 …]
Dpre_define.ts18 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 …]
Dvalidate_ui_syntax.ts105 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 …]
Dutils.ts162 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 …]
Dprocess_import.ts86 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 …]
Dprocess_custom_component.ts113 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 …]
Dcompile_info.ts74 const checkErrorMessage: Set<string | Info> = new Set([]);
108 private moduleSharePaths: Set<string> = new Set([]);
Dets_checker.ts214 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 …]
Dprocess_component_member.ts117 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 …]
Dprocess_component_constructor.ts88 const paramNames: Set<string> = !partialUpdateConfig.partialUpdateMode ? new Set([
93 ]) : new Set([
/developtools/ace_js2bundle/ace-loader/plugin/codegen/
Dindex.js1Set([...n])],["div",new Set(["flex-direction","overflow","flex-wrap","justify-content","align-item…
/developtools/ace_ets2bundle/compiler/src/fast_build/system_api/
Drollup-plugin-system-api.ts40 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/
Dhiperf_call_plugin_config.proto22 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/
Dhiperf_call_plugin_config.proto22 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/
DLegendEntry.ets24 * @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/
DAllocation.test.ts27 combineId: new Set([]),
46 combineId: new Set([]),
68 combineId: new Set([]),
87 let set: Set<number> = new Set([]);
/developtools/smartperf_host/ide/server/
Dmain.go61 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/
Dmain.go61 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/
DParamProcessUtil.java27 import java.util.Set;
46 public static Set<String> initParamField(String[] paramFileds) { in initParamField()
DHapUtils.java46 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()
268Set<ContentDigestAlgorithm> digestAlgorithms, ZipDataInput[] zipData, List<SigningBlock> optionalB… in computeDigests()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/hap/provider/
DLocalJKSSignProvider.java36 import java.util.Set;
96 Set<String> paramSet = ParamProcessUtil.initParamField(paramFileds); in checkParams()
/developtools/smartperf_host/ide/src/js-heap/model/
DUiStruct.ts138 combineId: Set<number>;
166 this.combineId = new Set<number>();
DDatabaseStruct.ts79 edges: Set<HeapEdge>;
113 this.edges = new Set<HeapEdge>();
/developtools/profiler/host/smartperf/ide/src/js-heap/model/
DUiStruct.ts138 combineId: Set<number>;
166 this.combineId = new Set<number>();
DDatabaseStruct.ts79 edges: Set<HeapEdge>;
113 this.edges = new Set<HeapEdge>();

123