Home | History | Annotate | Download | only in hardware

Lines Matching defs:mValue

46     private final T mValue;
75 mValue = value;
94 mValue = (T) new String(bytes, DEFAULT_CHARSET);
96 mValue = (T) in.readBlob();
98 mValue = (T) in.readValue(valueClass.getClassLoader());
126 Class<?> valueClass = mValue == null ? null : mValue.getClass();
131 dest.writeBlob(((String)mValue).getBytes(DEFAULT_CHARSET));
133 dest.writeBlob((byte[]) mValue);
135 dest.writeValue(mValue);
156 return mValue;
166 ", mValue=" + mValue +