Home | History | Annotate | Download | only in Target

Lines Matching refs:pKey

55   /// 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, EntryType& pEntry);
68 void record(const KeyType& pKey, EntryType& pEntry1, EntryType& pEntry2);
89 const KeyType& pKey) const {
92 if (mapping->key == &pKey) {
101 EntryType* KeyEntryMap<KeyType, EntryType>::lookUp(const KeyType& pKey) {
104 if (mapping->key == &pKey) {
114 const KeyType& pKey) const {
117 if (mapping->key == &pKey) {
127 const KeyType& pKey) {
130 if (mapping->key == &pKey) {
140 const KeyType& pKey) const {
143 if (mapping->key == &pKey) {
153 const KeyType& pKey) {
156 if (mapping->key == &pKey) {
165 void KeyEntryMap<KeyType, EntryType>::record(const KeyType& pKey,
168 mapping.key = &pKey;
174 void KeyEntryMap<KeyType, EntryType>::record(const KeyType& pKey,
178 mapping.key = &pKey;