Home | History | Annotate | Download | only in debug

Lines Matching refs:kTestKey

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");
83 base::debug::ClearCrashKey(kTestKey);
91 base::debug::SetCrashKeyValue(kTestKey, "five four three two");
92 base::debug::SetCrashKeyValue(kTestKey, "allays");
99 base::debug::ClearCrashKey(kTestKey);
107 const char* kTestKey = "test-key";
108 base::debug::CrashKey keys[] = { { kTestKey, 255 } };
112 EXPECT_TRUE(key_values_->end() == key_values_->find(kTestKey));
114 base::debug::ScopedCrashKey scoped_crash_key(kTestKey, "value");
115 EXPECT_EQ("value", (*key_values_)[kTestKey]);
119 EXPECT_TRUE(key_values_->end() == key_values_->find(kTestKey));