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

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/splay_tree_/
traits.hpp 52 template<typename Key,
61 struct tree_traits<Key, Mapped, Cmp_Fn, Node_Update, splay_tree_tag, _Alloc>
62 : public bin_search_tree_traits<Key, Mapped, Cmp_Fn, Node_Update,
64 typename types_traits<Key, Mapped, _Alloc, false>::value_type,
65 typename tree_node_metadata_dispatch<Key, Mapped, Cmp_Fn, Node_Update,
73 template<typename Key,
81 struct tree_traits<Key, null_type, Cmp_Fn, Node_Update,
83 : public bin_search_tree_traits<Key, null_type, Cmp_Fn, Node_Update,
85 typename types_traits<Key, null_type, _Alloc, false>::value_type,
86 typename tree_node_metadata_dispatch<Key, null_type, Cmp_Fn, Node_Update
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/rb_tree_map_/
traits.hpp 52 template<typename Key,
61 struct tree_traits<Key, Mapped, Cmp_Fn, Node_Update, rb_tree_tag,_Alloc>
63 Key,
68 typename types_traits<Key, Mapped, _Alloc, false>::value_type,
69 typename tree_node_metadata_dispatch<Key, Mapped, Cmp_Fn, Node_Update,
77 template<typename Key,
85 struct tree_traits<Key, null_type, Cmp_Fn, Node_Update, rb_tree_tag,_Alloc>
87 Key,
92 typename types_traits<Key, null_type, _Alloc, false>::value_type,
93 typename tree_node_metadata_dispatch<Key, null_type, Cmp_Fn, Node_Update
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/splay_tree_/
traits.hpp 52 template<typename Key,
61 struct tree_traits<Key, Mapped, Cmp_Fn, Node_Update, splay_tree_tag, _Alloc>
62 : public bin_search_tree_traits<Key, Mapped, Cmp_Fn, Node_Update,
64 typename types_traits<Key, Mapped, _Alloc, false>::value_type,
65 typename tree_node_metadata_dispatch<Key, Mapped, Cmp_Fn, Node_Update,
73 template<typename Key,
81 struct tree_traits<Key, null_type, Cmp_Fn, Node_Update,
83 : public bin_search_tree_traits<Key, null_type, Cmp_Fn, Node_Update,
85 typename types_traits<Key, null_type, _Alloc, false>::value_type,
86 typename tree_node_metadata_dispatch<Key, null_type, Cmp_Fn, Node_Update
    [all...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
ProgramCache.h 43 * Key is used to retrieve a Program in the cache.
44 * A Key is generated from a Description.
46 class Key {
74 inline Key() : mKey(0) { }
75 inline Key(const Key& rhs) : mKey(rhs.mKey) { }
77 inline Key& set(key_t mask, key_t value) {
102 friend inline int strictly_order_type(const Key& lhs, const Key& rhs) {
117 // compute a cache Key from a Descriptio
    [all...]
  /external/google-breakpad/src/processor/
static_map_iterator.h 47 template<typename Key, typename Value, typename Compare> class StaticMap;
51 template<typename Key, typename Value, typename Compare>
65 const Key* GetKeyPtr() const;
68 inline const Key GetKey() const { return *GetKeyPtr(); }
87 friend class StaticMap<Key, Value, Compare>;
106 // keys_[i] = key of i_th node.
107 const Key* keys_;
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
DefaultRootKeySetCreator.java 22 import com.google.inject.Key;
28 * Root key set creator that starts with all types that are not Guice internal types or the
35 private static final Key<Logger> loggerKey = Key.get(Logger.class);
37 @Override public Set<Key<?>> getRootKeys(Injector injector) {
38 Set<Key<?>> root = Sets.newHashSet();
39 for (Key<?> key : injector.getBindings().keySet()) {
40 if (key.getTypeLiteral().getRawType().getPackage() != Guice.class.getPackage()
41 && !loggerKey.equals(key)) {
    [all...]
NameFactory.java 19 import com.google.inject.Key;
32 String getClassName(Key<?> key);
34 String getAnnotationName(Key<?> key);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
BaseIndexPool.java 42 public abstract class BaseIndexPool<Key> implements IndexSection<Key> {
43 @Nonnull protected final Map<Key, Integer> internedItems = Maps.newHashMap();
45 @Nonnull @Override public Collection<? extends Map.Entry<? extends Key, Integer>> getItems() {
49 @Override public int getItemIndex(@Nonnull Key key) {
50 Integer index = internedItems.get(key);
52 throw new ExceptionWithContext("Item not found.: %s", getItemString(key));
57 @Nonnull protected String getItemString(@Nonnull Key key) {
    [all...]
BaseOffsetPool.java 42 public abstract class BaseOffsetPool<Key> implements OffsetSection<Key> {
43 @Nonnull protected final Map<Key, Integer> internedItems = Maps.newHashMap();
45 @Nonnull @Override public Collection<? extends Map.Entry<? extends Key, Integer>> getItems() {
49 @Override public int getItemOffset(@Nonnull Key key) {
50 Integer offset = internedItems.get(key);
52 throw new ExceptionWithContext("Item not found.: %s", getItemString(key));
57 @Nonnull protected String getItemString(@Nonnull Key key) {
    [all...]
  /external/bison/src/
muscle-tab.h 29 void muscle_insert (char const *key, char const *value);
30 char const *muscle_find_const (char const *key);
31 char *muscle_find (char const *key);
38 #define MUSCLE_INSERT_BOOL(Key, Value) \
41 MUSCLE_INSERT_INT (Key, v); \
44 #define MUSCLE_INSERT_INT(Key, Value) \
48 muscle_insert (Key, obstack_finish (&muscle_obstack)); \
51 #define MUSCLE_INSERT_LONG_INT(Key, Value) \
55 muscle_insert (Key, obstack_finish (&muscle_obstack)); \
58 #define MUSCLE_INSERT_STRING_RAW(Key, Value)
    [all...]
  /external/guice/core/src/com/google/inject/spi/
ModuleAnnotatedMethodScanner.java 20 import com.google.inject.Key;
41 * Prepares a method for binding. This {@code key} parameter is the key discovered from looking at
42 * the binding annotation and return value of the method. Implementations can modify the key to
43 * instead bind to another key. For example, Multibinder may want to change
44 * {@code @SetProvides String provideFoo()} to bind into a unique Key within the multibinder
48 * key based on the property of the annotation or if any additional preparation is needed for any
52 public abstract <T> Key<T> prepareMethod(Binder binder, Annotation annotation, Key<T> key,
    [all...]
  /external/llvm/include/llvm/ADT/
StringSet.h 32 std::pair<typename base::iterator, bool> insert(StringRef Key) {
33 assert(!Key.empty());
34 return base::insert(std::make_pair(Key, '\0'));
  /external/llvm/lib/Support/
Options.cpp 25 void OptionRegistry::addOption(void *Key, cl::Option *O) {
26 assert(Options.find(Key) == Options.end() &&
27 "Argument with this key already registerd");
28 Options.insert(std::make_pair(Key, O));
StringPool.cpp 25 PooledStringPtr StringPool::intern(StringRef Key) {
26 table_t::iterator I = InternTable.find(Key);
30 entry_t *S = entry_t::Create(Key);
  /libcore/ojluni/src/main/java/java/security/
KeyFactorySpi.java 36 * of a key factory for a particular algorithm.
38 * <P> Key factories are used to convert <I>keys</I> (opaque
39 * cryptographic keys of type <code>Key</code>) into <I>key specifications</I>
40 * (transparent representations of the underlying key material), and vice
43 * <P> Key factories are bi-directional. That is, they allow you to build an
44 * opaque key object from a given key specification (key material), or to
45 * retrieve the underlying key material of a key object in a suitable format
    [all...]
Key.java 29 * The Key interface is the top-level interface for all keys. It
30 * defines the functionality shared by all key objects. All keys
37 * <P>This is the key algorithm for that key. The key algorithm is usually
41 * The name of the algorithm of a key is obtained using the
46 * <P>This is an external encoded form for the key used when a standard
47 * representation of the key is needed outside the Java Virtual Machine,
48 * as when transmitting the key to some other party. The key
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/eq_fn/
eq_by_less.hpp 55 template<typename Key, class Cmp_Fn>
59 operator()(const Key& r_lhs, const Key& r_rhs) const
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/eq_fn/
eq_by_less.hpp 55 template<typename Key, class Cmp_Fn>
59 operator()(const Key& r_lhs, const Key& r_rhs) const
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/eq_fn/
eq_by_less.hpp 55 template<typename Key, class Cmp_Fn>
59 operator()(const Key& r_lhs, const Key& r_rhs) const
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/eq_fn/
eq_by_less.hpp 55 template<typename Key, class Cmp_Fn>
59 operator()(const Key& r_lhs, const Key& r_rhs) const
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_field_inl.h 103 template <typename Key, typename T>
104 typename Map<Key, T>::const_iterator&
105 TypeDefinedMapFieldBase<Key, T>::InternalGetIterator(
107 return *reinterpret_cast<typename Map<Key, T>::const_iterator *>(
111 template <typename Key, typename T>
112 void TypeDefinedMapFieldBase<Key, T>::MapBegin(MapIterator* map_iter) const {
117 template <typename Key, typename T>
118 void TypeDefinedMapFieldBase<Key, T>::MapEnd(MapIterator* map_iter) const {
122 template <typename Key, typename T>
123 bool TypeDefinedMapFieldBase<Key, T>::EqualIterator(const MapIterator& a
255 const Key& key = UnwrapMapKey<Key>(map_key); local
271 const Key& key = UnwrapMapKey<Key>(map_key); local
290 const Key& key = UnwrapMapKey<Key>(map_key); local
    [all...]
  /art/runtime/
runtime_options.cc 32 #define RUNTIME_OPTIONS_KEY(Type, Name, ...) const RuntimeArgumentMap::Key<Type> RuntimeArgumentMap::Name {__VA_ARGS__}; // NOLINT [readability/braces] [4]
  /external/guice/core/test/com/google/inject/
KeyTest.java 57 Key<Object> k = Key.get(Object.class, Foo.class);
58 Key<Integer> ki = k.ofType(Integer.class);
64 Key<List<String>> a = new Key<List<String>>(Foo.class) {};
65 Key<List<String>> b = Key.get(new TypeLiteral<List<String>>() {}, Foo.class);
70 Key<?> actual = Key.get(getClass().getMethod("foo", List.class, List.class)
72 Key<?> expected = Key.get(getClass().getMethod("bar", Provider.class
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
GetCommand.java 28 * @param key the {@link CameraMetadataNative.Key} to look up.
30 * @return the value for a given {@link CameraMetadataNative.Key}.
32 public <T> T getValue(CameraMetadataNative metadata, CameraMetadataNative.Key<T> key);
  /libcore/ojluni/src/main/java/javax/crypto/
ExemptionMechanismSpi.java 28 import java.security.Key;
65 * Initializes this exemption mechanism with a key.
68 * that cannot be derived from the given <code>key</code>, the underlying
74 * @param key the key for this exemption mechanism
76 * @exception InvalidKeyException if the given key is inappropriate for
81 protected abstract void engineInit(Key key)
85 * Initializes this exemption mechanism with a key and a set of algorithm
95 * @param key the key for this exemption mechanis
    [all...]

Completed in 635 milliseconds

1 23 4 5 6 7 8 91011>>