Home | History | Annotate | Download | only in telecom

Lines Matching full:capability

111      * capability allows a merge button to be shown while the conference is in the foreground
138 * Connection supports conference management. This capability only applies to
252 // Next CAPABILITY value: 0x00400000
274 * {@link PhoneAccount} supports the capability {@link PhoneAccount#CAPABILITY_CALL_SUBJECT}.
282 * Whether the given capabilities support the specified capability.
284 * @param capabilities A capability bit field.
285 * @param capability The capability to check capabilities for.
286 * @return Whether the specified capability is supported.
289 public static boolean can(int capabilities, int capability) {
290 return (capabilities & capability) != 0;
294 * Whether the capabilities of this {@code Connection} supports the specified capability.
296 * @param capability The capability to check capabilities for.
297 * @return Whether the specified capability is supported.
300 public boolean can(int capability) {
301 return can(mConnectionCapabilities, capability);
305 * Removes the specified capability from the set of capabilities of this {@code Connection}.
307 * @param capability The capability to remove from the set.
310 public void removeCapability(int capability) {
311 mConnectionCapabilities &= ~capability;
315 * Adds the specified capability to the set of capabilities of this {@code Connection}.
317 * @param capability The capability to add to the set.
320 public void addCapability(int capability) {
321 mConnectionCapabilities |= capability;