Searched refs:fromIndex (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java159 public static void setFromIndex(Object record, int fromIndex) { argument
160 ((AccessibilityRecord) record).setFromIndex(fromIndex);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java53 public void setFromIndex(Object record, int fromIndex); argument
209 public void setFromIndex(Object record, int fromIndex) { argument
393 public void setFromIndex(Object record, int fromIndex) { argument
394 AccessibilityRecordCompatIcs.setFromIndex(record, fromIndex);
688 * @param fromIndex The index of the first character or selection
693 public void setFromIndex(int fromIndex) { argument
694 IMPL.setFromIndex(mRecord, fromIndex);
/frameworks/base/core/java/android/bluetooth/
H A DAtParser.java172 static private int findChar(char ch, String input, int fromIndex) { argument
173 for (int i = fromIndex; i < input.length(); i++) {
/frameworks/base/core/java/android/hardware/
H A DCamera.java3437 int endIndex, fromIndex = 1;
3440 endIndex = str.indexOf("),(", fromIndex);
3442 splitInt(str.substring(fromIndex, endIndex), range);
3444 fromIndex = endIndex + 3;
3462 int endIndex, fromIndex = 1;
3465 endIndex = str.indexOf("),(", fromIndex);
3467 splitInt(str.substring(fromIndex, endIndex), array);
3470 fromIndex = endIndex + 3;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java309 * @param fromIndex The index of the first character or selection
314 public void setFromIndex(int fromIndex) { argument
316 mFromIndex = fromIndex;
/frameworks/base/core/java/android/widget/
H A DStackView.java223 void transformViewForTransition(int fromIndex, int toIndex, final View view, boolean animate) { argument
232 if (fromIndex == -1 && toIndex == getNumActiveViews() -1) {
236 } else if (fromIndex == 0 && toIndex == 1) {
258 } else if (fromIndex == 1 && toIndex == 0) {
282 } else if ((fromIndex == 0 || fromIndex == 1) && toIndex > 1) {
289 } else if (fromIndex == -1) {
H A DAdapterViewAnimator.java255 * @param fromIndex The relative index within the window that the view was in, -1 if it wasn't
261 void transformViewForTransition(int fromIndex, int toIndex, View view, boolean animate) { argument
262 if (fromIndex == -1) {
H A DTextView.java9053 int fromIndex, int removedCount, int addedCount) {
9056 event.setFromIndex(fromIndex);
9052 sendAccessibilityEventTypeViewTextChanged(CharSequence beforeText, int fromIndex, int removedCount, int addedCount) argument

Completed in 185 milliseconds