Searched defs:in (Results 76 - 88 of 88) sorted by relevance

1234

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DAccount.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
70 // Whether or not the user has asked for notifications of new mail in this account
77 // Whether the account is in the process of being created; any account reconciliation code
78 // MUST ignore accounts with this bit set; in addition, ContentObservers for this data
81 // Security hold is used when the device is not in compliance with security policies
82 // required by the server; in this state, the user MUST be alerted to the need to update
90 // Whether the account should try to cache attachments in the background
95 // sync mailboxes in this account automatically. A manual sync request to sync a mailbox
460 * @return a string in th
929 Account(Parcel in) argument
[all...]
H A DMailbox.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
186 // Types after this are used for non-mail mailboxes (as in EAS)
206 /** Has children in the mailbox hierarchy */
208 /** Children are visible in the UI */
268 * paths for a particular account must be unique. Paths are stored in the column
269 * {@link MailboxColumns#SERVER_ID} for want of yet another column in the table.
299 * Returns a {@link Mailbox} for the given path. If the path is not in the database, a new
369 * EmailProvider; therefore, we warn if the mailbox is not found in the cache
535 * @return true if messages in
630 Mailbox(Parcel in) argument
[all...]
H A DEmailContent.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
50 * necessarily be cloned for use in these two cases.
52 * Conventions used in naming columns:
262 // Replied-to or forwarded body (in html form)
264 // Replied-to or forwarded body (in text form)
266 // A reference to a message's unique id used in reply/forward.
267 // Protocol code can be expected to use this column in determining whether a message can be
481 // Basic columns used in message list presentation
482 // The name as shown to the user in
1349 Attachment(Parcel in) argument
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DUtility.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
110 public final static String readInputStream(InputStream in, String encoding) throws IOException { argument
111 InputStreamReader reader = new InputStreamReader(in, encoding);
217 * not modified in any way except to add the double quote character to start and end if it's not
246 * hundreds of times in places that slow down the UI, so it helps.
345 * Generate a time in milliseconds from a date string that represents a date/time in GMT
346 * @param date string in format 20090211T180303Z (rfc2445, iCalendar).
347 * @return the time in millisecond
[all...]
/packages/apps/Email/src/com/android/email/activity/
H A DThreePaneLayout.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
40 * This layout can show up to two panes at any given time, and operates in two different modes.
67 * has been expanded to be in view. {@link #isPaneCollapsible} must return true for this
116 // Arrays used in {@link #changePaneState}
538 // callback, should really be done in onAnimationEnd.
539 // However, because we may want to initiate a fragment transaction in the callback but
584 private SavedState(Parcel in) { argument
585 super(in);
586 mPaneState = in
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DCalendarSyncAdapter.java6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
130 // Used to indicate that upsyncs aren't allowed (we catch this in sendLocalChanges)
149 // Maximum number of CPO's before we start redacting attendees in exceptions
214 // CalendarProvider2 does NOT handle selection arguments in deletions
307 userLog("SyncKey set to ", syncKey, " in CalendarProvider");
309 throw new IOException("Can't set SyncKey in CalendarProvider");
322 public EasCalendarSyncParser(InputStream in, CalendarSyncAdapter adapter) argument
324 super(in, adapter);
331 // Handle the organizer (who IS an attendee on device, but NOT in EA
[all...]
H A DEmailSyncAdapter.java6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
231 // Permanently delete if in trash mailbox
282 // If we've need a body fetch, or we've just finished one, return true in order to continue
299 // If we're using an auto lookback, check how many items in the past week
363 public GetItemEstimateParser(InputStream in) throws IOException { argument
364 super(in);
419 * Return the estimated number of items to be synced in the current mailbox, based on the
420 * passed in filter argument
501 public EasEmailSyncParser(InputStream in, EmailSyncAdapte argument
[all...]
H A DContactsSyncAdapter.java6 * you may not use this file except in compliance with the License.
11 * Unless required by applicable law or agreed to in writing, software
155 // (in addData), we need to update this list
287 userLog("SyncKey set to ", syncKey, " in ContactsProvider");
289 throw new IOException("Can't set SyncKey in ContactsProvider");
299 /** MIME type used when storing this in data table. */
310 /** MIME type used when storing this in data table. */
325 /** MIME type used when storing this in data table. */
423 public EasContactsSyncParser(InputStream in, ContactsSyncAdapter adapter) argument
425 super(in, adapte
[all...]
/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DProgressBar.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
59 * Visual indicator of progress in some operation. Displays a bar to the user
94 * // Start lengthy operation in a background thread
333 StateListDrawable in = (StateListDrawable) drawable;
335 int numStates = in.getStateCount();
337 out.addState(in.getStateSet(i), tileify(in.getStateDrawable(i), clip));
367 * Each frame of the animation is wrapped in a ClipDrawable and
415 * <p>Indicate whether this progress bar is in indeterminat
1045 SavedState(Parcel in) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupEditorFragment.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
245 // Account specified in Intent - no data set can be specified in this manner.
439 return; // just in case
729 // In either case, update the UI so the contact is no longer in the list of
907 private Member(Parcel in) { argument
908 mRawContactId = in.readLong();
909 mContactId = in.readLong();
910 mLookupUri = in
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedView.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
165 // If true, the subclass should directly update scrollX itself in its computeScroll method
296 * in CustomizePagedView to allow tabs to share the same PagedView while resetting the scroll of
380 * Registers the specified listener on each page contained in this workspace.
480 throw new IllegalStateException("Workspace can only be used in EXACTLY mode.");
505 // disallowing padding in paged view (just pass 0)
551 // The gap between pages in the PagedView should be equal to the gap from the page
552 // to the edge of the screen (so it is not visible in the current screen). To
583 // A layout scale of 1.0f assumes that the pages, in thei
1598 SavedState(Parcel in) argument
[all...]
H A DCellLayout.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
131 // When a drag operation is in progress, holds the nearest cell to the touch point
289 // have. We ignore the left/right padding on CellLayout because it turns out in our design
300 // have. We ignore the left/right padding on CellLayout because it turns out in our design
355 // We draw the pressed or focused BubbleTextView's background in CellLayout because it
388 // pass 0, which results in the overscroll drawable not being drawn any more.
405 void scaleRectAboutCenter(Rect in, Rect out, float scale) { argument
406 int cx = in.centerX();
407 int cy = in
[all...]
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
131 // Must keep in sync with com.android.nfc_extras
187 // fields below are used in multiple threads and protected by synchronized(this)
198 // mState is protected by this, however it is only modified in onCreate()
484 * In other words, mState is only modified in these tasks (and we
485 * don't need a lock to read it in these tasks).
489 * mState to STATE_TURNING_OFF or STATE_TURNING_ON, but must exit in
491 * of starting in either STATE_OFF or STATE_ON, without needing to hold
495 * cases like turning airplane mode on while TASK_ENABLE is in progres
1365 transceive(String pkg, byte[] in) argument
[all...]

Completed in 3412 milliseconds

1234