Lines Matching refs:string
25 std::string capitalize(const std::string& source);
28 void trimSpaces(std::string* s);
31 std::string stringReplace(std::string s, std::string match, std::string rep);
34 bool charRemoved(char c, std::string* s);
37 std::string stripHtml(const std::string& html);
40 std::string hashString(const std::string& s);
43 bool testAndSet(const std::string& flag, std::set<std::string>* set);
53 std::string makeAttributeTag(const std::string& userAttribute,
54 … const std::string& additionalAttribute, unsigned int deprecatedApiLevel,
55 const std::string& deprecatedMessage);
62 std::string mIndent; // The correct spacing at the beginning of each line.
67 bool start(const std::string& directory, const std::string& name);
74 void comment(const std::string& s); // Outputs a multiline comment.
97 *this << mIndent << std::string(2 * TAB_SIZE, ' '); in indentPlus()