HomeSort by relevance Sort by last modified time
    Searched defs:testKey (Results 1 - 4 of 4) sorted by null

  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
AbstractSelectionKeyTest.java 32 MockSelectionKey testKey = new MockSelectionKey();
33 assertTrue(testKey.isValid());
40 MockSelectionKey testKey = new MockSelectionKey();
42 testKey.cancel();
47 assertFalse(testKey.isValid());
  /external/llvm/unittests/ADT/
StringMapTest.cpp 22 static const char testKey[];
37 EXPECT_EQ(0u, testMap.count(testKey));
40 EXPECT_TRUE(testMap.find(testKey) == testMap.end());
54 EXPECT_STREQ(testKey, it->first().data());
60 EXPECT_EQ(1u, testMap.count(testKey));
63 EXPECT_TRUE(testMap.find(testKey) == testMap.begin());
70 const char StringMapTest::testKey[] = "key";
72 const char* StringMapTest::testKeyFirst = testKey;
73 size_t StringMapTest::testKeyLength = sizeof(testKey) - 1;
74 const std::string StringMapTest::testKeyStr(testKey);
    [all...]
  /external/chromium/chrome/browser/importer/
nss_decryptor_system_nss.cc 224 PK11SymKey *testKey = NULL;
227 for (testKey = keyList; testKey;
228 testKey = PK11_GetNextSymKey(testKey)) {
229 rv = pk11Decrypt(slot, arena, type, testKey, params,
249 for (testKey = keyList; testKey; testKey = nextKey) {
250 nextKey = PK11_GetNextSymKey(testKey);
    [all...]
  /external/chromium_org/chrome/utility/importer/
nss_decryptor_system_nss.cc 227 PK11SymKey *testKey = NULL;
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...]

Completed in 859 milliseconds