Home | History | Annotate | Download | only in unicode

Lines Matching full:bounds

931   * Queries the transparency of region bounds for this URegularExpression.
932 * See useTransparentBounds for a description of transparent and opaque bounds.
937 * @return TRUE if this matcher is using opaque bounds, false if it is not.
946 * Sets the transparency of region bounds for this URegularExpression.
947 * Invoking this function with an argument of TRUE will set matches to use transparent bounds.
948 * If the boolean argument is FALSE, then opaque bounds will be used.
950 * Using transparent bounds, the boundaries of the matching region are transparent
954 * With opaque bounds, no text outside of the matching region is visible to lookahead,
957 * By default, opaque bounds are used.
960 * @param b TRUE for transparent bounds; FALSE for opaque bounds
971 * Return true if this URegularExpression is using anchoring bounds.
972 * By default, anchoring region bounds are used.
976 * @return TRUE if this matcher is using anchoring bounds.
985 * Set whether this URegularExpression is using Anchoring Bounds for its region.
986 * With anchoring bounds, pattern anchors such as ^ and $ will match at the start
987 * and end of the region. Without Anchoring Bounds, anchors will only match at
990 * Anchoring Bounds are the default for regions.
993 * @param b TRUE if to enable anchoring bounds; FALSE to disable them.