Searched defs:hashmap (Results 1 - 4 of 4) sorted by relevance

/external/e2fsprogs/contrib/android/
H A Dhashmap.h7 struct hashmap { struct
22 struct hashmap *hashmap_create(uint32_t(*hash_fct)(const void*),
24 void hashmap_add(struct hashmap *h, void *data, const void *key);
25 void *hashmap_lookup(struct hashmap *h, const void *key);
26 void *hashmap_iter_in_order(struct hashmap *h, struct hashmap_entry **it);
27 void hashmap_del(struct hashmap *h, struct hashmap_entry *e);
28 void hashmap_free(struct hashmap *h);
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMap.java94 * this may be an ordinary Ruby hashmap or another Map instance with identical
98 * value_type). The contents of this initial hashmap or Map instance are
378 protected RubyMap mergeIntoSelf(final ThreadContext context, IRubyObject hashmap) { argument
379 if (hashmap instanceof RubyHash) {
380 ((RubyHash) hashmap).visitAll(new RubyHash.Visitor() {
386 } else if (hashmap instanceof RubyMap) {
387 RubyMap other = (RubyMap) hashmap;
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dmap.c206 * this may be an ordinary Ruby hashmap or another Map instance with identical
210 * value_type). The contents of this initial hashmap or Map instance are
221 // hashmap).
397 // Ruby hashmap's :[]= method also returns the inserted value.
705 VALUE Map_merge(VALUE _self, VALUE hashmap) { argument
707 return Map_merge_into_self(dupped, hashmap);
716 VALUE Map_merge_into_self(VALUE _self, VALUE hashmap) { argument
717 if (TYPE(hashmap) == T_HASH) {
718 rb_hash_foreach(hashmap, merge_into_self_callback, _self);
719 } else if (RB_TYPE_P(hashmap, T_DAT
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 199 milliseconds