Searched refs:end (Results 226 - 250 of 298) sorted by relevance

1234567891011>>

/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherViewPropertyAnimator.java81 public void end() { method in class:LauncherViewPropertyAnimator
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationViewAdapter.java478 private SuperCollapsedBlockItem(int start, int end, boolean hasDraft) { argument
480 mEnd = end;
669 public int addSuperCollapsedBlock(int start, int end, boolean hasDraft) { argument
670 return addItem(new SuperCollapsedBlockItem(start, end, hasDraft));
792 // Special case two end points
H A DConversationItemView.java1061 // At the end of the date TextView minus the width of the date text
1066 // At the end of the info icon ImageView minus the width of the date text
1075 // In RTL mode, it is at the end of the date (mDateX + mDateWidth) plus the
1083 // Have this end near the paperclip or date, not the folders.
1087 // In RTL, it is at the end of the paperclip plus the paperclip padding.
1245 int end = subject.indexOf(']');
1246 if (end > 0) {
1247 String tag = subject.substring(1, end);
1249 subject.substring(end + 1));
1524 // Everything before the end edg
[all...]
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dproximity_info_state.cpp152 // end
301 if (it != mCharProbabilities[index].end()) {
H A Dproximity_info_utils.h42 if (mapPos != codeToKeyMap->end()) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/
H A Dver4_patricia_trie_writing_helper.cpp291 if (it == mTerminalIdMap->end()) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/
H A Dver4_patricia_trie_writing_helper.cpp282 if (it == mTerminalIdMap->end()) {
/packages/apps/Calendar/src/com/android/calendar/
H A DAllInOneActivity.java663 long end = intent.getLongExtra(EXTRA_EVENT_END_TIME, -1);
665 if (end != -1) {
667 info.endTime.set(end);
1004 final long end;
1006 end = event.endTime.toMillis(false /* use isDst */);
1008 end = start;
1011 final String msg = Utils.formatDateRange(this, start, end, (int) event.extraLong);
H A DDayView.java1121 Time end = new Time(start);
1122 end.monthDay += mNumDays - 1;
1124 end.minute += 1;
1125 end.normalize(true);
1133 if (start.month != end.month) {
1138 mController.sendEvent(this, EventType.UPDATE_TITLE, start, end, null, -1, ViewType.CURRENT,
1165 // Compare end of range
1545 long end = selectedEvent.endMillis;
1547 mDeleteEventHelper.delete(begin, end, id, -1);
1632 Time end
1790 GotoBroadcaster(Time start, Time end) argument
[all...]
/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DDialpadFragment.java755 // If the cursor is at the end of the text we hide it.
1099 // ...and move the cursor to the end of the digits string,
1527 * Fails early if start == -1 or start is larger than end.
1530 /* package */ static boolean canAddDigit(CharSequence digits, int start, int end, argument
1537 // False if no selection, or selection is reversed (end < start)
1538 if (start == -1 || end < start) {
1543 if (start > digits.length() || end > digits.length()) return false;
1553 if ((digits.length() > end) && (digits.charAt(end) == WAIT)) return false;
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarProvider2.java308 * the start times are the same, then events with a later end time occur
309 * first. The later end time is ordered first so that long-running events in
310 * the calendar views appear first. If the start and end times of two events
314 public static final String SORT_CALENDAR_VIEW = "begin ASC, end DESC, title ASC";
794 long end = begin + MINIMUM_EXPANSION_SPAN;
799 begin, end,
924 long end;
932 end = Long.valueOf(uri.getPathSegments().get(3));
934 throw new IllegalArgumentException("Cannot parse end "
938 return handleInstanceQuery(qb, begin, end, projectio
1313 handleEventDayQuery(SQLiteQueryBuilder qb, int begin, int end, String[] projection, String selection, String instancesTimezone, boolean isHomeTimezone) argument
1348 acquireInstanceRange(final long begin, final long end, final boolean useMinimumExpansionWindow, final boolean forceExpansion, final String instancesTimezone, final boolean isHomeTimezone) argument
1372 acquireInstanceRangeLocked(long begin, long end, boolean useMinimumExpansionWindow, boolean forceExpansion, String instancesTimezone, boolean isHomeTimezone) argument
[all...]
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaByDayAdapter.java381 endDay = Math.min(endDay, dayAdapterInfo.end);
387 // event, the end time is midnight
400 for (int currentDay = prevStartDay + 1; currentDay <= dayAdapterInfo.end;
528 // 4. No event id match , time is between event start and end
/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthByWeekFragment.java186 long end = mTempTime.toMillis(true);
191 ContentUris.appendId(builder, end);
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
H A DCallLogFragmentTest.java434 // The entries are added backward, so count from the end of the cursor.
586 * Insert a range [start, end) of random numbers in the DB. For
592 * @param end Of the range (excluded).
600 private boolean[] insertRandomRange(int start, int end) { argument
603 for (int i = start; i < end; i++ ) {
/packages/apps/Mms/src/com/android/mms/model/
H A DSlideshowModel.java567 public List<SlideModel> subList(int start, int end) { argument
568 return mSlides.subList(start, end);
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcTag.java103 public synchronized void end() { method in class:NativeNfcTag.PresenceCheckWatchdog
257 mWatchdog.end();
/packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
H A DNativeNfcTag.java100 public synchronized void end() { method in class:NativeNfcTag.PresenceCheckWatchdog
245 mWatchdog.end();
/packages/apps/OMA-DM/engine/dmlib/plugin/src/
H A DdmPluginManager.cc55 pos != m_pluginLibs.end(); pos++ )
718 for( DMMap<DMString,XPL_DL_HANDLE_T>::POS pos = m_pluginLibs.end()-1;
/packages/apps/OMA-DM/engine/jni/
H A DDMTreeManager.cc88 goto end;
98 end:
/packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
H A DTextUtilities.java338 * Find the end of this tag; there are two alternatives: <tag .../> or <tag ...> ... </tag>
342 * @return the position just before the end of the tag or -1 if not found
360 // We didn't find /> at the end of the tag so find </tag>
404 // Look for the end of this tag
465 int end = pos + 10;
468 for (int i = pos; (i < length) && (i < end); i++) {
614 // Look for the end of this tag
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlTree.java39 * The begin_ and end_ arrays keeps track of the starting end ending
43 * For an open tag, begin_[node] = node, end_[node] = the matching end tag
99 /** Keeps track of beginning and end of each node */
355 // Split up the block [start, end) into one or more blocks that
466 * Returns the end of a block given a text-pos
599 // How many logical newlines are at the end of the buffer we've outputted.
600 // Note that we can't simply count the newlines at the end of the output
912 * to add the matching end tag
923 * Adds a html end tag, this must be preceded by a previous matching open tag
937 /** Adds a singular tag that does not have a corresponding end ta
953 addNode(HtmlDocument.Node n, int begin, int end) argument
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlTree.java42 * The begin_ and end_ arrays keeps track of the starting end ending
46 * For an open tag, begin_[node] = node, end_[node] = the matching end tag
104 /** Keeps track of beginning and end of each node */
392 // Split up the block [start, end) into one or more blocks that
503 * Returns the end of a block given a text-pos
672 // How many logical newlines are at the end of the buffer we've outputted.
673 // Note that we can't simply count the newlines at the end of the output
996 * to add the matching end tag
1007 * Adds a html end tag, this must be preceded by a previous matching open tag
1020 /** Adds a singular tag that does not have a corresponding end ta
1036 addNode(HtmlDocument.Node n, int begin, int end) argument
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactDirectoryManager.java193 final long end = SystemClock.elapsedRealtime();
194 Log.i(TAG, "Discovered " + count + " contact directories in " + (end - start) + "ms");
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventHelper.java363 // to end at the new start time.
367 // Update the current repeating event to end at the new start time. We
382 // We need to update the existing recurrence to end before the exception
615 * When we aren't given an explicit end time, we default to an hour after
618 * @return a default end time
687 * the original event to end before a new series starts. This creates an
695 * @param endTimeMillis The time before which the event must end (i.e. the start time of the
912 long end = model.mEnd;
917 if (end >= start) {
920 long days = (end
[all...]
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DAlertServiceTest.java203 long end, int minute, long alarmTime) {
209 mEnd = end;
221 long end, long alarmTime) {
222 Alert a = new Alert(eventId, alertStatus, responseStatus, allDay, begin, end,
697 // Test at 10:15am - next refresh should be tomorrow midnight (end of all day event 'id2').
987 // Verify some medium priority were kicked out (the ones near the end of the
202 Alert(long eventId, int alertStatus, int responseStatus, int allDay, long begin, long end, int minute, long alarmTime) argument
220 addAlertRow(long eventId, int alertStatus, int responseStatus, int allDay, long begin, long end, long alarmTime) argument

Completed in 844 milliseconds

1234567891011>>