Home
last modified time | relevance | path

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

/external/google-breakpad/src/testing/include/gmock/
Dgmock-spec-builders.h685 ExpectationBase(const char* file, int line, const string& source_text);
692 const char* source_text() const { return source_text_.c_str(); } in source_text() function
1160 ss << "Actions ran out in " << source_text() << "...\n" in GetCurrentAction()
1208 *what << "Mock function call matches " << source_text() <<"...\n"; in GetActionForArguments()
1262 const string source_text(string("EXPECT_CALL(") + obj + ", " + call + ")"); in InternalExpectedAt()
1263 LogWithLocation(internal::kInfo, file, line, source_text + " invoked"); in InternalExpectedAt()
1265 file, line, source_text, matchers_); in InternalExpectedAt()
1531 const string& source_text, in AddNewExpectation() argument
1536 new TypedExpectation<F>(this, file, line, source_text, m); in AddNewExpectation()
1689 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked()
/external/googletest/googlemock/include/gmock/
Dgmock-spec-builders.h693 ExpectationBase(const char* file, int line, const std::string& source_text);
700 const char* source_text() const { return source_text_.c_str(); } in source_text() function
1170 ss << "Actions ran out in " << source_text() << "...\n" in GetCurrentAction()
1218 *what << "Mock function call matches " << source_text() <<"...\n"; in GetActionForArguments()
1272 const std::string source_text(std::string("EXPECT_CALL(") + obj + ", " + in InternalExpectedAt()
1274 LogWithLocation(internal::kInfo, file, line, source_text + " invoked"); in InternalExpectedAt()
1276 file, line, source_text, matchers_); in InternalExpectedAt()
1606 const std::string& source_text, in AddNewExpectation() argument
1611 new TypedExpectation<F>(this, file, line, source_text, m); in AddNewExpectation()
1764 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked()
/external/v8/testing/gmock/include/gmock/
Dgmock-spec-builders.h693 ExpectationBase(const char* file, int line, const string& source_text);
700 const char* source_text() const { return source_text_.c_str(); } in source_text() function
1168 ss << "Actions ran out in " << source_text() << "...\n" in GetCurrentAction()
1216 *what << "Mock function call matches " << source_text() <<"...\n"; in GetActionForArguments()
1270 const string source_text(string("EXPECT_CALL(") + obj + ", " + call + ")"); in InternalExpectedAt()
1271 LogWithLocation(internal::kInfo, file, line, source_text + " invoked"); in InternalExpectedAt()
1273 file, line, source_text, matchers_); in InternalExpectedAt()
1604 const string& source_text, in AddNewExpectation() argument
1609 new TypedExpectation<F>(this, file, line, source_text, m); in AddNewExpectation()
1762 *why << expectation->source_text() << "...\n"; in PrintTriedExpectationsLocked()
/external/tensorflow/tensorflow/python/debug/lib/
Dsource_utils.py87 source_text = f.read()
88 source_lines = source_text.split("\n")
/external/v8/testing/gmock/src/
Dgmock-spec-builders.cc210 << " actions specified in " << source_text() << "...\n" in CheckActionCountIfNotDone()
484 << untyped_expectation->source_text() << "...\n"; in VerifyAndClearExpectationsLocked()
/external/google-breakpad/src/testing/src/
Dgmock-spec-builders.cc210 << " actions specified in " << source_text() << "...\n" in CheckActionCountIfNotDone()
474 << untyped_expectation->source_text() << "...\n"; in VerifyAndClearExpectationsLocked()
/external/googletest/googlemock/src/
Dgmock-spec-builders.cc209 << " actions specified in " << source_text() << "...\n" in CheckActionCountIfNotDone()
483 << untyped_expectation->source_text() << "...\n"; in VerifyAndClearExpectationsLocked()
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dtoken.rb166 def source_text method
Drecognizers.rb475 unless text = token.text || ( token.source_text rescue nil )
/external/v8/src/
Dd8.cc689 Local<String> source_text = ReadFile(isolate, file_name.c_str()); in FetchModuleTree() local
690 if (source_text.IsEmpty()) { in FetchModuleTree()
699 ScriptCompiler::Source source(source_text, origin); in FetchModuleTree()