Searched refs:current (Results 1 - 25 of 79) sorted by relevance

1234

/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DCursorPhotoSource.java41 protected ImageData naturalNext(ImageData current) { argument
42 if (current.cursor == null || current.cursor.isClosed()) {
43 openCursor(current);
45 findPosition(current);
46 current.cursor.moveToPosition(current.position);
47 current.cursor.moveToNext();
49 if (!current.cursor.isAfterLast()) {
50 data = unpackImageData(current
58 naturalPrevious(ImageData current) argument
75 donePaging(ImageData current) argument
[all...]
H A DPhotoSourcePlexor.java75 protected ImageData naturalNext(ImageData current) { argument
76 return current.naturalNext();
80 protected ImageData naturalPrevious(ImageData current) { argument
81 return current.naturalPrevious();
85 protected void donePaging(ImageData current) { argument
86 current.donePaging();
H A DStockSource.java98 public ImageData naturalNext(ImageData current) { argument
99 int idx = Integer.valueOf(current.id);
105 public ImageData naturalPrevious(ImageData current) { argument
106 int idx = Integer.valueOf(current.id);
112 protected void donePaging(ImageData current) { argument
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DAbstractSuggestionWrapper.java26 * Gets the current suggestion.
28 protected abstract Suggestion current(); method in class:AbstractSuggestionWrapper
31 return current().getShortcutId();
35 return current().getSuggestionFormat();
39 return current().getSuggestionIcon1();
43 return current().getSuggestionIcon2();
47 return current().getSuggestionIntentAction();
51 return current().getSuggestionIntentComponent();
55 return current().getSuggestionIntentDataString();
59 return current()
[all...]
H A DSuggestionPosition.java47 protected Suggestion current() { method in class:SuggestionPosition
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DPathMatcher.java34 Node current = mRoot;
36 current = current.addChild(segments[i]);
38 current.setKind(kind);
44 Node current = mRoot;
46 Node next = current.getChild(segments[i]);
48 next = current.getChild("*");
55 current = next;
57 return current.getKind();
H A DPath.java103 Path current = sRoot;
105 current = current.getChild(segments[i]);
107 return current;
190 Path current = this;
191 if (current == sRoot) {
194 while (current.mParent != sRoot) {
195 current = current.mParent;
197 return current;
[all...]
/packages/experimental/CameraPreviewTest/
H A DAndroid.mk25 LOCAL_SDK_VERSION := current
/packages/apps/QuickSearchBox/benchmarks/
H A DAndroid.mk22 LOCAL_SDK_VERSION := current
/packages/apps/QuickSearchBox/tests/naughty/
H A DAndroid.mk22 LOCAL_SDK_VERSION := current
/packages/apps/Calculator/src/com/android/calculator2/
H A DHistory.java75 current().setEdited(text);
95 current().clearEdited();
107 HistoryEntry current() { method in class:History
112 return current().getEdited();
116 return current().getBase();
/packages/apps/Browser/src/com/android/browser/
H A DTabControl.java36 private static final String CURRENT = "current";
70 * Return the current tab's main WebView. This will always return the main
72 * @return The current tab's WebView.
83 * Return the current tab's top-level WebView. This can return a subwindow
85 * @return The top-level WebView of the current tab.
96 * Return the current tab's subwindow if it exists.
97 * @return The subwindow of the current tab or null if it doesn't exist.
127 * Return the current tab.
128 * @return The current tab.
135 * Return the current ta
481 getHalfLeastUsedTabs(Tab current) argument
515 getLeastUsedTab(Tab current) argument
[all...]
H A DIntentHandler.java67 Tab current = mTabControl.getCurrentTab();
68 // When a tab is closed on exit, the current tab index is set to -1.
69 // Reset before proceed as Browser requires the current tab to be set.
70 if (current == null) {
72 current = mTabControl.getTab(0);
73 if (current == null) {
77 mController.setActiveTab(current);
156 if (current != appTab) {
163 // MAX_TABS. Then the url will be opened in the current
178 current
[all...]
/packages/apps/Music/tests/
H A DAndroid.mk16 LOCAL_SDK_VERSION := current
/packages/apps/Tag/
H A DAndroid.mk13 #LOCAL_SDK_VERSION := current
/packages/apps/VideoEditor/
H A DAndroid.mk15 #LOCAL_SDK_VERSION := current
/packages/apps/Calculator/
H A DAndroid.mk26 LOCAL_SDK_VERSION := current
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/
H A DDataExporter.java141 * Add all files under {@code current} to {@code os} zip stream
143 private static void addDirectory(Context context, ZipOutputStream os, File current, argument
145 for (File child : current.listFiles()) {
168 * Add a single file {@code current} to {@code os} zip stream using the file name
171 private static void addFile(ZipOutputStream os, File current, String storedPath) argument
173 Log.i(TAG, "Adding " + current.getAbsolutePath() + " ...");
174 final InputStream is = new FileInputStream(current);
188 Log.i(TAG, "Added " + current.getAbsolutePath() + " as " + storedPath +
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DStopWatch.java76 final long current = mTimes.get(i);
79 sb.append((current - last));
81 last = current;
/packages/apps/Launcher2/
H A DAndroid.mk25 LOCAL_SDK_VERSION := current
/packages/apps/QuickSearchBox/
H A DAndroid.mk22 LOCAL_SDK_VERSION := current
/packages/apps/BasicSmsReceiver/
H A DAndroid.mk14 #LOCAL_SDK_VERSION := current
/packages/apps/DeskClock/
H A DAndroid.mk15 LOCAL_SDK_VERSION := current
/packages/apps/LegacyCamera/
H A DAndroid.mk9 #LOCAL_SDK_VERSION := current
/packages/apps/Mms/apptests/
H A DAndroid.mk13 #LOCAL_SDK_VERSION := current

Completed in 508 milliseconds

1234