HomeSort by relevance Sort by last modified time
    Searched refs:OptInfo (Results 1 - 2 of 2) sorted by null

  /external/deqp/framework/delibs/decpp/
deCommandLine.hpp 262 struct OptInfo;
264 typedef void (*DispatchParseFunc) (const OptInfo* info, const char* src, TypedFieldMap* dst);
267 struct OptInfo
284 OptInfo (void)
299 void addOption (const OptInfo& option);
302 static void dispatchParse (const OptInfo* info, const char* src, TypedFieldMap* dst);
304 vector<OptInfo> m_options;
318 void Parser::dispatchParse (const OptInfo* info, const char* src, TypedFieldMap* dst)
375 OptInfo opt;
deCommandLine.cpp 109 void Parser::addOption (const OptInfo& option)
116 typedef map<string, const OptInfo*> OptMap;
117 typedef set<const OptInfo*> OptSet;
126 for (vector<OptInfo>::const_iterator optIter = m_options.begin(); optIter != m_options.end(); optIter++)
128 const OptInfo& opt = *optIter;
173 const OptInfo* opt = optPos != optMap.end() ? optPos->second : DE_NULL;
247 for (vector<OptInfo>::const_iterator optIter = m_options.begin(); optIter != m_options.end(); ++optIter)
249 const OptInfo& opt = *optIter;

Completed in 4775 milliseconds