HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 276 - 300 of 728) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/text/method/
LinkMovementMethod.java 102 int last = layout.getLineEnd(linebot); local
104 ClickableSpan[] candidates = buffer.getSpans(first, last, ClickableSpan.class);
118 if (selStart > last)
  /external/libxml2/
xpointer.c 1433 xmlNodePtr list = NULL, last = NULL, parent = NULL, tmp; local
1603 xmlNodePtr list = NULL, last = NULL; local
    [all...]
entities.c 324 if (dtd->last == NULL) {
325 dtd->children = dtd->last = (xmlNodePtr) ret;
327 dtd->last->next = (xmlNodePtr) ret;
328 ret->prev = dtd->last;
329 dtd->last = (xmlNodePtr) ret;
373 if (dtd->last == NULL) {
374 dtd->children = dtd->last = (xmlNodePtr) ret;
376 dtd->last->next = (xmlNodePtr) ret;
377 ret->prev = dtd->last;
378 dtd->last = (xmlNodePtr) ret
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 70 public static final int LAST = 3;
730 * the last file in the list has been played,
800 * @param action NOW, NEXT or LAST
808 // action == LAST || action == NOW || mPlayPos + 1 == mPlayListLe
    [all...]
  /cts/tools/dasm/src/java_cup/runtime/
lr_parser.java 108 * @version last updated: 11/25/95
390 int first, last, probe; local
409 last = (row.length-1)/2 - 1; /* leave out trailing default entry */
410 while (first <= last)
412 probe = (first+last)/2;
418 last = probe-1;
    [all...]
  /external/openssl/crypto/bio/
bio_lib.c 458 BIO *b,*last; local
460 b=last=bio;
464 last=b;
468 if (reason != NULL) *reason=last->retry_reason;
469 return(last);
  /external/stlport/src/details/
fstream_win32io.cpp 407 char *last = from + numberOfBytesRead - 1; local
408 for (; from <= last && *from != _STLP_CTRLZ; ++from) {
412 if (from < last) { // not at buffer end
416 else { // last char is CR, peek for LF
439 * get a <LF>. Doing so would make all files with a <CR> last an invalid file
451 if (from <= last) { // terminated due to CTRLZ
452 SetFilePointer(_M_file_id, -(LONG)((last + 1) - from), 0, FILE_CURRENT);
  /external/zlib/contrib/inflate86/
inffas86.c 82 /* 24 12 */ unsigned char FAR *last; /* r9 while in < last */ member in struct:inffast_ar
111 ar.last = ar.in + (strm->avail_in - PAD_AVAIL_IN);
142 " movq 24(%%rsp), %%r9\n" /* r9 = last */
489 " cmpl %%esi, 12(%%esp)\n" /* in < last */
    [all...]
inffast.S 42 * have less latency than MMX ops. Added code to buffer the last 11 bytes of
51 * structure offsets which are hard coded in this file. This was last tested
181 #define last 20 /* unsigned char* */ define
244 * last = in + strm->avail_in - 11;
255 movl %edx, last(%esp)
320 movl last(%esp), %ecx
322 ja .L_align_long /* if in < last */
334 movl in_r, last(%esp) /* last = in, do just one iteration */
426 /* while (in < last && out < end
    [all...]
  /external/webkit/WebCore/rendering/
RenderObject.h 963 RenderObject* last = this; local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
LinkedList.java 478 * Returns the last element in this {@code LinkedList}.
480 * @return the last element
485 Link<E> last = voidLink.previous; local
486 if (last != voidLink) {
487 return last.data;
518 * index of the last occurrence.
522 * @return the index of the last occurrence of the object, or -1 if it was
644 * Removes the last object from this {@code LinkedList}.
651 Link<E> last = voidLink.previous; local
652 if (last != voidLink)
    [all...]
  /external/clearsilver/cgi/
rfc2388.c 367 char *last = NULL; local
439 if (last) fwrite (last, sizeof(char), strlen(last), fp);
442 last = "\r\n";
447 last = "\n";
450 else last = NULL;
  /external/wpa_supplicant_6/wpa_supplicant/
config.c 419 int val = 0, last, errors = 0; local
435 last = *end == '\0';
448 if (last)
503 int val = 0, last, errors = 0; local
519 last = *end == '\0';
553 if (last)
666 int val = 0, last; local
682 last = *end == '\0';
701 if (last)
845 int val = 0, last, errors = 0 local
945 int last, errors = 0; local
1667 struct wpa_ssid *ssid, *last = NULL; local
    [all...]
  /external/freetype/src/autofit/
afcjk.c 136 AF_Point last = seg->last; local
143 for ( ; pt != last; f0 = f1 )
151 if ( pt == last )
183 if ( seg1->first == seg1->last )
443 edge->last = seg;
454 found->last->edge_next = seg;
455 found->last = seg;
    [all...]
  /external/fsck_msdos/
dir.c 440 int i, j, k, last; local
459 last = boot->RootDirEnts * 32;
462 last = boot->SecPerClust * boot->BytesPerSec;
472 if (read(f, buffer, last) != last) {
476 last /= 32;
480 for (p = buffer, i = 0; i < last; i++, p += 32) {
840 last *= 32;
842 || write(f, buffer, last) != last) {
    [all...]
  /external/icu4c/test/perf/collperf/
collperf.cpp 44 UNIT * last(){return data + index[count - 1];} \
748 memcpy(icu_data->last(), line, len * sizeof(UChar));
749 icu_data->last()[len -1] = NULL;
790 t = ucol_getSortKey(col, icu_data->dataOf(i), -1,icu_key->last(), s);
801 t = ucnv_fromUChars(conv,posix_data->last(), s, icu_data->dataOf(i), icu_data->lengthOf(i), &status);
804 posix_data->last()[s] = 0;
810 t = strxfrm(posix_key->last(), posix_data->dataOf(i), s);
816 memcpy(win_data->last(), icu_data->dataOf(i), sizeof(WCHAR) * s);
822 t = LCMapStringW(win_langid, LCMAP_SORTKEY, win_data->dataOf(i), win_data->lengthOf(i), (WCHAR *)(win_key->last()),s);
832 rnd_index[i].posix_key = posix_key->last();
    [all...]
  /external/skia/src/animator/
SkDisplayApply.cpp 472 SkOperand* last = new SkOperand[count]; local
473 SkAutoTDelete<SkOperand> autoLast(last);
475 info->getValue(target, last, count);
483 last[0] = scriptValue.fOperand;
489 memcpy(save, last, count * sizeof(SkOperand));
757 SkTDOperandArray last; local
762 last.setCount(count);
763 memcpy(last.begin(), fActive->fSaveRestore[activeIndex], count * sizeof(SkOperand));
768 info->setValue(target, last.begin(), count);
778 scriptValue.fOperand = last[0]
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/
String.java 294 int idx = start, last = start + length, s = 0; local
296 while (idx < last) {
321 if (idx + utfCount > last) {
1056 int last = _offset + _count; local
1088 int last = _offset + count; local
1444 int last = _offset + _count; local
1781 int start = offset, last = offset + count - 1; local
    [all...]
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 861 // Tracker object is the last thing in the dom, checking for null in the
960 FocusTracker* last = &tracker.last(); local
1345 FocusTracker* last = &tracker.last(); local
2898 Node* last = NULL; local
    [all...]
  /external/openssl/crypto/des/
des.c 370 int num=0,j,k,l,rem,ll,len,last,ex=0; local
622 last=obuf[l-1];
624 if ((last > 7) || (last < 0))
629 last=0;
631 l=l-8+last;
  /external/oprofile/daemon/
opd_ibs.c 600 struct sfile * last = trans->last; local
627 hash = last->hashval & (CG_HASH_SIZE - 1);
630 * 'last', we use its hash.
634 if (sfile_equal(last, &cg->to)) {
641 sfile_dup(&cg->to, last);
647 opd_open_sample_file(file, last, sf, counter, is_cg);
  /external/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 354 bool last = false; local
357 last = true;
390 if (last)
453 bool last = false; local
456 last = true;
490 if (last)
652 /* Update last message with truncated version of the event */
  /frameworks/base/awt/java/awt/image/
ColorConvertOp.java 225 if (dst != conversionLast && dst != null) { // Add last profile if
233 sequence.add(dst); // Add last non-ICC color space to the
238 if (iccSequenceStarted) { // Make last transform if needed
241 sequence.add(dst); // Add last non-ICC color space to the
387 Object last = conversionSequence[conversionSequence.length - 1]; local
392 dstPf = (ICC_Profile)last;
403 if (last instanceof ICC_Profile) {
404 dstPf = (ICC_Profile)last;
407 nDstColorComps = ((ColorSpace)last).getNumComponents();
450 ColorSpace dstCS = (dstPf == null) ? (ColorSpace)last : new ICC_ColorSpace(dstPf)
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceProcessorTest.java 72 String last) throws Exception {
151 if (last != null && last.length() > 0) {
153 expectedLast.parse(last);
159 Log.i(TAG, "Expected: " + last + "; Actual: " + lastStr);
163 throw new RuntimeException("expected last occurrence date does not match."
164 + " expected=" + last
    [all...]
  /external/v8/src/ia32/
jump-target-ia32.cc 68 __ jmp(&merge_labels_.last());
139 cgen()->masm()->j(cc, &merge_labels_.last(), hint);
163 __ call(&merge_labels_.last());

Completed in 632 milliseconds

<<11121314151617181920>>