Searched refs:specFile (Results 1 - 4 of 4) sorted by relevance

/frameworks/rs/api/
H A DGenerateDocumentation.cpp413 static bool writeOverviewForFile(GeneratedFile* file, const SpecFile& specFile) { argument
415 *file << "<h2>" << specFile.getBriefDescription() << "</h2>\n";
416 if (!generateHtmlParagraphs(file, specFile.getFullDescription())) {
422 writeSummaryTables(file, specFile.getDocumentedConstants(), specFile.getDocumentedTypes(),
423 specFile.getDocumentedFunctions(), NON_DEPRECATED_ONLY, false);
437 for (auto specFile : systemSpecification.getSpecFiles()) {
438 if (!writeOverviewForFile(&file, *specFile)) {
611 static bool writeDetailedDocumentationFile(const string& directory, const SpecFile& specFile, argument
613 if (!specFile
[all...]
H A DGenerateHeaderFiles.cpp315 static bool writeHeaderFile(const string& directory, const SpecFile& specFile) { argument
316 const string headerFileName = specFile.getHeaderFileName();
326 writeComment(&file, headerFileName, specFile.getBriefDescription(),
327 specFile.getFullDescription(), false, true);
336 if (specFile.getVerbatimInclude().size() > 0) {
337 for (auto s : specFile.getVerbatimInclude()) {
347 for (auto spec : specFile.getConstantSpecifications()) {
356 for (auto spec : specFile.getTypeSpecifications()) {
366 for (auto spec : specFile.getFunctionSpecifications()) {
386 for (auto specFile
[all...]
H A DSpecification.cpp275 const SpecFile* specFile) {
302 mUrl = specFile->getDetailedDocumentationUrl() + "#android_rs:" + mName;
364 void ConstantSpecification::scanConstantSpecification(Scanner* scanner, SpecFile* specFile, argument
379 specFile->addConstantSpecification(spec, created);
385 constant->scanDocumentationTags(scanner, created, specFile);
390 void TypeSpecification::scanTypeSpecification(Scanner* scanner, SpecFile* specFile, argument
405 specFile->addTypeSpecification(spec, created);
440 type->scanDocumentationTags(scanner, created, specFile);
598 void FunctionSpecification::scanFunctionSpecification(Scanner* scanner, SpecFile* specFile, argument
622 specFile
274 scanDocumentationTags(Scanner* scanner, bool firstOccurence, const SpecFile* specFile) argument
801 FILE* specFile = fopen(mSpecFileName.c_str(), "rt"); local
[all...]
H A DSpecification.h180 void scanDocumentationTags(Scanner* scanner, bool firstOccurence, const SpecFile* specFile);
275 // Parse a constant specification and add it to specFile.
276 static void scanConstantSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);
322 // Parse a type specification and add it to specFile.
323 static void scanTypeSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);
448 // Parse a function specification and add it to specFile.
449 static void scanFunctionSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);

Completed in 841 milliseconds