HomeSort by relevance Sort by last modified time
    Searched defs:testOption (Results 1 - 3 of 3) sorted by null

  /frameworks/rs/api/
Specification.cpp 140 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.find(')')
    [all...]
Specification.h 71 std::string testOption;
116 /* Fill this object from the type, name, and testOption.
120 const std::string& testOption, int lineNumber, bool isReturn,
422 std::string* name, std::string* testOption, int* lineNumber) const;
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/
BasicHtmlSanitizerTest.java     [all...]

Completed in 202 milliseconds