Searched refs:fromIndex (Results 1 - 9 of 9) 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/hardware/
H A DCamera.java3855 int endIndex, fromIndex = 1;
3858 endIndex = str.indexOf("),(", fromIndex);
3860 splitInt(str.substring(fromIndex, endIndex), range);
3862 fromIndex = endIndex + 3;
3880 int endIndex, fromIndex = 1;
3883 endIndex = str.indexOf("),(", fromIndex);
3885 splitInt(str.substring(fromIndex, endIndex), array);
3888 fromIndex = endIndex + 3;
/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 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 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 DTextView.java8281 int fromIndex, int removedCount, int addedCount) {
8284 event.setFromIndex(fromIndex);
8280 sendAccessibilityEventTypeViewTextChanged(CharSequence beforeText, int fromIndex, int removedCount, int addedCount) argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DPrintJobConfigActivity.java1932 final int fromIndex;
1936 fromIndex = Integer.parseInt(range.substring(0, dashIndex).trim()) - 1;
1942 range.length()).trim()) - 1 : fromIndex;
1944 fromIndex = toIndex = Integer.parseInt(range) - 1;
1947 PageRange pageRange = new PageRange(Math.min(fromIndex, toIndex),
1948 Math.max(fromIndex, toIndex));
/frameworks/base/core/java/android/view/
H A DView.java7530 int fromIndex, int toIndex) {
7538 event.setFromIndex(fromIndex);
7529 sendViewTextTraversedAtGranularityEvent(int action, int granularity, int fromIndex, int toIndex) argument

Completed in 9150 milliseconds