Searched refs:mStorage (Results 1 – 2 of 2) sorted by relevance
33 IStorage mStorage = null; field in XmlStorageEditorInput41 mStorage = storage; in XmlStorageEditorInput()49 return mStorage; in getStorage()57 return mStorage != null; in exists()73 return mStorage.getName(); in getName()89 return mStorage.getFullPath() != null ? mStorage.getFullPath().toString() : mStorage in getToolTipText()107 return mStorage.equals(((XmlStorageEditorInput) obj).mStorage); in equals()117 return mStorage.hashCode(); in hashCode()
634 private char[] mStorage; field in AdtPlugin.PushbackReader654 mStorage = new char[max + 1]; in PushbackReader()662 char c = mStorage[mHead]; in read()663 mHead = (mHead + 1) % mStorage.length; in read()671 mStorage[mHead] = (char) c; in read()672 mHead = mTail = (mHead + 1) % mStorage.length; in read()683 if (n >= mStorage.length) { in backup()686 assert n < mStorage.length; in backup()689 mHead += mStorage.length; in backup()