Home
last modified time | relevance | path

Searched refs:mDontAllowHtml (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DPolicy.java70 public boolean mDontAllowHtml; field in Policy
259 if (mDontAllowHtml != otherPolicy.mDontAllowHtml) return false; in equals()
313 mDontAllowHtml = cursor.getInt(CONTENT_DONT_ALLOW_HTML_COLUMN) == 1; in restore()
341 values.put(PolicyColumns.DONT_ALLOW_HTML, mDontAllowHtml); in toContentValues()
473 dest.writeInt(mDontAllowHtml ? 1 : 0); in writeToParcel()
503 mDontAllowHtml = in.readInt() == 1; in Policy()
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
DProvisionParser.java195 policy.mDontAllowHtml = true; in parseProvisionDocWbxml()