Lines Matching refs:std

69 // On Linux, in addition to ::std::string, Google also makes use of
70 // class ::string, which has the same interface as ::std::string, but
74 // ::string is available AND is a distinct type to ::std::string, or
77 // If ::std::string and ::string are the same class on your platform
165 const std::string& message);
313 ::std::ostream& (*basic_manipulator)(::std::ostream& stream)) {
322 message_.reset(new ::std::string);
335 internal::scoped_ptr< ::std::string> message_;
422 static void RecordProperty(const std::string& key, const std::string& value);
423 static void RecordProperty(const std::string& key, int value);
491 TestProperty(const std::string& a_key, const std::string& a_value) :
506 void SetValue(const std::string& new_value) {
512 std::string key_;
514 std::string value_;
574 const std::vector<TestPartResult>& test_part_results() const {
579 const std::vector<TestProperty>& test_properties() const {
592 void RecordProperty(const std::string& xml_element,
598 static bool ValidateTestProperty(const std::string& xml_element,
621 std::vector<TestPartResult> test_part_results_;
623 std::vector<TestProperty> test_properties_;
728 TestInfo(const std::string& test_case_name,
729 const std::string& name,
751 const std::string test_case_name_; // Test case name
752 const std::string name_; // Test name
755 const internal::scoped_ptr<const ::std::string> type_param_;
758 const internal::scoped_ptr<const ::std::string> value_param_;
856 std::vector<TestInfo*>& test_info_list() { return test_info_list_; }
859 const std::vector<TestInfo*>& test_info_list() const {
931 std::string name_;
934 const internal::scoped_ptr<const ::std::string> type_param_;
937 std::vector<TestInfo*> test_info_list_;
941 std::vector<int> test_indices_;
1271 const std::string& message,
1272 const std::string& os_stack_trace)
1280 void RecordProperty(const std::string& key, const std::string& value);
1301 const std::string& message);
1607 const ::std::string& needle, const ::std::string& haystack);
1610 const ::std::string& needle, const ::std::string& haystack);
1615 const ::std::wstring& needle, const ::std::wstring& haystack);
1618 const ::std::wstring& needle, const ::std::wstring& haystack);
1641 ::std::stringstream lhs_ss;
1642 lhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
1645 ::std::stringstream rhs_ss;
1646 rhs_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
1696 std::string const message;
2109 // The message argument can be anything streamable to std::ostream.