Home
last modified time | relevance | path

Searched refs:source_text (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/utils/unittest/googlemock/include/gmock/
H A Dgmock-spec-builders.h703 ExpectationBase(const char* file, int line, const std::string& source_text);
710 const char* source_text() const { return source_text_.c_str(); } in source_text() function
1178 ss << "Actions ran out in " << source_text() << "...\n" in GetCurrentAction()
1223 *what << "Mock function call matches " << source_text() <<"...\n"; in GetActionForArguments()
1278 const std::string source_text(std::string("EXPECT_CALL(") + obj + ", " + in InternalExpectedAt()
1280 LogWithLocation(internal::kInfo, file, line, source_text + " invoked"); in InternalExpectedAt()
1282 file, line, source_text, matchers_); in InternalExpectedAt()
1627 const std::string& source_text, in AddNewExpectation() argument
1632 new TypedExpectation<F>(this, file, line, source_text, m); in AddNewExpectation()
1782 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/serialize/
H A DTestBreakpointSerialization.py134 source_text = source_desc.GetData()
149 self.trace("Source text for %d is %s."%(i, source_text))
150 …self.assertTrue (source_text == copy_text, "Source and dest breakpoints are not identical: \nsourc…
/llvm-project-15.0.7/llvm/utils/unittest/googlemock/src/
H A Dgmock-spec-builders.cc242 << " actions specified in " << source_text() << "...\n" in CheckActionCountIfNotDone()
522 << untyped_expectation->source_text() << "...\n"; in VerifyAndClearExpectationsLocked()
/llvm-project-15.0.7/compiler-rt/cmake/Modules/
H A DBuiltinTests.cmake8 # [SOURCE source_text]
/llvm-project-15.0.7/lldb/examples/python/
H A Dcrashlog.py138 source_text = strm.GetData()
139 if source_text:
143 … print('%s%s' % (indent_str, join_str.join(source_text.split('\n'))))