Searched defs:testKey (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/utility/importer/
H A Dnss_decryptor_system_nss.cc227 PK11SymKey *testKey = NULL; local
230 for (testKey = keyList; testKey;
231 testKey = PK11_GetNextSymKey(testKey)) {
232 rv = pk11Decrypt(slot, arena, type, testKey, params,
252 for (testKey = keyList; testKey; testKey = nextKey) {
253 nextKey = PK11_GetNextSymKey(testKey);
[all...]
/external/llvm/unittests/ADT/
H A DStringMapTest.cpp23 static const char testKey[]; member in class:__anon26461::StringMapTest
38 EXPECT_EQ(0u, testMap.count(testKey));
41 EXPECT_TRUE(testMap.find(testKey) == testMap.end());
55 EXPECT_STREQ(testKey, it->first().data());
61 EXPECT_EQ(1u, testMap.count(testKey));
64 EXPECT_TRUE(testMap.find(testKey) == testMap.begin());
71 const char StringMapTest::testKey[] = "key"; member in class:__anon26461::StringMapTest
73 const char* StringMapTest::testKeyFirst = testKey;
74 size_t StringMapTest::testKeyLength = sizeof(testKey) - 1;
75 const std::string StringMapTest::testKeyStr(testKey);
[all...]

Completed in 113 milliseconds