Home
last modified time | relevance | path

Searched refs:exitFunction (Results 1 – 4 of 4) sorted by relevance

/third_party/typescript/scripts/eslint/rules/
Donly-arrow-functions.ts67 const exitFunction = (node: TSESTree.FunctionDeclaration | TSESTree.FunctionExpression) => { constant
85 "FunctionDeclaration:exit": exitFunction,
87 "FunctionExpression:exit": exitFunction,
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Drequire-await.ts63 function exitFunction(node: FunctionNode): void { function
136 'FunctionDeclaration:exit': exitFunction,
137 'FunctionExpression:exit': exitFunction,
138 'ArrowFunctionExpression:exit': exitFunction,
/third_party/flutter/flutter/packages/flutter_tools/lib/src/base/
Dio.dart102 void setExitFunctionForTests([ ExitFunction exitFunction ]) {
103 _exitFunction = exitFunction ?? (int exitCode) {
/third_party/boost/libs/statechart/test/
DTransitionTest.cpp54 static const std::string exitFunction = "exit(): "; in ExitFnDescription() local
55 return exitFunction + typeid( State ).name() + "\n"; in ExitFnDescription()