Home
last modified time | relevance | path

Searched refs:RARule (Results 1 – 3 of 3) sorted by relevance

/external/google-breakpad/src/processor/
Dcfi_frame_info_unittest.cc296 MOCK_METHOD1(RARule, void(const string &));
307 EXPECT_CALL(mock_handler, RARule(_)).Times(0); in CFIParserFixture()
363 EXPECT_CALL(mock_handler, RARule("notoriety")).WillOnce(Return()); in TEST_F()
375 EXPECT_CALL(mock_handler, RARule("ra expression")).WillOnce(Return()); in TEST_F()
428 handler.RARule("reg-for-ra"); in TEST_F()
439 handler.RARule("reg-for-ra"); in TEST_F()
Dcfi_frame_info.h152 virtual void RARule(const string &expression) = 0;
187 void RARule(const string &expression);
Dcfi_frame_info.cc168 else if (name_ == ".ra") handler_->RARule(expression_); in Report()
177 void CFIFrameInfoParseHandler::RARule(const string &expression) { in RARule() function in google_breakpad::CFIFrameInfoParseHandler