Home | History | Annotate | Download | only in accessibility

Lines Matching refs:property

683      * Gets the value of a boolean property.
685 * @param property The property.
688 private boolean getBooleanProperty(int property) {
689 return (mBooleanProperties & property) == property;
693 * Sets a boolean property.
695 * @param property The property.
698 private void setBooleanProperty(int property, boolean value) {
700 mBooleanProperties |= property;
702 mBooleanProperties &= ~property;