Home | History | Annotate | Download | only in api

Lines Matching defs:function

202     Function* function = spec.getFunction();
203 writeVersionGuardStart(file, spec.getVersionInfo(), function->getFinalVersion());
222 function->getDeprecatedApiLevel(), function->getDeprecatedMessage());
225 // Write the function name.
282 static void writeFunctionComment(GeneratedFile* file, const Function& function) {
284 writeComment(file, function.getName(), function.getSummary(), function.getDescription(),
285 function.deprecated(), false);
288 if (function.someParametersAreDocumented()) {
291 for (auto p : function.getParameters()) {
299 const string returnDoc = function.getReturnDocumentation();
365 set<Function*> documentedFunctions;
371 Function* function = spec->getFunction();
372 if (documentedFunctions.find(function) == documentedFunctions.end()) {
373 documentedFunctions.insert(function);
374 writeFunctionComment(&file, *function);