HomeSort by relevance Sort by last modified time
    Searched refs:key1 (Results 51 - 75 of 232) sorted by null

1 23 4 5 6 7 8 910

  /external/chromium_org/chrome/browser/extensions/api/identity/
identity_mint_queue_unittest.cc 87 scoped_ptr<ExtensionTokenKey> key1(ExtensionIdToKey("ext_id_1"));
94 queue.RequestStart(type, *key1, &request1);
97 queue.RequestComplete(type, *key1, &request1);
  /external/chromium_org/ui/base/ime/chromeos/
character_composer_unittest.cc 58 // Expects |expected_character| is composed after sequence [key1, key2].
60 uint key1,
64 ExpectKeyFiltered(character_composer, key1, flags);
69 // Expects |expected_character| is composed after sequence [key1, key2, key3].
71 uint key1,
76 ExpectKeyFiltered(character_composer, key1, flags);
81 // Expects |expected_character| is composed after sequence [key1, key2, key3,
84 uint key1,
90 ExpectKeyFiltered(character_composer, key1, flags);
95 // Expects |expected_character| is composed after sequence [key1, key2, key3
    [all...]
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_unittest.cc 158 const std::string key1("key1");
171 success = leveldb->Put(key1, &put_value);
188 EXPECT_EQ(comparator.Compare(it->Key(), key1), 0);
206 const std::string key1("key1");
226 transaction->Put(key1, &put_value);
237 success = leveldb->Get(key1, &got_value, &found);
  /external/chromium_org/third_party/bintrees/bintrees/
ctrees.pxd 17 int ct_compare(object key1, object key2)
ctrees.h 27 int ct_compare(PyObject *key1, PyObject *key2);
  /external/chromium_org/v8/src/
transitions.cc 67 static bool InsertionPointFound(Name* key1, Name* key2) {
68 return key1->Hash() > key2->Hash();
  /external/icu4c/common/
unistr_case.cpp 169 uhash_compareCaselessUnicodeString(const UElement key1, const UElement key2) {
171 const UnicodeString *str1 = (const UnicodeString*) key1.pointer;
uhash.h 575 * @param key1 The string for comparison
577 * @return true if key1 and key2 are equal, return false otherwise.
580 uhash_compareUChars(const UHashTok key1, const UHashTok key2);
585 * @param key1 The string for comparison
587 * @return true if key1 and key2 are equal, return false otherwise.
590 uhash_compareChars(const UHashTok key1, const UHashTok key2);
595 * @param key1 The string for comparison
597 * @return true if key1 and key2 are equal, return false otherwise.
600 uhash_compareIChars(const UHashTok key1, const UHashTok key2);
637 * @param key1 The integer for compariso
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl1Test.java 494 Key key1 = ((KeyStore.PrivateKeyEntry) en).getPrivateKey(); local
495 if (!key.getAlgorithm().equals(key1.getAlgorithm()) ||
496 !key.getFormat().equals(key1.getFormat())) {
500 byte[] enc1 = key1.getEncoded();
511 key1 = privKey;
512 if (!key.getAlgorithm().equals(key1.getAlgorithm()) ||
513 !key.getFormat().equals(key1.getFormat())) {
517 enc1 = key1.getEncoded();
604 Key key1; local
606 key1 = kss[i].getKey(aliases[j], pwd)
795 Key key1 = kss[i].getKey(aliases[j], pwd); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
perfect.c 111 * Check if key1 and key2 are the same.
115 key *key1,
122 if ((key1->len_k == key2->len_k) &&
123 !memcmp(key1->name_k, key2->name_k, (size_t)key1->len_k))
126 (int)key1->len_k, key1->name_k);
131 if (key1->hash_k == key2->hash_k)
133 fprintf(stderr, "perfect.c: Duplicate keys! %.8lx\n", key1->hash_k);
139 key1->a_k, key1->b_k)
361 key *key1; local
    [all...]
  /external/v8/src/
profile-generator.h 81 INLINE(static bool StringsMatch(void* key1, void* key2)) {
82 return strcmp(reinterpret_cast<char*>(key1),
335 INLINE(static bool UidsMatch(void* key1, void* key2)) {
336 return key1 == key2;
730 static bool AddressesMatch(void* key1, void* key2) {
731 return key1 == key2;
771 INLINE(static bool HeapSnapshotsMatch(void* key1, void* key2)) {
772 return key1 == key2;
841 static bool HeapThingsMatch(HeapThing key1, HeapThing key2) {
842 return key1 == key2
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESKeySpecTest.java 177 byte[] key1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
179 ks = new DESKeySpec(key1, 2);
186 + "as specified in a constructor.", key1, res);
188 System.arraycopy(key1, 2, exp, 0, 8);
  /external/chromium_org/chrome/browser/extensions/api/declarative/
rules_registry_service_unittest.cc 123 const RulesRegistry::WebViewKey key1(kEmbedderProcessID1, kWebViewInstanceID);
127 new TestRulesRegistry(content::BrowserThread::UI, "ui", key1);
137 base::Bind(&InsertRule, registry_service.GetRulesRegistry(key1, "ui"),
146 EXPECT_FALSE(registry_service.GetRulesRegistry(key1, "ui").get());
  /external/chromium_org/components/nacl/browser/
nacl_validation_cache_unittest.cc 11 const char key1[65] = member in namespace:nacl
24 // The compiler chokes if std::string(key1) is passed directly as an arg.
25 std::string key(key1);
188 Pickle pickle(key1, strlen(key1));
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des_old.c 233 int _ossl_old_des_read_2passwords(_ossl_old_des_cblock *key1, _ossl_old_des_cblock *key2,
236 return DES_read_2passwords(key1, key2, prompt, verify);
258 void _ossl_old_des_string_to_2keys(char *str,_ossl_old_des_cblock *key1,_ossl_old_des_cblock *key2)
260 DES_string_to_2keys(str, key1, key2);
  /external/chromium_org/third_party/openssl/openssl/crypto/modes/
xts128.c 86 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
129 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
164 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
175 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
  /external/clang/test/CodeGen/
2008-03-24-BitField-And-Alloca.c 60 unsigned int key1; member in struct:_Key::__anon16410
  /external/icu4c/i18n/
scriptset.cpp 245 uhash_equalsScriptSet(const UElement key1, const UElement key2) {
246 icu::ScriptSet *s1 = static_cast<icu::ScriptSet *>(key1.pointer);
252 uhash_compareScriptSet(UElement key0, UElement key1) {
254 icu::ScriptSet *s1 = static_cast<icu::ScriptSet *>(key1.pointer);
scriptset.h 68 uhash_compareScriptSet(const UElement key1, const UElement key2);
  /external/openssl/crypto/des/
des_old.c 233 int _ossl_old_des_read_2passwords(_ossl_old_des_cblock *key1, _ossl_old_des_cblock *key2,
236 return DES_read_2passwords(key1, key2, prompt, verify);
258 void _ossl_old_des_string_to_2keys(char *str,_ossl_old_des_cblock *key1,_ossl_old_des_cblock *key2)
260 DES_string_to_2keys(str, key1, key2);
  /external/openssl/crypto/modes/
xts128.c 86 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
129 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
164 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
175 (*ctx->block1)(scratch.c,scratch.c,ctx->key1);
  /external/srec/portable/include/
phashtable.h 79 * Signature for comparison functions. Must return 0 if key1 is identical to
85 typedef int (*PHashCompFunction)(const LCHAR *key1, const LCHAR *key2);
  /frameworks/base/core/java/android/content/pm/
ContainerEncryptionParams.java 233 private static final boolean isSecretKeyEqual(SecretKey key1, SecretKey key2) {
234 final String keyFormat = key1.getFormat();
242 if (key1.getEncoded() != key2.getEncoded()) {
250 if (!Arrays.equals(key1.getEncoded(), key2.getEncoded())) {
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
DESKeySpecTest.java 177 byte[] key1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
179 ks = new DESKeySpec(key1, 2);
186 + "as specified in a constructor.", key1, res);
188 System.arraycopy(key1, 2, exp, 0, 8);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mailbox.py 102 key1 = self._box.add(self._template % 1)
109 self.assertEqual(self._box.get_string(key1), self._template % 1)
117 self.assertEqual(self._box.get_string(key1), self._template % 1)
118 method(key1)
120 self.assertRaises(KeyError, lambda: self._box[key1])
121 self.assertRaises(KeyError, lambda: method(key1))
126 key1 = self._box.add(self._template % 1)
145 key1 = self._box.add(self._template % 1)
146 msg = self._box.get(key1)
164 key1 = self._box.add(_sample_message
    [all...]

Completed in 2058 milliseconds

1 23 4 5 6 7 8 910