HomeSort by relevance Sort by last modified time
    Searched defs:last (Results 251 - 275 of 521) sorted by null

<<11121314151617181920>>

  /frameworks/base/services/java/com/android/server/
NativeDaemonConnector.java 278 * Note: The format of the last response in this case is
306 int last = rsp.size() -1; local
307 if (i != last) {
308 Slog.w(TAG, String.format("Recv'd %d lines after end of list {%s}", (last-i), cmd));
309 for (int j = i; j <= last ; j++) {
  /hardware/ti/omap4xxx/
heaptracker.c 91 static struct hdr *last; variable in typeref:struct:hdr
162 static inline void __add(struct hdr *hdr, struct hdr **first, struct hdr **last)
165 hdr->next = *last;
166 if (*last)
167 (*last)->prev = hdr;
170 *last = hdr;
173 static inline int __del(struct hdr *hdr, struct hdr **first, struct hdr **last)
178 *last = hdr->next;
194 __add(hdr, &first, &last);
204 __del(hdr, &first, &last);
    [all...]
  /libcore/luni/src/main/java/java/net/
HttpURLConnection.java 602 int last = mark + 3; local
603 if (last > response.length()) {
604 last = response.length();
606 responseCode = Integer.parseInt(response.substring(mark, last));
607 if (last + 1 <= response.length()) {
608 responseMessage = response.substring(last + 1);
  /libcore/luni/src/main/java/java/text/
AttributedString.java 139 * @return the index one past the last character to iterate.
345 public char last() { method in class:AttributedString.AttributedIterator
477 * {@code iterator}, {@code end} is greater than the last
504 * {@code iterator}, {@code end} is greater than the last index +
  /libcore/luni/src/main/java/java/util/
BitSet.java 250 int last = 64 * longCount; local
251 if (fromIndex >= last || fromIndex == toIndex) {
254 if (toIndex > last) {
255 toIndex = last;
273 // first fill in the first and last indexes in the new BitSet
291 // apply the last x bits of newBits[i+1] to the current
387 int last = 64 * longCount; local
388 if (fromIndex >= last) {
391 if (toIndex > last) {
392 toIndex = last;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 85 * - There is exactly one (last) Node with a null next reference,
86 * which is CASed when enqueueing. This last Node can be
116 * to be two or more steps away from the first/last node.
191 * A node from which the last node on list (that is, the unique
194 * - the last node is always reachable from tail via succ()
286 // p is last node
476 Node<E> beginningOfTheEnd = null, last = null; local
481 beginningOfTheEnd = last = newNode;
483 last.lazySetNext(newNode);
484 last = newNode
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldAttributedStringTest.java 274 public char last() { method in class:OldAttributedStringTest.testAttributedCharacterIterator
  /libcore/support/src/test/java/tests/support/
Support_Configuration.java 212 int last = 0; local
215 int dot = InetTestIP.indexOf('.', last);
217 last, dot));
218 last = dot + 1;
220 addr[3] = (byte) Integer.parseInt(InetTestIP.substring(last));
233 int last = 0; local
236 int dot = nonLocalAddressBytesString.indexOf('.', last);
239 last, dot));
240 last = dot + 1;
243 .substring(last));
    [all...]
  /ndk/sources/cxx-stl/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);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
NinePatchTexture.java 259 // the last fixed segment
264 int last = 0; local
266 if ((x[i] - x[last]) < 1f) continue;
267 x[++last] = x[i];
268 u[last] = u[i];
270 return last + 1;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
AttrsXmlParser.java 367 String last = null; local
372 unknownParents.put(name, last);
374 last = name;
377 parent = last;
  /bionic/libc/netbsd/isc/
eventlib_p.h 166 evWait * last; member in struct:evWaitList
  /external/bluetooth/glib/glib/
gmem.c 675 GAllocator *last; member in struct:_GAllocator
guniprop.c 811 const char *last = NULL; local
821 last = p;
907 gsize char_len = g_utf8_skip[*(guchar *)last];
910 memcpy (out_buffer + len, last, char_len);
986 const char *last = NULL; local
995 last = p;
1096 gsize char_len = g_utf8_skip[*(guchar *)last];
1099 memcpy (out_buffer + len, last, char_len);
    [all...]
gutf8.c 245 /* only do the last len increment if we got a complete
292 * instead of forwards if @offset is in the last fourth of the string,
1600 const gchar *last; local
1669 const gchar *last; local
    [all...]
  /external/bluetooth/glib/tests/
queue-test.c 17 GList *last; local
32 last = NULL;
36 last = list;
40 g_assert (last == queue->tail);
43 last = NULL;
47 last = list;
51 g_assert (last == queue->head);
155 enum { OFF_QUEUE, HEAD, TAIL, MIDDLE, LAST } where;
158 where = g_random_int_range (OFF_QUEUE, LAST);
160 where = g_random_int_range (HEAD, LAST);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager.cc 736 std::string::size_type last = s.find_last_not_of(drop); local
738 if (first == std::string::npos || last == std::string::npos)
741 return s.substr(first, last - first + 1);
  /external/elfutils/src/
ld.c 230 /* The last file we processed. */
366 /* Process the last file. */
419 struct scninfo *runp = h->last;
429 while ((runp = runp->next) != h->last);
777 pointer in the record for the last object of the group. If
979 struct file_list *last = input_file_list; local
981 last->next = NULL;
    [all...]
  /external/freetype/src/autofit/
afhints.c 828 AF_Point point, first, last; local
835 last = seg->last;
842 if ( point == last )
854 AF_Point point, first, last; local
861 last = seg->last;
868 if ( point == last )
949 /* is the point after the last edge? */
1241 else /* interpolate the last part *
    [all...]
afhints.h 286 AF_Point last; /* last point in edge segment */ member in struct:AF_SegmentRec_
308 AF_Segment last; /* last segment in edge */ member in struct:AF_EdgeRec_
  /external/fsck_msdos/
dir.c 447 int last; local
461 last = boot->RootDirEnts * 32;
464 last = boot->SecPerClust * boot->BytesPerSec;
469 buf = malloc(last);
479 if (read(f, buf, last) != last) {
483 last /= 32;
529 int i, j, k, last; local
553 last = boot->RootDirEnts * 32;
556 last = boot->SecPerClust * boot->BytesPerSec
    [all...]
  /external/icu4c/common/
rbbi.cpp 479 int32_t RuleBasedBreakIterator::last(void) { function in class:RuleBasedBreakIterator
543 * Advances the iterator backwards, to the last boundary preceding this one.
544 * @return The position of the last boundary position preceding this one.
588 // the current position), but not necessarily the last one before
605 // starting point. The last break position before the starting
625 // set the current iteration position to be the last break position
671 last();
725 // we don't back up at all). This may or may not be the last break
746 * Sets the iterator to refer to the last boundary position before the
749 * @return The position of the last boundary before the starting position
    [all...]
  /external/icu4c/i18n/
ucol_tok.h 51 UColToken* last; member in struct:__anon6288
132 uint32_t lastStarredCharIndex; /* Index to the last character in the starred expression. */
137 UChar32 lastRangeCp; /* The last code point in the range. */
  /external/icu4c/test/intltest/
citrtest.cpp 67 virtual UChar last(){return DONE;}; function in class:SCharacterIterator
424 c = iter.last();
522 c = iter.last();
1097 virtual UChar last() { function in class:SubCharIter
    [all...]
  /external/libxml2/
SAX2.c 1110 * Do the last stage of the attribute normalization
2148 xmlNsPtr last = NULL, ns; local
    [all...]

Completed in 1475 milliseconds

<<11121314151617181920>>