Home
last modified time | relevance | path

Searched refs:EscapeHashString (Results 1 – 5 of 5) sorted by relevance

/dports/games/openmw/openmw-openmw-0.47.0/components/files/
H A Descape.cpp27 std::string EscapeHashString::processString(const std::string & str) in processString()
40 EscapeHashString::EscapeHashString() : mData() in EscapeHashString() function in Files::EscapeHashString
44EscapeHashString::EscapeHashString(const std::string & str) : mData(EscapeHashString::processStrin… in EscapeHashString() function in Files::EscapeHashString
48EscapeHashString::EscapeHashString(const std::string & str, size_t pos, size_t len) : mData(Escape… in EscapeHashString() function in Files::EscapeHashString
52EscapeHashString::EscapeHashString(const char * s) : mData(EscapeHashString::processString(std::st… in EscapeHashString() function in Files::EscapeHashString
56EscapeHashString::EscapeHashString(const char * s, size_t n) : mData(EscapeHashString::processStri… in EscapeHashString() function in Files::EscapeHashString
60 EscapeHashString::EscapeHashString(size_t n, char c) : mData(n, c) in EscapeHashString() function in Files::EscapeHashString
65EscapeHashString::EscapeHashString(InputIterator first, InputIterator last) : mData(EscapeHashStri… in EscapeHashString() function in Files::EscapeHashString
69 std::string EscapeHashString::toStdString() const in toStdString()
74 std::istream & operator>> (std::istream & is, EscapeHashString & eHS) in operator >>()
[all …]
H A Descape.hpp141 class EscapeHashString class
148 EscapeHashString();
149 EscapeHashString(const std::string & str);
150 EscapeHashString(const std::string & str, size_t pos, size_t len = std::string::npos);
151 EscapeHashString(const char * s);
152 EscapeHashString(const char * s, size_t n);
153 EscapeHashString(size_t n, char c);
155 EscapeHashString(InputIterator first, InputIterator last);
159 friend std::ostream & operator<< (std::ostream & os, const EscapeHashString & eHS);
162 std::istream & operator>> (std::istream & is, EscapeHashString & eHS);
[all …]
/dports/games/openmw/openmw-openmw-0.47.0/apps/openmw/
H A Dmain.cpp63 ("start", bpo::value<Files::EscapeHashString>()->default_value(""), in parseOptions()
84 ("script-run", bpo::value<Files::EscapeHashString>()->default_value(""), in parseOptions()
112 ("encoding", bpo::value<Files::EscapeHashString>()-> in parseOptions()
168 std::string encoding(variables["encoding"].as<Files::EscapeHashString>().toStdString()); in parseOptions()
221 engine.setCell(variables["start"].as<Files::EscapeHashString>().toStdString()); in parseOptions()
230 engine.setStartupScript (variables["script-run"].as<Files::EscapeHashString>().toStdString()); in parseOptions()
/dports/games/openmw/openmw-openmw-0.47.0/components/fallback/
H A Dvalidate.cpp14 std::string temp = Files::EscapeHashString::processString(token); in validate()
/dports/games/openmw/openmw-openmw-0.47.0/apps/opencs/
H A Deditor.cpp94 ("encoding", boost::program_options::value<Files::EscapeHashString>()->default_value("win1252")) in readConfig()
111 mEncodingName = variables["encoding"].as<Files::EscapeHashString>().toStdString(); in readConfig()