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

  /libcore/harmony-tests/src/test/java/org/apache/harmony/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/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...]
  /external/llvm/unittests/ADT/
StringMapTest.cpp 23 static const char testKey[];
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";
73 const char* StringMapTest::testKeyFirst = testKey;
74 size_t StringMapTest::testKeyLength = sizeof(testKey) - 1;
75 const std::string StringMapTest::testKeyStr(testKey);
    [all...]

Completed in 167 milliseconds