Searched defs:pKey (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntryFactory.h26 entry_type* produce(const key_type& pKey) argument
27 { return HashEntryTy::Create(pKey); }
H A DHashIterator.h36 ChainIteratorBase(HashTableImplTy* pTable, const key_type& pKey) argument
39 m_HashValue = pTable->hash()(pKey);
48 if (bucket.Entry->compare(pKey)) {
292 const typename IteratorBase::key_type& pKey,
294 : IteratorBase(pTable, pKey)
291 HashIterator(typename IteratorBase::hash_table* pTable, const typename IteratorBase::key_type& pKey, int) argument
/frameworks/compile/mclinker/lib/ADT/
H A DStringEntry.cpp20 StringEntry<llvm::StringRef>::StringEntry(const StringEntry::key_type& pKey) argument
/frameworks/compile/mclinker/include/mcld/Support/
H A DUniqueGCFactory.h46 DataType* find(const KeyType& pKey) { argument
47 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
53 const DataType* find(const KeyType& pKey) const {
54 typename KeyMap::const_iterator dataIter = f_KeyMap.find(pKey);
60 DataType* produce(const KeyType& pKey, bool& pExist) { argument
61 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
68 f_KeyMap.insert(std::make_pair(pKey, data));
73 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) { argument
74 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
81 f_KeyMap.insert(std::make_pair(pKey, dat
[all...]
/frameworks/wilhelm/src/itf/
H A DIMetadataExtraction.c72 SLuint32 index, SLuint32 keySize, SLMetadataInfo *pKey)
76 if (NULL == pKey) {
83 index, keySize, pKey);
147 SLuint32 keySize, const void *pKey, SLuint32 keyEncoding,
152 if (NULL == pKey || NULL == pValueLangCountry || (filterMask & ~(SL_METADATA_FILTER_KEY |
159 thiz->mKey = pKey;
71 IMetadataExtraction_GetKey(SLMetadataExtractionItf self, SLuint32 index, SLuint32 keySize, SLMetadataInfo *pKey) argument
146 IMetadataExtraction_AddKeyFilter(SLMetadataExtractionItf self, SLuint32 keySize, const void *pKey, SLuint32 keyEncoding, const SLchar *pValueLangCountry, SLuint32 valueEncoding, SLuint8 filterMask) argument
/frameworks/compile/mclinker/lib/LD/
H A DResolveInfo.cpp234 bool ResolveInfo::compare(const ResolveInfo::key_type& pKey) argument
237 if (length != pKey.size())
239 return (0 == std::memcmp(m_Name, pKey.data(), length));
245 ResolveInfo* ResolveInfo::Create(const ResolveInfo::key_type& pKey) argument
248 malloc(sizeof(ResolveInfo)+pKey.size()+1));
253 std::memcpy(result->m_Name, pKey.data(), pKey.size());
254 result->m_Name[pKey.size()] = '\0';
256 result->m_BitField |= (pKey.size() << ResolveInfo::NAME_LENGTH_OFFSET);
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1811 // pKey != NULL
1813 SLuint32 index, SLuint32 size, SLMetadataInfo *pKey) {
1826 (char*)pKey->data)))) {
1830 pKey->encoding = SL_CHARACTERENCODING_UTF8;
1831 memcpy((char *) pKey->langCountry, "en", 3);
1832 pKey->size = strlen((char*)pKey->data) + 1;
1812 android_audioPlayer_metadata_getKey(CAudioPlayer *ap, SLuint32 index, SLuint32 size, SLMetadataInfo *pKey) argument

Completed in 4781 milliseconds