Home | History | Annotate | Download | only in content

Lines Matching defs:autoVerify

160     private static final String AUTO_VERIFY_STR = "autoVerify";
527 * @param autoVerify The new autoVerify value.
539 public final void setAutoVerify(boolean autoVerify) {
541 if (autoVerify) mVerifyState |= STATE_VERIFY_AUTO;
650 * @return true if the filter has been verified or if autoVerify is false.
1680 String autoVerify = parser.getAttributeValue(null, AUTO_VERIFY_STR);
1681 setAutoVerify(TextUtils.isEmpty(autoVerify) ? false : Boolean.getBoolean(autoVerify));
1884 sb.append(prefix); sb.append("AutoVerify="); sb.append(getAutoVerify());