Lines Matching defs:mKey
239 nsISupports* mKey;
242 nsISupportsKey(const nsISupportsKey& aKey) : mKey(aKey.mKey) {
246 NS_IF_ADDREF(mKey);
253 mKey = key;
254 NS_IF_ADDREF(mKey);
258 NS_IF_RELEASE(mKey);
262 return NS_PTR_TO_INT32(mKey);
267 return (mKey == ((nsISupportsKey *) aKey)->mKey);
271 return new nsISupportsKey(mKey);
281 PRUint32 mKey;
287 mKey = key;
291 return mKey;
295 return mKey == ((const nsPRUint32Key *) aKey)->mKey;
298 return new nsPRUint32Key(mKey);
300 PRUint32 GetValue() { return mKey; }
308 void* mKey;
311 nsVoidKey(const nsVoidKey& aKey) : mKey(aKey.mKey) {
321 mKey = key;
325 return NS_PTR_TO_INT32(mKey);
330 return (mKey == ((const nsVoidKey *) aKey)->mKey);
334 return new nsVoidKey(mKey);
337 void* GetValue() { return mKey; }