Searched refs:helper (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/util/
H A DMonthDisplayHelperTest.java51 MonthDisplayHelper helper = new MonthDisplayHelper(2007, Calendar.SEPTEMBER);
54 helper.getDigitsForRow(0));
56 helper.getDigitsForRow(1));
58 helper.getDigitsForRow(5));
64 MonthDisplayHelper helper = new MonthDisplayHelper(2007,
68 helper.getDigitsForRow(0));
70 helper.getDigitsForRow(1));
72 helper.getDigitsForRow(4));
74 helper.getDigitsForRow(5));
79 MonthDisplayHelper helper
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupHelperDispatcher.java41 public void addHelper(String keyPrefix, BackupHelper helper) { argument
42 mHelpers.put(keyPrefix, helper);
59 BackupHelper helper = helpers.get(header.keyPrefix);
60 Log.d(TAG, "handling existing helper '" + header.keyPrefix + "' " + helper);
61 if (helper != null) {
62 doOneBackup(oldState, data, newState, header, helper);
74 Log.d(TAG, "handling new helper '" + header.keyPrefix + "'");
75 BackupHelper helper = entry.getValue();
76 doOneBackup(oldState, data, newState, header, helper);
80 doOneBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState, Header header, BackupHelper helper) argument
[all...]
H A DBackupAgentHelper.java41 * An application can also implement its own helper classes to work within the
84 * Add a helper for a given data subset to the agent's configuration. Each helper
89 * @param helper A backup/restore helper object to be invoked during backup and restore
92 public void addHelper(String keyPrefix, BackupHelper helper) { argument
93 mDispatcher.addHelper(keyPrefix, helper);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DContextMenuBuilder.java87 MenuDialogHelper helper = new MenuDialogHelper(this);
88 helper.show(token);
90 return helper;
H A DIconMenuPresenter.java93 MenuDialogHelper helper = new MenuDialogHelper(subMenu);
94 helper.setPresenterCallback(mSubMenuPresenterCallback);
95 helper.show(null);
96 mOpenSubMenu = helper;
/frameworks/compile/libbcc/
H A Dlibbcc-config.mk77 $(LIBBCC_ROOT_PATH)/helper \
/frameworks/support/v4/
H A DAndroid.mk20 # A helper sub-library that makes direct use of Eclair APIs.
29 # A helper sub-library that makes direct use of Froyo APIs.
38 # A helper sub-library that makes direct use of Gingerbread APIs.
47 # A helper sub-library that makes direct use of Honeycomb APIs.
56 # A helper sub-library that makes direct use of Honeycomb MR2 APIs.
65 # A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
/frameworks/compile/linkloader/
H A DAndroid.mk40 utils/helper.cpp \
74 utils/helper.cpp \
166 utils/helper.cpp \
199 utils/helper.cpp \
/frameworks/support/v13/
H A DAndroid.mk20 # A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
27 # A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
/frameworks/base/core/java/android/widget/
H A DCursorTreeAdapter.java44 /** The cursor helper that is used to get the groups */
48 * The map of a group position to the group's children cursor helper (the
49 * cursor helper that is used to get the children for that group)
90 * Gets the cursor helper for the children in the given group.
97 * @return The cursor helper for the children of the given group
177 MyCursorHelper helper = getChildrenCursorHelper(groupPosition, true);
178 return (mGroupCursorHelper.isValid() && helper != null) ? helper.getCount() : 0;
329 * Deactivates the Cursor and removes the helper from cache.
331 * @param groupPosition The group whose children Cursor and helper shoul
[all...]
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
H A DTrackerActivity.java128 TrackerDataHelper helper =
130 helper.deleteAll();
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
H A DSQLiteDatabaseTest.java947 TestOpenHelper helper = new TestOpenHelper(getContext(), DB_NAME, null,
949 mDatabase = helper.getWritableDatabase();
957 mDatabase = helper.getReadableDatabase();
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java2144 final MenuDialogHelper helper = mContextMenu.show(originalView,
2146 if (helper != null) {
2147 helper.setPresenterCallback(mContextMenuCallback);
2149 mContextMenuHelper = helper;
2150 return helper != null;

Completed in 307 milliseconds