HomeSort by relevance Sort by last modified time
    Searched refs:KeyValue (Results 1 - 22 of 22) sorted by null

  /external/cmockery/cmockery_0_1_2/src/example/
key_value.c 20 typedef struct KeyValue {
23 } KeyValue;
25 static KeyValue *key_values = NULL;
28 void set_key_values(KeyValue * const new_key_values,
34 // Compare two key members of KeyValue structures.
36 return (int)((KeyValue*)a)->key - (int)((KeyValue*)b)->key;
40 KeyValue* find_item_by_value(const char * const value) {
key_value_test.c 24 typedef struct KeyValue {
27 } KeyValue;
29 void set_key_values(KeyValue * const new_key_values,
31 extern KeyValue* find_item_by_value(const char * const value);
34 static KeyValue key_values[] = {
42 KeyValue * const items = (KeyValue*)test_malloc(sizeof(key_values));
56 KeyValue * const found = find_item_by_value(key_values[i].value);
65 KeyValue * const kv = *state;
  /external/smack/src/org/jivesoftware/smack/util/collections/
KeyValue.java 30 public interface KeyValue <K,V> {
AbstractKeyValue.java 21 * Abstract pair class to assist with creating KeyValue and MapEntry implementations.
30 public abstract class AbstractKeyValue <K,V> implements KeyValue<K, V> {
DefaultMapEntry.java 46 * Constructs a new entry from the specified KeyValue.
51 public DefaultMapEntry(final KeyValue<K, V> pair) {