Searched defs:pKey (Results 1 - 8 of 8) 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.h33 ChainIteratorBase(HashTableImplTy* pTable, const key_type& pKey) argument
36 m_HashValue = pTable->hash()(pKey);
45 if (bucket.Entry->compare(pKey)) {
289 const typename IteratorBase::key_type& pKey,
291 : IteratorBase(pTable, pKey)
288 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.h43 DataType* find(const KeyType& pKey) { argument
44 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
50 const DataType* find(const KeyType& pKey) const {
51 typename KeyMap::const_iterator dataIter = f_KeyMap.find(pKey);
57 DataType* produce(const KeyType& pKey, bool& pExist) { argument
58 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
65 f_KeyMap.insert(std::make_pair(pKey, data));
70 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) { argument
71 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
78 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/include/mcld/Target/
H A DKeyEntryMap.h57 /// lookUp - look up the entry mapping to pKey
58 const EntryType* lookUp(const KeyType& pKey) const;
59 EntryType* lookUp(const KeyType& pKey);
61 /// lookUpFirstEntry - look up the first entry mapping to pKey
62 const EntryType* lookUpFirstEntry(const KeyType& pKey) const;
63 EntryType* lookUpFirstEntry(const KeyType& pKey);
65 /// lookUpSecondEntry - look up the second entry mapping to pKey
66 const EntryType* lookUpSecondEntry(const KeyType& pKey) const;
67 EntryType* lookUpSecondEntry(const KeyType& pKey);
69 void record(const KeyType& pKey, EntryTyp
107 lookUp(const KeyType& pKey) argument
135 lookUpFirstEntry(const KeyType& pKey) argument
163 lookUpSecondEntry(const KeyType& pKey) argument
177 record(const KeyType& pKey, EntryType& pEntry) argument
187 record(const KeyType& pKey, EntryType& pEntry1, EntryType& pEntry2) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DResolveInfo.cpp245 bool ResolveInfo::compare(const ResolveInfo::key_type& pKey) argument
248 if (length != pKey.size())
250 return (0 == std::memcmp(m_Name, pKey.data(), length));
271 ResolveInfo* ResolveInfo::Create(const ResolveInfo::key_type& pKey) argument
274 malloc(sizeof(ResolveInfo)+pKey.size()+1));
279 std::memcpy(info->m_Name, pKey.data(), pKey.size());
280 info->m_Name[pKey.size()] = '\0';
282 info->m_BitField |= (pKey.size() << ResolveInfo::NAME_LENGTH_OFFSET);
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1898 // pKey != NULL
1900 SLuint32 index, SLuint32 size, SLMetadataInfo *pKey) {
1913 (char*)pKey->data)))) {
1917 pKey->encoding = SL_CHARACTERENCODING_UTF8;
1918 memcpy((char *) pKey->langCountry, "en", 3);
1919 pKey->size = strlen((char*)pKey->data) + 1;
1899 android_audioPlayer_metadata_getKey(CAudioPlayer *ap, SLuint32 index, SLuint32 size, SLMetadataInfo *pKey) argument

Completed in 304 milliseconds