Home
last modified time | relevance | path

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

/frameworks/rs/script_api/
DGenerator.cpp157 static bool parseCommandLine(int argc, char* argv[], unsigned int* maxApiLevel, in parseCommandLine() argument
165 *maxApiLevel = strtol(argv[i], &end, 10); in parseCommandLine()
191 unsigned int maxApiLevel = VersionInfo::kUnreleasedVersion; in main() local
193 if (!parseCommandLine(argc, argv, &maxApiLevel, &specFileNames)) { in main()
200 if (!systemSpecification.readSpecFile(i, maxApiLevel)) { in main()
205 success = systemSpecification.generateFiles(maxApiLevel); in main()
DSpecification.cpp227 bool VersionInfo::scan(Scanner* scanner, unsigned int maxApiLevel) { in scan() argument
251 if (maxVersion > maxApiLevel) { in scan()
252 maxVersion = maxApiLevel; in scan()
255 return minVersion == 0 || minVersion <= maxApiLevel; in scan()
366 unsigned int maxApiLevel) { in scanConstantSpecification() argument
369 if (!info.scan(scanner, maxApiLevel)) { in scanConstantSpecification()
395 unsigned int maxApiLevel) { in scanTypeSpecification() argument
398 if (!info.scan(scanner, maxApiLevel)) { in scanTypeSpecification()
603 unsigned int maxApiLevel) { in scanFunctionSpecification() argument
615 if (!info.scan(scanner, maxApiLevel)) { in scanFunctionSpecification()
[all …]
DGenerateStubsWhiteList.cpp359 unsigned int minApiLevel, maxApiLevel; in addManglingsForSpecification() local
361 maxApiLevel = info.maxVersion ? info.maxVersion : lastApiLevel; in addManglingsForSpecification()
370 for (int64_t apiLevel = minApiLevel; apiLevel <= maxApiLevel; ++apiLevel) { in addManglingsForSpecification()
551 bool generateStubsWhiteList(const string& slangTestDirectory, unsigned int maxApiLevel) { in generateStubsWhiteList() argument
552 unsigned int lastApiLevel = min(systemSpecification.getMaximumApiLevel(), maxApiLevel); in generateStubsWhiteList()
DSpecification.h142 bool scan(Scanner* scanner, unsigned int maxApiLevel);
278 …tic void scanConstantSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);
325 … static void scanTypeSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);
451 …tic void scanFunctionSpecification(Scanner* scanner, SpecFile* specFile, unsigned int maxApiLevel);
563 bool readSpecFile(unsigned int maxApiLevel);
598 bool readSpecFile(const std::string& fileName, unsigned int maxApiLevel);
600 bool generateFiles(unsigned int maxApiLevel) const;
DGenerator.h36 bool generateStubsWhiteList(const std::string& slangTestDirectory, unsigned int maxApiLevel);