Home
last modified time | relevance | path

Searched refs:kTestKey (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/base/debug/
Dcrash_logging_unittest.cc47 const char* kTestKey = "test-key"; in TEST_F() local
48 base::debug::CrashKey keys[] = { { kTestKey, 255 } }; in TEST_F()
51 base::debug::SetCrashKeyValue(kTestKey, "value"); in TEST_F()
52 EXPECT_EQ("value", (*key_values_)[kTestKey]); in TEST_F()
54 base::debug::ClearCrashKey(kTestKey); in TEST_F()
55 EXPECT_TRUE(key_values_->end() == key_values_->find(kTestKey)); in TEST_F()
59 const char* kTestKey = "chunky"; in TEST_F() local
63 base::debug::CrashKey keys[] = { { kTestKey, 15 } }; in TEST_F()
69 base::debug::SetCrashKeyValue(kTestKey, "foo"); in TEST_F()
76 base::debug::SetCrashKeyValue(kTestKey, "five four three two"); in TEST_F()
[all …]
/external/chromium_org/remoting/protocol/
Dmessage_decoder_unittest.cc19 static const unsigned int kTestKey = 142; variable
38 msg.mutable_key_event()->set_usb_keycode(kTestKey + i); in PrepareData()
102 EXPECT_EQ(kTestKey + index, message->key_event().usb_keycode()); in SimulateReadSequence()