reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Passes/PluginsTest.cpp
   30   const std::vector<testing::internal::string> &Argvs =
unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp
   22   const std::vector<testing::internal::string> &Argvs =
utils/unittest/googlemock/include/gmock/gmock-matchers.h
  191   internal::string str() const { return ss_.str(); }
  342     : public internal::MatcherBase<const internal::string&> {
  346   explicit Matcher(const MatcherInterface<const internal::string&>* impl)
  351   Matcher(const internal::string& s);  // NOLINT
  359     : public internal::MatcherBase<internal::string> {
  363   explicit Matcher(const MatcherInterface<internal::string>* impl)
  368   Matcher(const internal::string& s);  // NOLINT
  680 inline void PrintIfNotEmpty(const internal::string& explanation,
  690 inline bool IsReadableTypeName(const string& type_name) {
  694           type_name.find_first_of("<(") == string::npos);
 1340     return s != NULL && MatchAndExplain(internal::string(s), listener);
 1350     const internal::string& s2(s);
 1358     UniversalPrinter<internal::string>::Print(regex_->pattern(), os);
 1364     UniversalPrinter<internal::string>::Print(regex_->pattern(), os);
 1531     const internal::string s1 = listener1.str();
 1532     const internal::string s2 = listener2.str();
 1703     const internal::string s1 = listener1.str();
 1704     const internal::string s2 = listener2.str();
 2128   static string GetToName() {
 2961     const internal::string explanation = inner_listener.str();
 3066   void ExplainSuccess(const internal::string& first_explanation,
 3067                       const internal::string& second_explanation,
 3177     ::std::vector<internal::string> explanations(count());
 3236         const internal::string& s = explanations[i];
 3289   string DebugString() const;
 3333       const ::std::vector<string>& element_printouts,
 3389     ::std::vector<string> element_printouts;
 3420                               ::std::vector<string>* element_printouts,
 3640 GTEST_API_ string FormatMatcherDescription(bool negation,
 3972 inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
 3973     StrEq(const internal::string& str) {
 3979 inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
 3980     StrNe(const internal::string& str) {
 3986 inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
 3987     StrCaseEq(const internal::string& str) {
 3993 inline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
 3994     StrCaseNe(const internal::string& str) {
 4001 inline PolymorphicMatcher<internal::HasSubstrMatcher<internal::string> >
 4002     HasSubstr(const internal::string& substring) {
 4008 inline PolymorphicMatcher<internal::StartsWithMatcher<internal::string> >
 4009     StartsWith(const internal::string& prefix) {
 4015 inline PolymorphicMatcher<internal::EndsWithMatcher<internal::string> >
 4016     EndsWith(const internal::string& suffix) {
 4028     const internal::string& regex) {
 4039     const internal::string& regex) {
utils/unittest/googlemock/include/gmock/gmock-spec-builders.h
  154       const string& call_description) const = 0;
  268   void AssertSpecProperty(bool property, const string& failure_message) const {
  273   void ExpectSpecProperty(bool property, const string& failure_message) const {
  695   ExpectationBase(const char* file, int line, const string& source_text);
  743   void AssertSpecProperty(bool property, const string& failure_message) const {
  748   void ExpectSpecProperty(bool property, const string& failure_message) const {
  850   const string source_text_;  // The EXPECT_CALL(...) source text.
  886                    const char* a_file, int a_line, const string& a_source_text,
 1245                                 const string& message);
 1272     const string source_text(string("EXPECT_CALL(") + obj + ", " + call + ")");
 1394       const string& call_description) {
 1434       const string& call_description) {
 1501                               const string& call_description) const {
 1507     const string message = call_description +
 1527       const string& call_description) const {
 1606       const string& source_text,
 1801 void ReportUninterestingCall(CallReaction reaction, const string& msg);
utils/unittest/googlemock/include/gmock/internal/gmock-internal-utils.h
   58 GTEST_API_ string ConvertIdentifierNameToWords(const char* id_name);
  272                              const string& message) = 0;
  284                    const string& msg) {
  297                    const string& msg) {
  334                     const string& message,
utils/unittest/googlemock/src/gmock-cardinalities.cc
   95 inline internal::string FormatTimes(int n) {
utils/unittest/googlemock/src/gmock-internal-utils.cc
   54 GTEST_API_ string ConvertIdentifierNameToWords(const char* id_name) {
   55   string result;
   79                              const string& message) {
  132                     const string& message,
utils/unittest/googlemock/src/gmock-matchers.cc
   48 Matcher<const internal::string&>::Matcher(const internal::string& s) {
   59 Matcher<internal::string>::Matcher(const internal::string& s) { *this = Eq(s); }
  105 GTEST_API_ string JoinAsTuple(const Strings& fields) {
  112       string result = "(" + fields[0];
  127 GTEST_API_ string FormatMatcherDescription(bool negation,
  130   string result = ConvertIdentifierNameToWords(matcher_name);
  382 string MatchMatrix::DebugString() const {
  445     const ::std::vector<string>& element_printouts,
utils/unittest/googlemock/src/gmock-spec-builders.cc
   61                                 const string& message) {
   70                                  const string& a_source_text)
  247 void ReportUninterestingCall(CallReaction reaction, const string& msg) {
utils/unittest/googletest/include/gtest/gtest-printers.h
  155     const ::testing::internal::string short_str = value.ShortDebugString();
  156     const ::testing::internal::string pretty_str =
  860 typedef ::std::vector<string> Strings;
utils/unittest/googletest/include/gtest/gtest-spi.h
  101                        const string& substr);
  106   const string substr_;
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
  505   CodeLocation(const string& a_file, int a_line) : file(a_file), line(a_line) {}
  507   string file;
utils/unittest/googletest/include/gtest/internal/gtest-param-util.h
  475   virtual const string& GetTestCaseName() const = 0;
  514   virtual const string& GetTestCaseName() const { return test_case_name_; }
  532   int AddTestCaseInstantiation(const string& instantiation_name,
  553         const string& instantiation_name = gen_it->name;
  559         string test_case_name;
  612     const string test_case_base_name;
  613     const string test_base_name;
  654   const string test_case_name_;
utils/unittest/googletest/include/gtest/internal/gtest-port.h
 1440 GTEST_API_ const ::std::vector<testing::internal::string>& GetArgvs();
 1444 const ::std::vector<testing::internal::string>& GetInjectableArgvs();
 1445 void SetInjectableArgvs(const ::std::vector<testing::internal::string>*
utils/unittest/googletest/src/gtest-death-test.cc
  886   static ::std::vector<testing::internal::string>
  888     ::std::vector<testing::internal::string> args = GetInjectableArgvs();
utils/unittest/googletest/src/gtest-internal-inl.h
  429   virtual string CurrentStackTrace(int max_depth, int skip_count) = 0;
  449   virtual string CurrentStackTrace(int max_depth, int skip_count);
 1043     virtual void Send(const string& message) = 0;
 1049     void SendLn(const string& message) {
 1057     SocketWriter(const string& host, const string& port)
 1057     SocketWriter(const string& host, const string& port)
 1068     virtual void Send(const string& message) {
 1094     const string host_name_;
 1095     const string port_num_;
 1101   static string UrlEncode(const char* str);
 1103   StreamingListener(const string& host, const string& port)
 1103   StreamingListener(const string& host, const string& port)
 1165   void SendLn(const string& message) { socket_writer_->SendLn(message); }
 1171   string FormatBool(bool value) { return value ? "1" : "0"; }
utils/unittest/googletest/src/gtest-port.cc
   96 T ReadProcFileField(const string& filename, int field) {
  110   const string filename =
 1105 static const ::std::vector<testing::internal::string>* g_injected_test_argvs =
 1108 void SetInjectableArgvs(const ::std::vector<testing::internal::string>* argvs) {
 1114 const ::std::vector<testing::internal::string>& GetInjectableArgvs() {
utils/unittest/googletest/src/gtest.cc
  387 ::std::vector<testing::internal::string> g_argvs;
  389 const ::std::vector<testing::internal::string>& GetArgvs() {
  636                               const string& substr) {
  673     const string& substr)
 3656       const string location = internal::FormatCompilerIndependentFileLocation(
 3658       const string summary = location + "\n" + part.summary();
 3662       const string detail = location + "\n" + part.message();
 3761 string StreamingListener::UrlEncode(const char* str) {
 3762   string result;
 3850 string OsStackTraceGetter::CurrentStackTrace(int /*max_depth*/,