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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DPolicy.java74 public boolean mDontAllowHtml; field in class:Policy
272 if (mDontAllowHtml != otherPolicy.mDontAllowHtml) return false;
326 mDontAllowHtml = cursor.getInt(CONTENT_DONT_ALLOW_HTML_COLUMN) == 1;
354 values.put(PolicyColumns.DONT_ALLOW_HTML, mDontAllowHtml);
488 dest.writeInt(mDontAllowHtml ? 1 : 0);
518 mDontAllowHtml = in.readInt() == 1;

Completed in 46 milliseconds