Home
last modified time | relevance | path

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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DPolicy.java77 public int mMaxHtmlTruncationSize; field in Policy
275 if (mMaxHtmlTruncationSize != otherPolicy.mMaxHtmlTruncationSize) return false; in equals()
329 mMaxHtmlTruncationSize = cursor.getInt(CONTENT_MAX_HTML_TRUNCATION_SIZE_COLUMN); in restore()
357 values.put(PolicyColumns.MAX_HTML_TRUNCATION_SIZE, mMaxHtmlTruncationSize); in toContentValues()
491 dest.writeInt(mMaxHtmlTruncationSize); in writeToParcel()
521 mMaxHtmlTruncationSize = in.readInt(); in Policy()
/packages/apps/Email/tests/src/com/android/email/provider/
DPolicyTests.java208 policy.mMaxHtmlTruncationSize = 44444; in testParcel()