Searched refs:space_delete (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/core/include/opencv2/core/ |
D | utility.hpp | 679 T get(const String& name, bool space_delete = true) const in get() argument 682 getByName(name, space_delete, ParamType<T>::type, (void*)&val); in get() 711 T get(int index, bool space_delete = true) const in get() argument 714 getByIndex(index, space_delete, ParamType<T>::type, (void*)&val); in get() 752 void getByName(const String& name, bool space_delete, int type, void* dst) const; 753 void getByIndex(int index, bool space_delete, int type, void* dst) const; 871 template<> inline std::string CommandLineParser::get<std::string>(int index, bool space_delete) con… in get() 873 return get<String>(index, space_delete); in get() 875 …inline std::string CommandLineParser::get<std::string>(const String& name, bool space_delete) const in get() 877 return get<String>(name, space_delete); in get()
|
/external/opencv3/modules/core/src/ |
D | command_line_parser.cpp | 92 void CommandLineParser::getByName(const String& name, bool space_delete, int type, void* dst) const in getByName() argument 103 if (space_delete) in getByName() 121 void CommandLineParser::getByIndex(int index, bool space_delete, int type, void* dst) const in getByIndex() argument 130 if (space_delete == true) v = impl->cat_string(v); in getByIndex()
|