Home
last modified time | relevance | path

Searched refs:mHelper (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/notification/
DRankingHelperTest.java38 private RankingHelper mHelper; field in RankingHelperTest
44 mHelper = new RankingHelper(getContext(), null, new String[0]); in setUp()
94 mHelper.sort(notificationList); in testFindAfterRankingWithASplitGroup()
95 assertTrue(mHelper.indexOf(notificationList, mRecordGroupGSortA) >= 0); in testFindAfterRankingWithASplitGroup()
96 assertTrue(mHelper.indexOf(notificationList, mRecordGroupGSortB) >= 0); in testFindAfterRankingWithASplitGroup()
97 assertTrue(mHelper.indexOf(notificationList, mRecordNoGroup) >= 0); in testFindAfterRankingWithASplitGroup()
98 assertTrue(mHelper.indexOf(notificationList, mRecordNoGroupSortA) >= 0); in testFindAfterRankingWithASplitGroup()
106 mHelper.sort(notificationList); in testSortShouldNotThrowWithPlainNotifications()
114 mHelper.sort(notificationList); in testSortShouldNotThrowOneSorted()
121 mHelper.sort(notificationList); in testSortShouldNotThrowOneNotification()
[all …]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DRecentsProvider.java114 private DatabaseHelper mHelper; field in RecentsProvider
167 mHelper = new DatabaseHelper(getContext()); in onCreate()
174 final SQLiteDatabase db = mHelper.getReadableDatabase(); in query()
203 final SQLiteDatabase db = mHelper.getWritableDatabase(); in insert()
307 final SQLiteDatabase db = mHelper.getWritableDatabase(); in purgeByAuthority()
/frameworks/base/docs/html/training/in-app-billing/
Dpreparing-iab-app.jd105 IabHelper mHelper;
113 mHelper = new IabHelper(this, base64EncodedPublicKey);
120 mHelper.startSetup(new IabHelper.OnIabSetupFinishedListener() {
131 <p>If the setup completed successfully, you can now use the {@code mHelper} reference to communicat…
139 if (mHelper != null) mHelper.dispose();
140 mHelper = null;
Dpurchase-iab-products.jd48 mHelper.launchPurchaseFlow(this, SKU_GAS, 10001,
83 mHelper.queryInventoryAsync(mGotInventoryListener);
114 mHelper.consumeAsync(inventory.getPurchase(SKU_GAS),
Dlist-iab-products.jd65 mHelper.queryInventoryAsync(true, additionalSkuList,
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationUsageStats.java522 private final SQLiteOpenHelper mHelper; field in NotificationUsageStats.SQLiteLog
555 mHelper = new SQLiteOpenHelper(context, DB_NAME, null, DB_VERSION) { in SQLiteLog()
609 SQLiteDatabase db = mHelper.getReadableDatabase(); in printPostFrequencies()
649 SQLiteDatabase db = mHelper.getWritableDatabase(); in writeEvent()