/interface/sdk-js/build-tools/collect_api/ |
D | collect_base_api.js | 237 function collectTypeApi(child, packageName, className, api, hash, apiInfo, dtsPath) { argument 239 name: child.name.escapedText, 242 if (child.type.types) { 243 child.type.types?.forEach(type => { 244 collectTypeApiInTypes(type, apiInfo, child, api, hash, dtsPath, typeObj, packageName); 246 } else if (child.type.members) { 247 child.type.members?.forEach(member => { 248 …collectTypeApiInMembers(member, apiInfo, child, api, hash, dtsPath, typeObj, packageName, classNam… 254 function collectTypeApiInTypes(type, apiInfo, child, api, hash, dtsPath, typeObj, packageName) { argument 259 addApi(packageName, child.name.escapedText, type.literal.text, child.getText(), [all …]
|
/interface/sdk-js/build-tools/api_diff/src/ |
D | collect_base_api.js | 239 function collectTypeApi(child, packageName, className, faterApiType, api, exportApi, returnDeclarat… argument 242 name: child.name.escapedText, 245 if (child.type.types) { 246 child.type.types?.forEach(type => { 251 addApi(packageName, child.name.escapedText, type.literal.text, child.getText(), 252 getApiInfo(child, faterApiInfo), 'Type', api, hash, dtsPath, 1); 259 addApi(packageName, child.name.escapedText, type.getText(), child.getText(), 260 getApiInfo(child, faterApiInfo), 'Type', api, hash, dtsPath, 2); 265 } else if (child.type.members) { 266 child.type.members?.forEach(member => { [all …]
|
D | api_collector.js | 233 module.forEachChild((child) => { 234 if (!ts.isModuleBlock(child)) { 235 rawText += ` ${child.getText()}`; 354 astNode.forEachChild((child) => { 355 visitAstNode(child, apiMap, apiDigestInfo, ext);
|
/interface/sdk-js/build-tools/jsdoc_format_plugin/src/core/ |
D | outputProcessor.ts | 86 sourceFile.forEachChild((child) => { 87 this.nodeVisitor(child); 94 node.forEachChild((child) => { 95 this.nodeVisitor(child);
|
D | asynchronousFunctionProcessor.ts | 58 ts.forEachChild(cNode.body, (child) => { 59 this.nodeVisitor(child, preNode); 66 ts.forEachChild(cNode, (child) => { 67 this.nodeVisitor(child, preNode);
|
D | coreImpls.ts | 236 node.forEachChild((child) => { 237 nodeVisitor(child, currentCommentNode, sourceFile); 241 forEachSourceFile.forEachChild((child) => { 242 nodeVisitor(child, undefined, forEachSourceFile); 763 node.forEachChild((child) => { 764 …!AstNodeHelper.skipSignatureNode.includes(child.kind) && !AstNodeHelper.noNeedSignatureNodeTypes.i… 765 nodeSignature += `${AstNodeHelper.getChildPlainText(child)}`; 778 node.forEachChild((child) => { 779 content += `${this.getChildPlainText(child)}`;
|
/interface/sdk_c/build-tools/capi_parser/src/coreImpl/parser/ |
D | parser.py | 276 def delete_typedef_child(child): argument 277 if child['kind'] == 'TYPEDEF_DECL': 278 if 'children' in child and len(child['children']) \ 279 and (child['children'][0]['kind'] == 'STRUCT_DECL' 280 or child['children'][0]['kind'] == 'ENUM_DECL' 281 or child['children'][0]['kind'] == 'UNION_DECL'): 282 child['children'] = [] 321 for child in item['children']: 322 delete_typedef_child(child)
|
D | parse_include.py | 287 for child in children: 289 if child.location.file is not None and child.kind != CursorKind.UNEXPOSED_ATTR \ 290 and child.location.file.name == current_file: 291 processing_ast_node(child, current_file, data, name, gn_path) 297 def processing_ast_node(child, current_file, data, name, gn_path): argument 298 child_data = ast_to_dict(child, current_file, gn_path, key=1) 299 if child.kind == CursorKind.TYPE_REF:
|
/interface/sdk-js/build-tools/api_check_plugin/autoTest/expect/ |
D | deprecated001.txt | 7 …e is an inheritable label [deprecated] in the current file, but there are child nodes without this…
|
D | systemapi001.txt | 7 …re is an inheritable label [systemapi] in the current file, but there are child nodes without this…
|
D | StageModelOnly001.txt | 7 … an inheritable label [StageModelOnly] in the current file, but there are child nodes without this…
|
D | test001.txt | 7 …t there is an inheritable label [test] in the current file, but there are child nodes without this…
|
D | FAModelOnly001.txt | 7 … is an inheritable label [FAModelOnly] in the current file, but there are child nodes without this…
|
/interface/sdk_c/third_party/libuv/include/uv/ |
D | tree.h | 533 struct type *child, *parent, *old = elm; \ 536 child = RB_RIGHT(elm, field); \ 538 child = RB_LEFT(elm, field); \ 544 child = RB_RIGHT(elm, field); \ 547 if (child) \ 548 RB_PARENT(child, field) = parent; \ 551 RB_LEFT(parent, field) = child; \ 553 RB_RIGHT(parent, field) = child; \ 556 RB_ROOT(head) = child; \ 581 if (child) \ [all …]
|
/interface/sdk-js/api/arkui/ |
D | RenderNode.d.ts | 54 insertChildAfter(child: RenderNode, sibling: RenderNode | null): void;
|
/interface/sdk-js/build-tools/openharmony_sdk_upgrade_assistant/src/main/java/com/update/check/utils/ |
D | FileUtils.java | 157 Object child = JSONObject.parse(modelJson); in getApplicationApiType() local 159 if (child instanceof JSONObject) { in getApplicationApiType() 160 parseModel = (JSONObject) child; in getApplicationApiType()
|
/interface/sdk-js/build-tools/collect_application_api/src/ |
D | api_recognizer.js | 89 ts.forEachChild(node, (child) => { 90 this.visitNode(child, fileName);
|
/interface/sdk-js/api/ |
D | @ohos.data.distributedData.d.ts | 685 appendChild(child: FieldNode): boolean;
|
D | @ohos.data.distributedKVStore.d.ts | 560 appendChild(child: FieldNode): boolean;
|
/interface/sdk-js/api/common/full/ |
D | viewmodel.d.ts | 1344 addChild(child: Element): void;
|
/interface/sdk-js/build-tools/api_check_plugin/plugin/ |
D | dictionaries.txt | 10437 child
|
/interface/sdk-js/build-tools/dts_parser/src/coreImpl/checker/config/ |
D | dictionaries.txt | 10437 child
|