Home | History | Annotate | Download | only in strings

Lines Matching refs:Adjustments

18 // string in response to various adjustments one might do to that string
32 typedef std::vector<Adjustment> Adjustments;
34 // Adjusts all offsets in |offsets_for_adjustment| to reflect the adjustments
35 // recorded in |adjustments|.
44 static void AdjustOffsets(const Adjustments& adjustments,
47 // Adjusts the single |offset| to reflect the adjustments recorded in
48 // |adjustments|.
49 static void AdjustOffset(const Adjustments& adjustments,
53 // of the adjustments recorded in |adjustments|. In other words, the offsets
58 static void UnadjustOffsets(const Adjustments& adjustments,
61 // Adjusts the single |offset| to reflect the reverse of the adjustments
62 // recorded in |adjustments|.
63 static void UnadjustOffset(const Adjustments& adjustments,
66 // Combines two sequential sets of adjustments, storing the combined revised
67 // adjustments in |adjustments_on_adjusted_string|. That is, suppose a
69 // adjustments in |first_adjustments|. Then suppose the resulting string is
70 // further altered, with the alterations recorded as adjustments scored in
72 // adjustments being with respect to the intermediate string. This function
73 // combines the two sets of adjustments into one, storing the result in
82 const Adjustments& first_adjustments,
83 Adjustments* adjustments_on_adjusted_string);
87 // |adjustments| parameter that reflects the alterations done to the string.
93 base::OffsetAdjuster::Adjustments* adjustments);
96 base::OffsetAdjuster::Adjustments* adjustments);
97 // As above, but instead internally examines the adjustments and applies them