Searched refs:maxApiLevel (Results 1 - 5 of 5) sorted by relevance

/frameworks/rs/api/
H A DGenerator.cpp156 static bool parseCommandLine(int argc, char* argv[], unsigned int* maxApiLevel, bool* forVerification, argument
164 *maxApiLevel = strtol(argv[i], &end, 10);
192 unsigned int maxApiLevel = VersionInfo::kUnreleasedVersion; local
195 if (!parseCommandLine(argc, argv, &maxApiLevel, &forVerification, &specFileNames)) {
201 if (!systemSpecification.readSpecFile(i, maxApiLevel)) {
206 success = systemSpecification.generateFiles(forVerification, maxApiLevel);
H A DGenerator.h36 bool generateStubsWhiteList(const std::string& slangTestDirectory, unsigned int maxApiLevel);
H A DSpecification.cpp227 bool VersionInfo::scan(Scanner* scanner, unsigned int maxApiLevel) { argument
251 if (maxVersion > maxApiLevel) {
252 maxVersion = maxApiLevel;
255 return minVersion == 0 || minVersion <= maxApiLevel;
365 unsigned int maxApiLevel) {
368 if (!info.scan(scanner, maxApiLevel)) {
391 unsigned int maxApiLevel) {
394 if (!info.scan(scanner, maxApiLevel)) {
599 unsigned int maxApiLevel) {
611 if (!info.scan(scanner, maxApiLevel)) {
364 scanConstantSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel) argument
390 scanTypeSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel) argument
598 scanFunctionSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel) argument
800 readSpecFile(unsigned int maxApiLevel) argument
893 readSpecFile(const string& fileName, unsigned int maxApiLevel) argument
904 updateMaxApiLevel(const VersionInfo& info, unsigned int* maxApiLevel) argument
913 unsigned int maxApiLevel = 0; local
[all...]
H A DGenerateStubsWhiteList.cpp358 unsigned int minApiLevel, maxApiLevel; local
360 maxApiLevel = info.maxVersion ? info.maxVersion : lastApiLevel;
368 // (minApiLevel == maxApiLevel == UINT_MAX for unreleased API)
369 for (int64_t apiLevel = minApiLevel; apiLevel <= maxApiLevel; ++apiLevel) {
549 bool generateStubsWhiteList(const string& slangTestDirectory, unsigned int maxApiLevel) { argument
550 unsigned int lastApiLevel = min(systemSpecification.getMaximumApiLevel(), maxApiLevel);
H A DSpecification.h138 /* Scan the version info from the spec file. maxApiLevel specifies the maximum level
140 * minVersion is greater than the maxApiLevel.
142 bool scan(Scanner* scanner, unsigned int maxApiLevel);
276 static void scanConstantSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);
323 static void scanTypeSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);
449 static void scanFunctionSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);
561 bool readSpecFile(unsigned int maxApiLevel);
596 bool readSpecFile(const std::string& fileName, unsigned int maxApiLevel);
598 bool generateFiles(bool forVerification, unsigned int maxApiLevel) const;

Completed in 65 milliseconds