Searched defs:KeyValue (Results 1 - 10 of 10) sorted by relevance

/external/smack/src/org/jivesoftware/smack/util/collections/
H A DKeyValue.java30 public interface KeyValue <K,V> { interface
H A DDefaultMapEntry.java46 * Constructs a new entry from the specified KeyValue.
51 public DefaultMapEntry(final KeyValue<K, V> pair) { argument
/external/cmockery/cmockery_0_1_2/src/example/
H A Dkey_value.c20 typedef struct KeyValue { struct
23 } KeyValue; typedef in typeref:struct: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) {
H A Dkey_value_test.c24 typedef struct KeyValue { struct
27 } KeyValue; typedef in typeref:struct: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/chromium_org/third_party/skia/third_party/ktx/
H A Dktx.h98 class KeyValue { class in class:SkKTXFile
100 KeyValue(size_t size) : fDataSz(size) { } function in class:SkKTXFile::KeyValue
112 static KeyValue CreateKeyValue(const char *key, const char *value);
132 SkTArray<KeyValue> fKeyValuePairs;
/external/skia/third_party/ktx/
H A Dktx.h97 class KeyValue { class in class:SkKTXFile
99 KeyValue(size_t size) : fDataSz(size) { } function in class:SkKTXFile::KeyValue
111 static KeyValue CreateKeyValue(const char *key, const char *value);
131 SkTArray<KeyValue> fKeyValuePairs;
/external/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp244 std::vector<Init*> KeyValue; local
249 KeyValue.push_back(CurInstrVal);
254 // their KeyValue in RowInstrMap.
258 RowInstrMap[KeyValue].push_back(CurInstr);
313 std::vector<Init*> KeyValue; local
315 // Construct KeyValue using KeyInstr's values for RowFields.
319 KeyValue.push_back(KeyInstrVal);
322 // Get all the instructions that share the same KeyValue as the KeyInstr
326 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue];
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCookieParser.js51 WebInspector.CookieParser.KeyValue = function(key, value, position)
130 * @return {?WebInspector.CookieParser.KeyValue}
147 var result = new WebInspector.CookieParser.KeyValue(keyValueMatch[1], keyValueMatch[2] && keyValueMatch[2].trim(), this._originalInputLength - this._input.length);
165 * @param {!WebInspector.CookieParser.KeyValue} keyValue
/external/llvm/include/llvm/ADT/
H A DStringMap.h310 bool insert(MapEntryTy *KeyValue) { argument
311 unsigned BucketNo = LookupBucketFor(KeyValue->getKey());
318 Bucket = KeyValue;
380 void remove(MapEntryTy *KeyValue) { argument
381 RemoveKey(KeyValue);
/external/qemu/qapi-auto-generated/
H A Dqapi-types.h1330 typedef struct KeyValue KeyValue; typedef in typeref:struct:KeyValue
1335 KeyValue *value;
2887 struct KeyValue struct
2897 void qapi_free_KeyValue(KeyValue * obj);

Completed in 2543 milliseconds