OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kTestKey
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/base/debug/
crash_logging_unittest.cc
47
const char*
kTestKey
= "test-key";
48
base::debug::CrashKey keys[] = { {
kTestKey
, 255 } };
51
base::debug::SetCrashKeyValue(
kTestKey
, "value");
52
EXPECT_EQ("value", (*key_values_)[
kTestKey
]);
54
base::debug::ClearCrashKey(
kTestKey
);
55
EXPECT_TRUE(key_values_->end() == key_values_->find(
kTestKey
));
59
const char*
kTestKey
= "chunky";
63
base::debug::CrashKey keys[] = { {
kTestKey
, 15 } };
69
base::debug::SetCrashKeyValue(
kTestKey
, "foo");
76
base::debug::SetCrashKeyValue(
kTestKey
, "five four three two")
[
all
...]
/external/chromium_org/remoting/protocol/
message_decoder_unittest.cc
19
static const unsigned int
kTestKey
= 142;
38
msg.mutable_key_event()->set_usb_keycode(
kTestKey
+ i);
102
EXPECT_EQ(
kTestKey
+ index, message->key_event().usb_keycode());
/external/chromium_org/content/browser/renderer_host/p2p/
socket_host_unittest.cc
16
static unsigned char
kTestKey
[] = "12345678901234567890";
323
kTestKey
,
kTestKey
+ sizeof(
kTestKey
));
354
kTestKey
,
kTestKey
+ sizeof(
kTestKey
));
Completed in 294 milliseconds