Home | History | Annotate | Download | only in provider

Lines Matching refs:VALUE

200          * A boolean value indicates if the account is active.
206 * A boolean value indicates if the account is locked (not editable)
212 * A boolean value to indicate whether this account is kept signed in.
218 * A boolean value indiciating the last login state for this account
476 * Rejected: a boolean value indicating whether a subscription request from
1434 * The contact ID this chat belongs to. The value is a long.
1440 * The GTalk JID resource. The value is a string.
1473 * A value from 0-9 indicating which quick-switch chat screen slot this
1475 * then the value is -1.
1522 String VALUE = "value";
1570 * The value of the setting
1573 String VALUE = "value";
1592 * A boolean value to indicate whether this provider should show the offline contacts
1653 String[] projection = { NAME, VALUE };
1669 * Get the string value of setting which is specified by provider id and the setting name.
1674 * @return The value of the setting if the setting exist, otherwise return null.
1688 * Get the boolean value of setting which is specified by provider id and the setting name.
1693 * @return The value of the setting if the setting exist, otherwise return false.
1706 Cursor c = cr.query(ContentUris.withAppendedId(CONTENT_URI, providerId), new String[]{VALUE}, NAME + "=?",
1718 * Save a long value of setting in the table providerSetting.
1723 * @param value The value of the setting.
1726 long value) {
1730 v.put(VALUE, value);
1736 * Save a boolean value of setting in the table providerSetting.
1741 * @param value The value of the setting.
1744 boolean value) {
1748 v.put(VALUE, Boolean.toString(value));
1754 * Save a string value of setting in the table providerSetting.
1759 * @param value The value of the setting.
1762 String value) {
1766 v.put(VALUE, value);
1889 new String[] {NAME,VALUE},
2085 * Convenience function for retrieving a single settings value
2089 * @param def Value to return if the setting is not defined.
2090 * @return The setting's current value, or 'def' if it is not defined.
2094 return values != null ? values.getAsBoolean(VALUE) : def;
2098 * Convenience function for retrieving a single settings value
2102 * @param def The value to return if the setting is not defined.
2103 * @return The setting's current value or 'def' if it is not defined.
2107 return values != null ? values.getAsString(VALUE) : def;
2111 * Convenience function for retrieving a single settings value
2115 * @param def The value to return if the setting is not defined.
2116 * @return The setting's current value or 'def' if it is not defined.
2120 return values != null ? values.getAsInteger(VALUE) : def;
2124 * Convenience function for retrieving a single settings value
2128 * @param def The value to return if the setting is not defined.
2129 * @return The setting's current value or 'def' if it is not defined.
2133 return values != null ? values.getAsLong(VALUE) : def;