Home | History | Annotate | Download | only in fuzz

Lines Matching defs:module

8 static std::string getInitializer(const std::string module)
10 if ((module == "BGR") || (module == "CMYK") || (module =="RGB") || (module =="YUV"))
12 if (module == "PNG")
56 std::string module=(*it).module();
57 if (std::find(excludeList.begin(), excludeList.end(), module) != excludeList.end())
60 if ((*it).name() == module)
61 std::cout << ((*it).isWritable() ? "+" : "-") << module << ":" << getInitializer(module) << std::endl;
62 else if (std::find(allowedNames.begin(), allowedNames.end(), module) != allowedNames.end())
63 std::cout << ((*it).isWritable() ? "+" : "-") << (*it).name() << ":" << getInitializer(module) << std::endl;