Home | History | Annotate | Download | only in unicode

Lines Matching full:bounds

37  *  information about bounds of a match. </p>
801 * Queries the transparency of region bounds for this matcher.
802 * See useTransparentBounds for a description of transparent and opaque bounds.
805 * @return TRUE if this matcher is using opaque bounds, false if it is not.
811 * Sets the transparency of region bounds for this matcher.
812 * Invoking this function with an argument of true will set this matcher to use transparent bounds.
813 bounds will be used.
815 * Using transparent bounds, the boundaries of this matcher's region are transparent
819 * With opaque bounds, no text outside of the matcher's region is visible to lookahead,
822 * By default, a matcher uses opaque bounds.
824 * @param b TRUE for transparent bounds; FALSE for opaque bounds
832 * Return true if this matcher is using anchoring bounds.
835 * @return TRUE if this matcher is using anchoring bounds.
841 * Set whether this matcher is using Anchoring Bounds for its region.
842 * With anchoring bounds, pattern anchors such as ^ and $ will match at the start
843 * and end of the region. Without Anchoring Bounds, anchors will only match at
846 * Anchoring Bounds are the default for regions.
848 * @param b TRUE if to enable anchoring bounds; FALSE to disable them.
1166 int32_t fAnchorStart; // Region bounds for anchoring operations (^ or $).
1169 int32_t fLookStart; // Region bounds for look-ahead/behind and
1173 int32_t fActiveStart; // Currently active bounds for matching.
1178 UBool fTransparentBounds; // True if using transparent bounds.
1179 bounds.