Home
last modified time | relevance | path

Searched refs:files (Results 1 – 25 of 39) sorted by relevance

12

/interface/sdk-js/build-tools/dts_parser/
Dtsconfig.json8 …, /* Specify the folder for .tsbuildinfo incremental compilation files. */
9 …ectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when…
15 … /* Specify a set of bundled library declaration files that describe the …
18 …rue, /* Emit design-type metadata for decorated declarations in source files. */
23 …// "noLib": true, /* Disable including any library files, inclu…
28 …ir": "./", /* Specify the root folder within your source files. */
36 "resolveJsonModule": true, /* Enable importing .json files */
37 …llow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should …
40 … /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get…
41 …ue, /* Enable error reporting in type-checked JavaScript files. */
[all …]
/interface/sdk-js/build-tools/jsdoc_format_plugin/
Dtsconfig.json8 …, /* Specify the folder for .tsbuildinfo incremental compilation files. */
9 …ectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when…
15 … /* Specify a set of bundled library declaration files that describe the …
18 …rue, /* Emit design-type metadata for decorated declarations in source files. */
23 …// "noLib": true, /* Disable including any library files, inclu…
28 …ir": "./", /* Specify the root folder within your source files. */
36 "resolveJsonModule": true, /* Enable importing .json files */
37 …llow `import`s, `require`s or `<reference>`s from expanding the number of files TypeScript should …
40 … /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get…
41 …ue, /* Enable error reporting in type-checked JavaScript files. */
[all …]
/interface/sdk-js/build-tools/jsdoc_format_plugin/src/utils/
DfileUtils.ts27 const files: Array<string> = []; constant
32 files.push(filePath);
36 files.push(filePath);
40 files.push(...FileUtils.readFilesInDir(filePath, filter));
42 return files;
/interface/sdk-js/build-tools/dts_parser/src/utils/
DFileUtils.ts43 const files: Array<string> = []; constant
51 files.push(filePath);
55 files.push(filePath);
59 files.push(...FileUtils.readFilesInDir(filePath, filter));
61 return files;
DcheckUtils.ts148 const files: string[] = fs.readdirSync(dir); constant
149 files.forEach((element) => {
/interface/sdk-js/build-tools/api_check_plugin/src/
Dcheck_naming.js111 !isInAllowedFiles(value.files, path.basename(fileName))
136 const { word, files } = item;
137 lowercaseNamingScenarioMap.set(key, { word, files }); field
142 function isInAllowedFiles(files, fileName) { argument
143 for (const item of files) {
/interface/sdk-js/build-tools/api_diff/src/
Dutil.js34 const files = fs.readdirSync(dir);
35 files.forEach((element) => {
/interface/sdk-js/build-tools/dts_parser/src/coreImpl/checker/src/
Dnaming_check.ts90 …if (prohibitedWordIndex !== -1 && !ApiNamingCheck.isInAllowedFiles(value.files, singleApi.getFileP…
153 static isInAllowedFiles(files: string[], fileName: string): boolean {
154 for (const item of files) {
Dts_check_plugin.ts43 const files: Array<string> = Check.getMdFiles(url); constant
53 files.forEach((filePath: string, index: number) => {
Dapi_check_plugin.ts52 const files: Array<string> = Check.getMdFiles(url); constant
54 files.forEach((filePath: string, index: number) => {
/interface/sdk_c/third_party/musl/
DCOPYRIGHT7 a copy of this software and associated documentation files (the
116 under a 2-clause BSD license (license text in the source files). The
127 and labelled as such in comments in the individual source files. All
163 All other files which have no copyright comments are original works
166 contibutors listed above. Details on authorship of individual files
171 In addition, permission is hereby granted for all public header files
172 (include/* and arch/*/bits/*) and crt files intended to be linked into
175 license, and to use these files without any requirement of
176 attribution. These files include substantial contributions from:
189 the files covered by the above exception were sufficiently trivial not
/interface/sdk_c/third_party/vulkan-headers/
DREADME.OpenSource9 "Description": "Vulkan header files and API registry"
/interface/sdk-js/api/
D@ohos.print.d.ts173 function print(files: Array<string>, callback: AsyncCallback<PrintTask>): void;
184 function print(files: Array<string>): Promise<PrintTask>;
196 function print(files: Array<string>, context: Context, callback: AsyncCallback<PrintTask>): void;
208 function print(files: Array<string>, context: Context): Promise<PrintTask>;
D@system.request.d.ts195 files: Array<RequestFile>; property
/interface/sdk_c/third_party/openGLES/
DREADME.OpenSource9 …ecifications of Khronos- and vendor-approved OpenGL ES extensions; header files corresponding to t…
/interface/sdk_c/third_party/zlib/
DREADME.OpenSource9 …mat used by the zlib library is described by RFCs (Request for Comments) 1950 to 1952 in the files"
DREADME5 (Request for Comments) 1950 to 1952 in the files
14 files in the root directory.
16 To compile all files and run the test program, follow the instructions given at
51 An experimental package to read and write files in .zip format, written on top
/interface/sdk-js/build-tools/collect_application_api/src/
Dutils.js248 const files = fs.readdirSync(dir);
249 files.forEach((element) => {
286 const files = fs.readdirSync(dir);
287 files.forEach((element) => {
/interface/sdk_c/
DREADME.OpenSource9 …mat used by the zlib library is described by RFCs (Request for Comments) 1950 to 1952 in the files"
72 …ecifications of Khronos- and vendor-approved OpenGL ES extensions; header files corresponding to t…
81 "Description": "Vulkan header files and API registry"
DREADME.en.md5 This repository is used to store .h declaration files of C APIs. The OpenHarmony C API is collectio…
/interface/sdk-js/
DREADME.md5 This repository is used to store .d.ts declaration files of JavaScript/TypeScript APIs and API-rela…
/interface/sdk-js/build-tools/dts_parser/src/coreImpl/parser/
Dparser.ts40 const files: Array<string> = FileUtils.readFilesInDir(fileDir, (name) => { constant
44 files.forEach((filePath: string) => {
/interface/sdk_c/build-tools/capi_parser/src/coreImpl/parser/
Dparser.py31 for root, _, files in os.walk(directory): # dirpath, dirnames, filenames(对应信息)
32 for file in files:
268 for dir_path, _, files in os.walk(std_include):
269 for file in files:
/interface/sdk_c/third_party/openSLES/
DNOTICE4 this software and /or associated documentation files (the "Materials "), to
/interface/sdk_c/third_party/libuv/
DLICENSE7 of this software and associated documentation files (the "Software"), to
32 of this software and associated documentation files (the "Software"), to

12