Searched defs:fromIndex (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java150 public static void setFromIndex(Object record, int fromIndex) { argument
151 ((AccessibilityRecord) record).setFromIndex(fromIndex);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java55 public void setFromIndex(Object record, int fromIndex); argument
211 public void setFromIndex(Object record, int fromIndex) { argument
421 public void setFromIndex(Object record, int fromIndex) { argument
422 AccessibilityRecordCompatIcs.setFromIndex(record, fromIndex);
774 * @param fromIndex The index of the first character or selection
779 public void setFromIndex(int fromIndex) { argument
780 IMPL.setFromIndex(mRecord, fromIndex);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java371 * @param fromIndex The index of the first character or selection
376 public void setFromIndex(int fromIndex) { argument
378 mFromIndex = fromIndex;
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java258 * @param fromIndex The relative index within the window that the view was in, -1 if it wasn't
264 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { argument
265 if (fromIndex == -1) {
H A DStackView.java226 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) { argument
235 if (fromIndex == -1 && toIndex == getNumActiveViews() -1) {
239 } else if (fromIndex == 0 && toIndex == 1) {
261 } else if (fromIndex == 1 && toIndex == 0) {
285 } else if ((fromIndex == 0 || fromIndex == 1) && toIndex > 1) {
292 } else if (fromIndex == -1) {
H A DTextView.java8292 int fromIndex, int removedCount, int addedCount) {
8295 event.setFromIndex(fromIndex);
8291 sendAccessibilityEventTypeViewTextChanged(CharSequence beforeText, int fromIndex, int removedCount, int addedCount) argument
/frameworks/base/core/java/android/view/
H A DView.java7514 int fromIndex, int toIndex) {
7522 event.setFromIndex(fromIndex);
7513 sendViewTextTraversedAtGranularityEvent(int action, int granularity, int fromIndex, int toIndex) argument

Completed in 295 milliseconds