Searched refs:testOption (Results 1 - 3 of 3) sorted by relevance

/frameworks/rs/script_api/
H A DSpecification.cpp140 const string& testOption, int lineNumber,
183 if (!testOption.empty()) {
184 if (testOption.compare(0, 6, "range(") == 0) {
185 size_t pComma = testOption.find(',');
186 size_t pParen = testOption.find(')');
188 scanner->error(lineNumber) << "Incorrect range " << testOption << "\n";
190 minValue = testOption.substr(6, pComma - 6);
191 maxValue = testOption.substr(pComma + 1, pParen - pComma - 1);
193 } else if (testOption.compare(0, 6, "above(") == 0) {
194 size_t pParen = testOption
139 parseParameterDefinition(const string& type, const string& name, const string& testOption, int lineNumber, bool isReturn, Scanner* scanner) argument
538 getParam(size_t index, int replacementIndexes[MAX_REPLACEABLES], std::string* type, std::string* name, std::string* testOption, int* lineNumber) const argument
720 string type, name, testOption; local
[all...]
H A DScanner.cpp170 p->testOption = s.substr(optionStart + 2);
H A DSpecification.h71 std::string testOption; member in struct:ParameterEntry
116 /* Fill this object from the type, name, and testOption.
120 const std::string& testOption, int lineNumber, bool isReturn,
424 std::string* name, std::string* testOption, int* lineNumber) const;

Completed in 253 milliseconds