Lines Matching refs:str

291 operator+(const char * str, const Simstr & S)  in operator +()  argument
294 ret.push_front(str); in operator +()
299 operator+(const Simstr & S, const char * str) in operator +() argument
302 ret.push_back(str); in operator +()
325 operator==(const Simstr & S, const char * str) in operator ==() argument
327 return strcmp(S,str) == 0; in operator ==()
331 operator!=(const Simstr & S, const char * str) in operator !=() argument
333 return strcmp(S,str) != 0; in operator !=()
337 operator<(const Simstr & S, const char * str) in operator <() argument
339 return strcmp(S,str) < 0; in operator <()
343 operator>(const Simstr & S, const char * str) in operator >() argument
345 return strcmp(S,str) > 0; in operator >()
349 operator<=(const Simstr & S, const char * str) in operator <=() argument
351 return strcmp(S,str) <= 0; in operator <=()
355 operator>=(const Simstr & S, const char * str) in operator >=() argument
357 return strcmp(S,str) >= 0; in operator >=()
361 operator==(const char * str, const Simstr & S) in operator ==() argument
363 return strcmp(str,S) == 0; in operator ==()
367 operator!=(const char * str, const Simstr & S) in operator !=() argument
369 return strcmp(str,S) != 0; in operator !=()
373 operator<(const char * str, const Simstr & S) in operator <() argument
375 return strcmp(str,S) < 0; in operator <()
379 operator>(const char * str, const Simstr & S) in operator >() argument
381 return strcmp(str,S) > 0; in operator >()
385 operator<=(const char * str, const Simstr & S) in operator <=() argument
387 return strcmp(str,S) <= 0; in operator <=()
391 operator>=(const char * str, const Simstr & S) in operator >=() argument
393 return strcmp(str,S) >= 0; in operator >=()