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

/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntryFactory.h25 entry_type* produce(const key_type& pKey) { argument
26 return HashEntryTy::Create(pKey);
H A DHashIterator.h31 ChainIteratorBase(HashTableImplTy* pTable, const key_type& pKey) argument
33 m_HashValue = pTable->hash()(pKey);
41 if (bucket.Entry->compare(pKey)) {
271 const typename IteratorBase::key_type& pKey,
273 : IteratorBase(pTable, pKey) {}
270 HashIterator(typename IteratorBase::hash_table* pTable, const typename IteratorBase::key_type& pKey, int) argument
/frameworks/compile/mclinker/lib/ADT/
H A DStringEntry.cpp19 StringEntry<llvm::StringRef>::StringEntry(const StringEntry::key_type& pKey) { argument
/frameworks/compile/mclinker/include/mcld/Support/
H A DUniqueGCFactory.h40 DataType* find(const KeyType& pKey) { argument
41 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
47 const DataType* find(const KeyType& pKey) const {
48 typename KeyMap::const_iterator dataIter = f_KeyMap.find(pKey);
54 DataType* produce(const KeyType& pKey, bool& pExist) { argument
55 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
62 f_KeyMap.insert(std::make_pair(pKey, data));
67 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) { argument
68 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
75 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.h55 /// lookUp - look up the entry mapping to pKey
56 const EntryType* lookUp(const KeyType& pKey) const;
57 EntryType* lookUp(const KeyType& pKey);
59 /// lookUpFirstEntry - look up the first entry mapping to pKey
60 const EntryType* lookUpFirstEntry(const KeyType& pKey) const;
61 EntryType* lookUpFirstEntry(const KeyType& pKey);
63 /// lookUpSecondEntry - look up the second entry mapping to pKey
64 const EntryType* lookUpSecondEntry(const KeyType& pKey) const;
65 EntryType* lookUpSecondEntry(const KeyType& pKey);
67 void record(const KeyType& pKey, EntryTyp
101 lookUp(const KeyType& pKey) argument
126 lookUpFirstEntry( const KeyType& pKey) argument
152 lookUpSecondEntry( const KeyType& pKey) argument
165 record(const KeyType& pKey, EntryType& pEntry) argument
174 record(const KeyType& pKey, EntryType& pEntry1, EntryType& pEntry2) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DResolveInfo.cpp213 bool ResolveInfo::compare(const ResolveInfo::key_type& pKey) { argument
215 if (length != pKey.size())
217 return (std::memcmp(m_Name, pKey.data(), length) == 0);
236 ResolveInfo* ResolveInfo::Create(const ResolveInfo::key_type& pKey) { argument
238 static_cast<ResolveInfo*>(malloc(sizeof(ResolveInfo) + pKey.size() + 1));
243 std::memcpy(info->m_Name, pKey.data(), pKey.size());
244 info->m_Name[pKey.size()] = '\0';
246 info->m_BitField |= (pKey.size() << ResolveInfo::NAME_LENGTH_OFFSET);
/frameworks/rs/cpu_ref/
H A DrsCpuExecutable.cpp629 char *pKey = new char[strlen(key)+1]; local
630 strcpy(pKey, key);
631 pragmaKeys[i] = pKey;
636 //ALOGE("Pragma %zu: Key: '%s' Value: '%s'", i, pKey, pValue);
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1899 // pKey != NULL
1901 SLuint32 index, SLuint32 size, SLMetadataInfo *pKey) {
1914 (char*)pKey->data)))) {
1918 pKey->encoding = SL_CHARACTERENCODING_UTF8;
1919 memcpy((char *) pKey->langCountry, "en", 3);
1920 pKey->size = strlen((char*)pKey->data) + 1;
1900 android_audioPlayer_metadata_getKey(CAudioPlayer *ap, SLuint32 index, SLuint32 size, SLMetadataInfo *pKey) argument

Completed in 170 milliseconds