Home
last modified time | relevance | path

Searched refs:hasReturn (Results 1 – 7 of 7) sorted by relevance

/third_party/typescript/src/services/
DjsDoc.ts359 const { commentOwner, parameters, hasReturn } = commentOwnerInfo; constant
373 (hasReturn ? returnsDocComment(indentationStr, newLine) : "");
421 readonly hasReturn?: boolean; property
435 … return { commentOwner, parameters: host.parameters, hasReturn: hasReturn(host, options) };
451 … ? { commentOwner, parameters: host.type.parameters, hasReturn: hasReturn(host.type, options) }
462 … ? { commentOwner, parameters: host.parameters, hasReturn: hasReturn(host, options) }
483 … ? { commentOwner, parameters: be.right.parameters, hasReturn: hasReturn(be.right, options) }
489 … return { commentOwner, parameters: init.parameters, hasReturn: hasReturn(init, options) };
494 function hasReturn(node: Node, options: DocCommentTemplateOptions | undefined) { function
/third_party/mesa3d/src/egl/generate/
Dgen_egl_dispatch.py86 if func.hasReturn():
194 if func.hasReturn():
225 if func.hasReturn():
230 if func.hasReturn():
/third_party/mesa3d/src/mapi/new/
Dgen_gldispatch_mapi.py110 if (func.hasReturn()):
148 retStr = ("return " if func.hasReturn() else "")
DgenCommon.py136 def hasReturn(self): member in FunctionDesc
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86PadShortFunction.cpp166 bool hasReturn = cyclesUntilReturn(MBB, Cycles); in findReturns() local
170 if (hasReturn) { in findReturns()
/third_party/typescript/src/services/refactors/
DextractSymbol.ts1409 …y UsageEntry[] | undefined, substitutions: ReadonlyESMap<string, Node>, hasReturn: boolean): { bod…
1421 if (hasWritesOrVariableDeclarations && !hasReturn && isStatement(body)) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonFrameLowering.cpp345 static bool hasReturn(const MachineBasicBlock &MBB) { in hasReturn() function
1289 bool HasTC = hasTailCall(MBB) || !hasReturn(MBB); in insertCSRRestoresInBlock()