Home
last modified time | relevance | path

Searched refs:box (Results 1 – 19 of 19) sorted by relevance

/packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/
DEmailContentSetupUtils.java66 Mailbox box = new Mailbox(); in setupMailbox() local
68 box.mDisplayName = name; in setupMailbox()
69 box.mAccountKey = accountId; in setupMailbox()
70 box.mSyncKey = "sync-key-" + name; in setupMailbox()
71 box.mSyncLookback = 2; in setupMailbox()
72 box.mSyncInterval = Account.CHECK_INTERVAL_NEVER; in setupMailbox()
73 box.mType = type; in setupMailbox()
74 box.mServerId = "serverid-" + name; in setupMailbox()
75 box.mParentServerId = parentBox != null ? parentBox.mServerId : "parent-serverid-" + name; in setupMailbox()
78 box.save(context); in setupMailbox()
[all …]
/packages/apps/Exchange/tests/src/com/android/exchange/provider/
DEmailContentSetupUtils.java66 Mailbox box = new Mailbox(); in setupMailbox() local
68 box.mDisplayName = name; in setupMailbox()
69 box.mAccountKey = accountId; in setupMailbox()
70 box.mSyncKey = "sync-key-" + name; in setupMailbox()
71 box.mSyncLookback = 2; in setupMailbox()
72 box.mSyncInterval = Account.CHECK_INTERVAL_NEVER; in setupMailbox()
73 box.mType = type; in setupMailbox()
74 box.mServerId = "serverid-" + name; in setupMailbox()
75 box.mParentServerId = parentBox != null ? parentBox.mServerId : "parent-serverid-" + name; in setupMailbox()
78 box.save(context); in setupMailbox()
[all …]
/packages/apps/Email/tests/src/com/android/email/provider/
DProviderTestUtils.java126 Mailbox box = new Mailbox(); in setupMailbox() local
133 box.mDisplayName = displayName; in setupMailbox()
134 box.mServerId = name; in setupMailbox()
135 box.mParentServerId = "parent-serverid-" + name; in setupMailbox()
136 box.mParentKey = 4; in setupMailbox()
137 box.mAccountKey = accountId; in setupMailbox()
138 box.mType = type; in setupMailbox()
139 box.mDelimiter = delimiter; in setupMailbox()
140 box.mSyncKey = "sync-key-" + name; in setupMailbox()
141 box.mSyncLookback = 2; in setupMailbox()
[all …]
DContentCacheTests.java139 Mailbox box = ProviderTestUtils.setupMailbox("box2", acct.mId, true, context); in testCachedCursors() local
143 Uri uri = ContentUris.withAppendedId(Mailbox.CONTENT_URI, box.mId); in testCachedCursors()
/packages/apps/Email/tests/src/com/android/email/
DControllerProviderOpsTests.java152 Mailbox box = ProviderTestUtils.setupMailbox("box", accountId, false, mProviderContext); in testFindOrCreateMailboxOfType() local
154 box.mType = boxType; in testFindOrCreateMailboxOfType()
155 box.save(mProviderContext); in testFindOrCreateMailboxOfType()
156 long boxId = box.mId; in testFindOrCreateMailboxOfType()
215 Mailbox box = ProviderTestUtils.setupMailbox("box1", account1Id, true, mProviderContext); in testDeleteMessage() local
216 long boxId = box.mId; in testDeleteMessage()
363 Mailbox box = mTestController.getAttachmentMailbox(); in testGetAndDeleteAttachmentMailbox() local
364 assertNotNull(box); in testGetAndDeleteAttachmentMailbox()
368 assertEquals(box.mId, anotherBox.mId); in testGetAndDeleteAttachmentMailbox()
370 ProviderTestUtils.setupMessage("message1", 0, box.mId, false, true, in testGetAndDeleteAttachmentMailbox()
[all …]
/packages/apps/Email/tests/src/com/android/email/activity/
DMailboxFinderTest.java109 Mailbox box = new Mailbox(); in createMailbox() local
110 box.mServerId = box.mDisplayName = "mailbox"; in createMailbox()
111 box.mAccountKey = accountId; in createMailbox()
112 box.mType = mailboxType; in createMailbox()
113 box.mFlagVisible = true; in createMailbox()
114 box.mVisibleLimit = Email.VISIBLE_LIMIT_DEFAULT; in createMailbox()
115 box.save(mProviderContext); in createMailbox()
116 return box.mId; in createMailbox()
DMessagesAdapterTests.java54 Mailbox box = ProviderTestUtils.setupMailbox("name", accountId, false, mProviderContext); in createMailbox() local
55 box.mType = type; in createMailbox()
56 box.save(mProviderContext); in createMailbox()
57 return box.mId; in createMailbox()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DMailbox.java255 Mailbox box = new Mailbox(); in newSystemMailbox() local
256 box.mAccountKey = accountId; in newSystemMailbox()
257 box.mType = mailboxType; in newSystemMailbox()
258 box.mSyncInterval = Account.CHECK_INTERVAL_NEVER; in newSystemMailbox()
259 box.mFlagVisible = true; in newSystemMailbox()
260 box.mServerId = box.mDisplayName = name; in newSystemMailbox()
261 box.mParentKey = Mailbox.NO_MAILBOX; in newSystemMailbox()
262 box.mFlags = Mailbox.FLAG_HOLDS_MAIL; in newSystemMailbox()
263 return box; in newSystemMailbox()
/packages/apps/Calculator/tests/src/com/android/calculator2/
DCalculatorHitSomeButtons.java134 EditText box = (EditText) display.getCurrentView(); in displayVal() local
135 assertNotNull(box); in displayVal()
137 return box.getText().toString(); in displayVal()
/packages/apps/Exchange/exchange2/tests/src/com/android/exchange/adapter/
DFolderSyncParserTests.java119 Mailbox box = EmailContentSetupUtils.setupMailbox("box1", mAccount.mId, false, in setupBoxSync() local
121 box.mSyncInterval = interval; in setupBoxSync()
122 box.mSyncLookback = lookback; in setupBoxSync()
124 box.mServerId = serverId; in setupBoxSync()
126 box.mServerId = "serverId-" + mCreationTime + '-' + mServerIdCount++; in setupBoxSync()
128 box.save(mProviderContext); in setupBoxSync()
129 return box; in setupBoxSync()
/packages/apps/Exchange/tests/src/com/android/exchange/adapter/
DFolderSyncParserTests.java119 Mailbox box = EmailContentSetupUtils.setupMailbox("box1", mAccount.mId, false, in setupBoxSync() local
121 box.mSyncInterval = interval; in setupBoxSync()
122 box.mSyncLookback = lookback; in setupBoxSync()
124 box.mServerId = serverId; in setupBoxSync()
126 box.mServerId = "serverId-" + mCreationTime + '-' + mServerIdCount++; in setupBoxSync()
128 box.save(mProviderContext); in setupBoxSync()
129 return box; in setupBoxSync()
/packages/apps/Calendar/src/com/android/calendar/
DDayView.java2757 Rect box = new Rect(); in getCurrentSelectionPosition() local
2758 box.top = mSelectionHour * (mCellHeight + HOUR_GAP); in getCurrentSelectionPosition()
2759 box.bottom = box.top + mCellHeight + HOUR_GAP; in getCurrentSelectionPosition()
2761 box.left = computeDayLeftPosition(daynum) + 1; in getCurrentSelectionPosition()
2762 box.right = computeDayLeftPosition(daynum + 1); in getCurrentSelectionPosition()
2763 return box; in getCurrentSelectionPosition()
3171 Rect box = getCurrentSelectionPosition(); in computeNeighbors() local
3205 if (prevLeft >= box.right) { in computeNeighbors()
3209 } else if (prevRight <= box.left) { in computeNeighbors()
3213 } else if (prevBottom <= box.top) { in computeNeighbors()
[all …]
/packages/apps/Email/src/com/android/email/
DController.java546 Mailbox box = Mailbox.newSystemMailbox( in createMailbox() local
548 box.save(mProviderContext); in createMailbox()
549 return box.mId; in createMailbox()
/packages/apps/Exchange/exchange2/src/com/android/exchange/
DExchangeService.java1309 Mailbox box = Mailbox.restoreMailboxWithId(this, mid); in stopAccountSyncs() local
1310 if (box != null) { in stopAccountSyncs()
1311 if (box.mAccountKey == acctId) { in stopAccountSyncs()
1313 box.mType == Mailbox.TYPE_EAS_ACCOUNT_MAILBOX) { in stopAccountSyncs()
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile1014 # When the SEARCHENGINE tag is enable doxygen will generate a search box
1515 # visualized by representing a node as a red box. Note that doxygen if the
1534 # seem to support this out of the box. Warning: Depending on the platform used,
/packages/apps/Camera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile1014 # When the SEARCHENGINE tag is enable doxygen will generate a search box
1515 # visualized by representing a node as a red box. Note that doxygen if the
1534 # seem to support this out of the box. Warning: Depending on the platform used,
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile1014 # When the SEARCHENGINE tag is enable doxygen will generate a search box
1515 # visualized by representing a node as a red box. Note that doxygen if the
1534 # seem to support this out of the box. Warning: Depending on the platform used,
/packages/apps/Camera/jni/feature_stab/doc/
Ddbreg_API_doxyfile1014 # When the SEARCHENGINE tag is enable doxygen will generate a search box
1515 # visualized by representing a node as a red box. Note that doxygen if the
1534 # seem to support this out of the box. Warning: Depending on the platform used,
/packages/apps/Camera/perftests/panorama/input/
Dtest_034.ppm104 …��|��{��|��{��z��{��z��z��z��z��z��x��w��w��|�������~��~�����������Vx�?box��x��x��x��z��z��z��…