Lines Matching refs:_sStr
29 public static String doubleQuote(String _sStr) in doubleQuote() argument
31 return "\"" + _sStr + "\""; in doubleQuote()
34 public static String singleQuote(String _sStr) in singleQuote() argument
36 return "'" + _sStr + "'"; in singleQuote()
80 public static String doubleQuoteIfNeed(String _sStr) in doubleQuoteIfNeed() argument
82 if (_sStr.startsWith("\"") && _sStr.endsWith("\"")) in doubleQuoteIfNeed()
85 return _sStr; in doubleQuoteIfNeed()
87 if (_sStr.indexOf(" ") == -1) in doubleQuoteIfNeed()
90 return _sStr; in doubleQuoteIfNeed()
92 if (_sStr.indexOf("%") != -1) in doubleQuoteIfNeed()
94 return singleQuote(_sStr); in doubleQuoteIfNeed()
97 return doubleQuote(_sStr); in doubleQuoteIfNeed()