Searched defs:index (Results 1 - 25 of 258) sorted by relevance

1234567891011

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
H A DFilterView.java22 public void computeIcon(int index, BitmapCaller caller); argument
H A DParameterSet.java22 Parameter getFilterParameter(int index); argument
H A DParameterIconStyle.java30 public void getIcon(int index, BitmapCaller caller) { argument
31 caller.available(mBitmaps[index]);
H A DParameterStyles.java34 void getIcon(int index, BitmapCaller caller); argument
36 String getStyleTitle(int index, Context context); argument
/packages/apps/Mms/src/org/w3c/dom/smil/
H A DTimeList.java20 * index, starting from 0.
24 * Returns the <code>index</code> th item in the collection. If
25 * <code>index</code> is greater than or equal to the number of times in
27 * @param index Index into the collection.
28 * @return The time at the <code>index</code> th position in the
30 * index.
32 public Time item(int index); argument
/packages/apps/Browser/src/com/android/browser/view/
H A DEventRedirectingFrameLayout.java43 public void setTargetChild(int index) { argument
44 if (index >= 0 && index < getChildCount()) {
45 mTargetChild = index;
/packages/apps/Camera/src/com/android/camera/
H A DPreferenceGroup.java40 public void removePreference(int index) { argument
41 list.remove(index);
44 public CameraPreference get(int index) { argument
45 return list.get(index);
/packages/apps/Camera2/src/com/android/camera/
H A DPreferenceGroup.java40 public void removePreference(int index) { argument
41 list.remove(index);
44 public CameraPreference get(int index) { argument
45 return list.get(index);
H A DVideoController.java31 public int onZoomChanged(int index); argument
/packages/apps/Gallery/tests/src/com/android/camera/gallery/
H A DImageListUberUnitTests.java9 private MockImage getImageAt(ImageListUber uber, int index) { argument
10 return (MockImage) uber.getImageAt(index);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DClustering.java24 public abstract ArrayList<Path> getCluster(int index); argument
25 public abstract String getClusterName(int index); argument
26 public MediaItem getClusterCover(int index) { argument
H A DTagClustering.java47 public void consume(int index, MediaItem item) {
87 public ArrayList<Path> getCluster(int index) { argument
88 return mClusters.get(index);
92 public String getClusterName(int index) { argument
93 return mNames[index];
H A DComboAlbumSet.java43 public MediaSet getSubMediaSet(int index) { argument
46 if (index < size) {
47 return set.getSubMediaSet(index);
49 index -= size;
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DWidgetSource.java26 public Bitmap getImage(int index); argument
27 public Uri getContentUri(int index); argument
/packages/apps/Launcher3/src/com/android/launcher3/
H A DAppsCustomizeCellLayout.java34 public void removeViewOnPageAt(int index) { argument
35 removeViewAt(index);
/packages/apps/LegacyCamera/src/com/android/camera/
H A DPreferenceGroup.java40 public void removePreference(int index) { argument
41 list.remove(index);
44 public CameraPreference get(int index) { argument
45 return list.get(index);
/packages/apps/Mms/src/com/android/mms/dom/smil/
H A DTimeListImpl.java43 public Time item(int index) { argument
46 time = mTimes.get(index);
/packages/apps/Settings/src/com/android/settings/accessibility/
H A DEdgeTypePreference.java55 protected void onBindListItem(View view, int index) { argument
62 final int value = getValueAt(index);
66 final CharSequence title = getTitleAt(index);
H A DPresetPreference.java51 protected void onBindListItem(View view, int index) { argument
53 final int value = getValueAt(index);
59 final CharSequence title = getTitleAt(index);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DHexDump.java50 * @param index initial index into the byte array
54 * @throws ArrayIndexOutOfBoundsException if the index is
60 OutputStream stream, int index)
64 if ((index < 0) || (index >= data.length)) {
66 "illegal index: " + index + " into array of length "
72 long display_offset = offset + index;
75 for (int j = index;
59 dump(byte[] data, long offset, OutputStream stream, int index) argument
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
H A DDomainList.java53 * specified index.
54 * @throws IndexOutOfBoundsException If index is &lt; 0 or &gt;= size().
56 public String get(int index) { argument
57 if (0 > index || size() <= index)
59 return domains.get(index);
H A DMailboxList.java54 public Mailbox get(int index) { argument
55 if (0 > index || size() <= index)
57 return (Mailbox)mailboxes.get(index);
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DFrameLayoutWithOverlay.java43 public void addView(View child, int index, ViewGroup.LayoutParams params) { argument
44 super.addView(child, index, params);
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
H A DCityObj.java46 public CityObj(SharedPreferences prefs, int index) { argument
47 mCityName = prefs.getString(CITY_NAME + index, null);
48 mTimeZone = prefs.getString(CITY_TIME_ZONE + index, null);
49 mCityId = prefs.getString(CITY_ID + index, null);
52 public void saveCityToSharedPrefs(SharedPreferences.Editor editor, int index) { argument
53 editor.putString (CITY_NAME + index, mCityName);
54 editor.putString (CITY_TIME_ZONE + index, mTimeZone);
55 editor.putString (CITY_ID + index, mCityId);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DSplineMath.java11 public void setPoint(int index, double x, double y) { argument
12 mPoints[index][0] = x;
13 mPoints[index][1] = y;

Completed in 450 milliseconds

1234567891011