HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 626 - 650 of 1431) sorted by null

<<21222324252627282930>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 74 template<typename Key, typename Mapped, typename Node_And_It_Traits, \
78 PB_DS_PAT_TRIE_NAME<Key, Mapped, Node_And_It_Traits, _Alloc>
81 types_traits<Key, Mapped, _Alloc, false>
85 debug_map_base<Key, eq_by_less<Key, std::less<Key> >, \
86 typename _Alloc::template rebind<Key>::other::const_reference>
99 template<typename Key, typename Mapped, typename Node_And_It_Traits,
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pat_trie_/
pat_trie_.hpp 74 template<typename Key, typename Mapped, typename Node_And_It_Traits, \
78 PB_DS_PAT_TRIE_NAME<Key, Mapped, Node_And_It_Traits, _Alloc>
81 types_traits<Key, Mapped, _Alloc, false>
85 debug_map_base<Key, eq_by_less<Key, std::less<Key> >, \
86 typename _Alloc::template rebind<Key>::other::const_reference>
99 template<typename Key, typename Mapped, typename Node_And_It_Traits,
  /system/keymaster/
operation.cpp 21 #include "key.h"
88 bool OperationFactory::GetAndValidatePadding(const AuthorizationSet& begin_params, const Key& key,
99 // If it's a public key operation, all padding modes are authorized.
101 // Otherwise the key needs to authorize the specific mode.
102 !key.authorizations().Contains(TAG_PADDING, *padding) &&
103 !key.authorizations().Contains(TAG_PADDING_OLD, *padding)) {
104 LOG_E("Padding mode %d was specified, but not authorized by key", *padding);
113 bool OperationFactory::GetAndValidateDigest(const AuthorizationSet& begin_params, const Key& key,
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/
x86-64-unwind.d 17 Key to Flags:
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
alias-ilp32.d 18 Key to Flags:
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
byte-1.d 21 Key to Flags:
loc-1.d 22 Key to Flags:
loc-2.d 22 Key to Flags:
loc-5.d 21 Key to Flags:
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
pr12718.d 15 Key to Flags:
pr12921.d 17 Key to Flags:
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
bspec1.d 23 Key to Flags:
undef-3.d 20 Key to Flags:
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
pr12718.d 15 Key to Flags:
pr12921.d 17 Key to Flags:
  /cts/tests/tests/keystore/src/android/keystore/cts/
CipherTest.java 29 import java.security.Key;
256 ImportedKey key = importDefaultKatKey( local
264 cipher.init(Cipher.ENCRYPT_MODE, key.getKeystoreBackedEncryptionKey());
269 Key decryptionKey = key.getKeystoreBackedDecryptionKey();
296 Key key = importDefaultKatKey( local
302 cipher.init(Cipher.ENCRYPT_MODE, key);
305 cipher.init(Cipher.WRAP_MODE, key);
318 for (ImportedKey key : importKatKeys
767 ImportedKey key = importDefaultKatKey(algorithm, local
1450 Key key = local
1459 Key key = local
1471 Key key = local
1479 Key key = local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraMetadataTest.java 125 fail("A null key should throw NPE");
131 fail("A section name only should not be a valid key");
137 fail("A valid section with an invalid tag name should not be a valid key");
143 fail("A namespace name only should not be a valid key");
148 CameraMetadataNative.getTag("this.key.is.definitely.invalid");
149 fail("A completely fake key name should not be valid");
336 Key<T> key = new Key<T>(keyStr, typeToken); local
337 assertNull(mMetadata.get(key));
375 Key<T> key = new Key<T>(keyName, typeReference); local
904 Key<ReprocessFormatsMap> key = new Key<ReprocessFormatsMap>( local
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
incremental.h 100 Incremental_input_entry(Stringpool::Key filename_key, unsigned int arg_serial,
144 // Get the stringpool key for the input filename.
145 Stringpool::Key
233 // Key of the filename string in the section stringtable.
234 Stringpool::Key filename_key_;
306 Incremental_script_entry(Stringpool::Key filename_key,
353 Incremental_object_entry(Stringpool::Key filename_key, Object* obj,
376 add_input_section(unsigned int shndx, Stringpool::Key name_key, off_t sh_size)
385 Stringpool::Key
389 // Return the stringpool key of the Nth input section
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 120 const Type *Key = CGT.getContext().getTagDeclType(RD).getTypePtr();
123 if (CGT.isRecordLayoutComplete(Key)) return true;
126 if (CGT.isRecordBeingLaidOut(Key))
651 const Type *Key = Context.getTagDeclType(RD).getTypePtr();
653 llvm::StructType *&Entry = RecordDeclTypes[Key];
675 bool InsertResult = RecordsBeingLaidOut.insert(Key).second;
690 CGRecordLayouts[Key] = Layout;
693 bool EraseResult = RecordsBeingLaidOut.erase(Key); (void)EraseResult;
714 const Type *Key = Context.getTagDeclType(RD).getTypePtr();
716 const CGRecordLayout *Layout = CGRecordLayouts.lookup(Key);
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraph.java 159 private final Key.Factory keyFactory;
165 Key.Factory keyFactory,
263 private <B extends ContributionBinding> ImmutableSetMultimap<Key, B> explicitBindingsByKey(
266 ImmutableSetMultimap.Builder<Key, B> builder = ImmutableSetMultimap.builder();
268 builder.put(binding.key(), binding);
276 final ImmutableSetMultimap<Key, ContributionBinding> explicitBindings;
286 ImmutableSetMultimap<Key, ContributionBinding> explicitBindings) {
313 getExplicitBindings(bindingKey.key());
315 // If the key is Map<K, V>, get its implicit binding keys, which are either
317 Optional<Key> mapProviderKey = keyFactory.implicitMapProviderKeyFrom(bindingKey.key())
    [all...]
  /external/skia/src/gpu/text/
GrAtlasTextBlob.h 51 struct Key {
52 Key() {
53 sk_bzero(this, sizeof(Key));
65 bool operator==(const Key& other) const {
66 return 0 == memcmp(this, &other, sizeof(Key));
70 void setupKey(const GrAtlasTextBlob::Key& key,
73 fKey = key;
74 if (key.fHasBlur) {
77 if (key.fStyle != SkPaint::kFill_Style)
266 const Key& key() const { return fKey; } function in class:GrAtlasTextBlob
    [all...]
  /external/vixl/src/vixl/
invalset.h 50 // - A key must be available to represent invalid elements.
51 // - Elements with an invalid key must compare higher or equal to any other
58 // - Elements are (generally) inserted in order (sorted according to their key).
59 // - A key is available to mark elements as invalid (deleted).
64 // marked with the 'invalid' key. Other methods of the container take care of
70 // their key. The structure only reclaims memory when safe to do so, if the
113 // This returns the key of the minimum element in the set.
117 static KeyType Key(const ElementType& element);
118 static void SetKey(ElementType* element, KeyType key);
146 // Delete the elements that have an invalid key. The complexity is linea
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/helpers/
CameraErrorCollector.java 621 * Check if the key value is not null and return the value.
623 * @param characteristics The {@link CameraCharacteristics} to get the key from.
624 * @param key The {@link CameraCharacteristics} key to be checked.
626 * @return The value of the key.
629 CameraCharacteristics.Key<T> key) {
631 T value = characteristics.get(key);
633 addMessage("Key " + key.getName() + " shouldn't be null")
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraErrorCollector.java 633 * Check if the key value is not null and return the value.
635 * @param characteristics The {@link CameraCharacteristics} to get the key from.
636 * @param key The {@link CameraCharacteristics} key to be checked.
638 * @return The value of the key.
641 CameraCharacteristics.Key<T> key) {
643 T value = characteristics.get(key);
645 addMessage("Key " + key.getName() + " shouldn't be null")
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
Key.java 50 * Class for describing the position and characteristics of a single key in the keyboard.
52 public class Key implements Comparable<Key> {
54 * The key code (unicode or custom code) that this key generates.
60 /** Hint label to display on the key in conjunction with the label */
72 // Start of key text ratio enum values
78 // End of key text ratio mask enum values
82 // The bit to calculate the ratio of key label width against key width. If autoXScale bit is o
    [all...]

Completed in 534 milliseconds

<<21222324252627282930>>