Home | History | Annotate | Download | only in telecom

Lines Matching full:capability

117          * capability allows a merge button to be shown while the conference call is in the foreground
144 * Call supports conference call management. This capability only applies to {@link Conference}
210 // Next CAPABILITY value: 0x00004000
259 * Whether the supplied capabilities supports the specified capability.
262 * @param capability The capability to check capabilities for.
263 * @return Whether the specified capability is supported.
265 public static boolean can(int capabilities, int capability) {
266 return (capabilities & capability) != 0;
270 * Whether the capabilities of this {@code Details} supports the specified capability.
272 * @param capability The capability to check capabilities for.
273 * @return Whether the specified capability is supported.
275 public boolean can(int capability) {
276 return can(mCallCapabilities, capability);
280 * Render a set of capability bits ({@code CAPABILITY_*}) as a human readable string.
282 * @param capabilities A capability bit field.