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

  /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) {
AbstractHashedMap.java     [all...]
  /external/llvm/utils/yaml2obj/
yaml2obj.cpp 138 StringRef KeyValue = Key->getValue(Storage);
139 if (KeyValue == "Characteristics") {
146 Twine(KeyValue) + " must be a scalar value");
149 if (KeyValue == "Machine") {
204 } else if (KeyValue == "NumberOfSections") {
209 } else if (KeyValue == "TimeDateStamp") {
214 } else if (KeyValue == "PointerToSymbolTable") {
219 } else if (KeyValue == "NumberOfSymbols") {
224 } else if (KeyValue == "SizeOfOptionalHeader") {
327 StringRef KeyValue = Key->getValue(Storage)
    [all...]
  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_rights_manager.h 120 * \param KeyValue The buffer to save the CEK.
126 int32_t drm_getKey(uint8_t* uid, uint8_t* KeyValue);
155 * \param keyValue The CEK of the DRM content.
162 int32_t drm_updateDcfDataLen(uint8_t* pDcfLastData, uint8_t* keyValue, int32_t* moreBytes);
  /frameworks/base/media/libdrm/mobile1/include/parser/
parser_rel.h 70 uint8_t KeyValue[16]; /**< Decode base64 */
  /external/llvm/include/llvm/ADT/
StringMap.h 315 bool insert(MapEntryTy *KeyValue) {
316 unsigned BucketNo = LookupBucketFor(KeyValue->getKey());
323 Bucket = KeyValue;
381 void remove(MapEntryTy *KeyValue) {
382 RemoveKey(KeyValue);
  /external/llvm/utils/TableGen/
CodeGenMapTable.cpp 245 std::vector<Init*> KeyValue;
250 KeyValue.push_back(CurInstrVal);
255 // their KeyValue in RowInstrMap.
259 RowInstrMap[KeyValue].push_back(CurInstr);
314 std::vector<Init*> KeyValue;
316 // Construct KeyValue using KeyInstr's values for RowFields.
320 KeyValue.push_back(KeyInstrVal);
323 // Get all the instructions that share the same KeyValue as the KeyInstr
327 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue];
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_rights_manager.c 532 int32_t drm_getKey(uint8_t* uid, uint8_t* KeyValue)
537 if (NULL == uid || NULL == KeyValue)
554 memcpy(KeyValue, ro.KeyValue, DRM_KEY_LEN);
670 int32_t drm_updateDcfDataLen(uint8_t* pDcfLastData, uint8_t* keyValue, int32_t* moreBytes)
675 if (NULL == pDcfLastData || NULL == keyValue)
678 AES_set_decrypt_key(keyValue, DRM_KEY_LEN * 8, &key);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 152 * KeyValue is a simple class that stores a pair of strings representing
155 private class KeyValue {
159 public KeyValue(String key, String value) {
226 KeyValue[] pairs;
228 public Update(String eventName, KeyValue[] pairs) {
240 for (KeyValue pair : pairs) {
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_rel.c 545 (uint8_t *)"o-ex:rights\\o-ex:agreement\\o-ex:asset\\ds:KeyInfo\\ds:KeyValue",
548 if (pBuf) { /* Get keyvalue */
558 if (DRM_KEY_LEN != drm_decodeBase64(pRights->KeyValue, keyLen, pValue, &valueLen))
622 memcpy(pRights->KeyValue, pValue, DRM_KEY_LEN);
623 memset(pValue, 0, DRM_KEY_LEN); /* Clean the KeyValue */

Completed in 600 milliseconds