Lines Matching defs:end

386  * during the recursion. At the end of the measure pass, every view has stored
398 * that at the end of the measure pass, all parents accept all of their
2113 * Align to the end of the paragraph, e.g. ALIGN_OPPOSITE.
2135 * Align to the end of the view, which is ALIGN_RIGHT if the view’s resolved
2310 * Flag indicating that start/end padding has been resolved into left/right padding
2319 * Flag indicating that the start/end drawables has been resolved into left/right ones.
4096 // Cache start/end user padding as we cannot fully resolve padding here (we dont have yet
4123 // defined and start / end padding are defined (e.g. in Frameworks resources), then we use
4124 // start / end and resolve them as left / right (layout direction is not taken into account).
4137 // Jelly Bean MR1 and after case: if start/end defined, they will override any left/right
8172 final int end = (arguments != null) ? arguments.getInt(
8176 || getAccessibilitySelectionEnd() != end)
8177 && (start == end)) {
8178 setAccessibilitySelection(start, end);
8265 public void setAccessibilitySelection(int start, int end) {
8266 if (start == end && end == mAccessibilityCursorPosition) {
8269 if (start >= 0 && start == end && end <= getIterableTextForAccessibility().length()) {
8480 // Clean up after nested scrolls if this is the end of a gesture;
13308 // If start / end padding are defined, they will be resolved (hence overriding) to
13310 // If start / end padding are not defined, use the left / right ones.
13392 * The super method should be called at the end of the overriden method to ensure
14171 renderNode.end(canvas);
15465 renderNode.end(canvas);
16551 * @param end the end padding in pixels
16554 public void setPaddingRelative(int start, int top, int end, int bottom) {
16558 mUserPaddingEnd = end;
16564 mUserPaddingLeftInitial = end;
16566 internalSetPadding(end, top, start, bottom);
16571 mUserPaddingRightInitial = end;
16572 internalSetPadding(start, top, end, bottom);
16640 * Returns the end padding of this view depending on its resolved layout direction.
16644 * @return the end padding in pixels
17451 * end of the current layout pass (and then layout will run again) or after the current
17914 * Invoked by a parent ViewGroup to notify the end of the animation
18707 * {@link #stopNestedScroll()} to indicate the end of the nested scroll.</p>