Lines Matching full:bounds
523 * Queries the transparency of region bounds for this URegularExpression.
524 * See useTransparentBounds for a description of transparent and opaque bounds.
529 * @return TRUE if this matcher is using opaque bounds, false if it is not.
538 * Sets the transparency of region bounds for this URegularExpression.
539 * Invoking this function with an argument of TRUE will set matches to use transparent bounds.
540 * If the boolean argument is FALSE, then opaque bounds will be used.
542 * Using transparent bounds, the boundaries of the matching region are transparent
546 * With opaque bounds, no text outside of the matching region is visible to lookahead,
549 * By default, opaque bounds are used.
552 * @param b TRUE for transparent bounds; FALSE for opaque bounds
563 * Return true if this URegularExpression is using anchoring bounds.
564 * By default, anchoring region bounds are used.
568 * @return TRUE if this matcher is using anchoring bounds.
577 * Set whether this URegularExpression is using Anchoring Bounds for its region.
578 * With anchoring bounds, pattern anchors such as ^ and $ will match at the start
579 * and end of the region. Without Anchoring Bounds, anchors will only match at
582 * Anchoring Bounds are the default for regions.
585 * @param b TRUE if to enable anchoring bounds; FALSE to disable them.