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

1234567891011>>

/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthByWeekFragment.java186 long end = mTempTime.toMillis(true);
191 ContentUris.appendId(builder, end);
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DActionBarAdapter.java586 private void animateTabHeightChange(int start, int end) { argument
590 final ValueAnimator animator = ValueAnimator.ofInt(start, end);
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DSyncMessagesAction.java125 // Lower bound is end of previous sync
534 final int end = Math.min(start + MmsUtils.MAX_IDS_PER_QUERY, totalIds); //excluding
535 final int count = end - start;
/packages/apps/Nfc/nci/jni/
H A DRoutingManager.cpp461 mRxDataBuffer.insert (mRxDataBuffer.end(), &data[0], &data[dataLen]); //append data; more to come
469 mRxDataBuffer.insert (mRxDataBuffer.end(), &data[0], &data[dataLen]); //append data
/packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
H A DNativeNfcTag.java103 public synchronized void end() { method in class:NativeNfcTag.PresenceCheckWatchdog
260 watchdog.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/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/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.java180 final long end = SystemClock.elapsedRealtime();
181 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
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
H A Dver4_patricia_trie_writing_helper.cpp294 if (it == mTerminalIdMap->end()) {
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dtrie_map.h152 const TrieMapIterator end() const { function in class:latinime::TrieMap::TrieMapRange
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
H A DPublicApiFunctionalTest.java222 private MockResponse buildPartialResponse(int start, int end) { argument
226 MockResponse response = buildResponse(status, FILE_CONTENT.substring(start, end))
227 .setHeader("Content-length", isFirstResponse ? totalLength : (end - start))
707 // at the end; i.e., download shouldnot fail.
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dndldic.c389 NJ_UINT16 max, end; local
393 end = GET_LEARN_NEXT_WORD_POS(handle);
403 if (que_id == end) {
436 NJ_UINT16 max, end; local
441 end = GET_LEARN_NEXT_WORD_POS(handle);
451 if (que_id == end) {
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DTextCandidatesViewManager.java1379 * @param end The end position (specified by the number of character)
1382 public int measureText(CharSequence text, int start, int end) { argument
1383 if (end - start < 3) {
1388 return (int)paint.measureText(text, start, end);
/packages/apps/Camera2/src/com/android/camera/ui/
H A DModeTransitionView.java310 * Snaps the shade to position at the end of a gesture.
420 mPeepHoleAnimator.end();
/packages/apps/Email/provider_src/com/android/email/service/
H A DImapService.java505 // if there were no messages for several weeks, we'd always end up
553 // in our localMessageMap, then we'll end up loading the same message again.
634 int end = start + MAX_MESSAGES_TO_FETCH;
635 if (end >= remoteMessageList.size()) {
636 end = remoteMessageList.size() - 1;
638 List<Message> chunk = remoteMessageList.subList(start, end);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DMoviePlayer.java389 public void onSeekEnd(int time, int start, int end) { argument
H A DAlbumPage.java134 int end = mSlotView.getVisibleEnd();
135 for (int i = start; i < end; ++i) {
/packages/apps/Messaging/src/android/support/v7/mms/
H A DMmsHttpClient.java330 nextStart = matcher.end();
/packages/apps/Test/connectivity/sl4n/utils/
H A Dcommand_receiver.cpp259 if (iter != _funcMap->end()) {
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationViewFragment.java860 private void renderSuperCollapsedBlock(int start, int end, boolean hasDraft) { argument
861 final int blockPos = mAdapter.addSuperCollapsedBlock(start, end, hasDraft);
898 for (int i = blockToReplace.getStart(), end = blockToReplace.getEnd(); i <= end; i++) {
/packages/apps/ExactCalculator/src/com/android/calculator2/
H A DEvaluator.java462 // Earlier digits could not have changed without a 0 to 9 or 9 to 0 flip at end.
639 // Ensure we don't have to worry about running off the end of cache.
1146 * Add the exponent represented by s[begin..end) to the constant at the end of current
1148 * The end of the current expression must be a constant. Exponents have the same syntax as
1151 public void addExponent(String s, int begin, int end) { argument
1161 for (; i < end; ++i) {
/packages/apps/Settings/src/com/android/settings/fingerprint/
H A DFingerprintSettings.java798 int end = msg.getSpanEnd(annotation);
806 builder.setSpan(link, start, end, msg.getSpanFlags(link));

Completed in 1279 milliseconds

1234567891011>>