HomeSort by relevance Sort by last modified time
    Searched refs:last (Results 201 - 225 of 1447) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/utility/
SimpleIcsWriterTests.java 61 for (String last : new String[] {UTF8_1_BYTE, UTF8_2_BYTES, UTF8_3_BYTES, UTF8_4_BYTES}) {
63 String input = stringOfLength(i) + last;
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
SimpleIcsWriterTests.java 61 for (String last : new String[] {UTF8_1_BYTE, UTF8_2_BYTES, UTF8_3_BYTES, UTF8_4_BYTES}) {
63 String input = stringOfLength(i) + last;
  /packages/apps/Music/src/com/android/music/
RepeatingImageButton.java 121 private void doRepeat(boolean last) {
124 mListener.onRepeat(this, now - mStartTime, last ? -1 : mRepeatCount++);
136 * If this is going to be the last call in this sequence (i.e. the user
  /system/core/sh/
histedit.c 227 int first, last, direction; local
334 * determine [first] and [last]
357 last = str_to_event(laststr, 1);
360 i = last;
361 last = first;
369 direction = first < last ? H_PREV : H_NEXT;
422 * At end? (if we were to lose last, we'd sure be
425 if (he.num == last)
480 str_to_event(const char *str, int last)
507 * the notion of first and last i
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashingTest.java 52 int last = 0; local
55 if (b != last) {
57 last = b;
75 int last = 0; local
78 if (chosen != last) {
80 last = chosen;
  /external/hyphenation/
substrings.c 127 char last = '.'; local
131 if ( (last<'0' || last>'9')
137 last = c;
139 if (last<'0' || last>'9') expr[el++] = '0';
156 // to the last substring-length bytes of expr except for the (single byte)
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SortUtil.java 53 last := 0
56 if (last != 0)
57 pos := last
58 last := 0
64 if (last == 0)
65 last := pos
78 int last = 0; local
83 if (last != 0){
84 pos = last;
85 last = 0
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 73 unsigned char FAR *last; /* while in < last, enough input available */ local
100 last = in + (strm->avail_in - 5);
285 } while (in < last && out < end);
296 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
  /external/v8/src/
safepoint-table.cc 95 int last = entry_size_ - 1; local
96 for (int i = first; i < last; i++) PrintBits(bits[i], kBitsPerByte);
97 int last_bits = code_->stack_slots() - ((last - first) * kBitsPerByte);
98 PrintBits(bits[last], last_bits);
143 return Safepoint(indexes_.last(), registers_.last());
  /external/zlib/
inffast.c 73 unsigned char FAR *last; /* while in < last, enough input available */ local
100 last = in + (strm->avail_in - 5);
307 } while (in < last && out < end);
318 strm->avail_in = (unsigned)(in < last ? 5 + (last - in) : 5 - (in - last));
  /libcore/luni/src/main/java/java/lang/
StringToReal.java 252 char last = s.charAt(length - 1); local
253 if (last == 'y' || last == 'N') {
293 char last = s.charAt(length - 1); local
294 if (last == 'y' || last == 'N') {
  /libcore/luni/src/main/java/java/util/
MiniEnumSet.java 61 private E last; field in class:MiniEnumSet.MiniEnumSetIterator
73 last = enums[ordinal];
78 return last;
82 if (last == null) {
86 MiniEnumSet.this.remove(last);
87 last = null;
  /libcore/luni/src/main/java/libcore/net/http/
RawHeaders.java 96 int last = mark + 3; local
97 if (last > statusLine.length()) {
98 last = statusLine.length();
100 this.responseCode = Integer.parseInt(statusLine.substring(mark, last));
101 if (last + 1 <= statusLine.length()) {
102 this.responseMessage = statusLine.substring(last + 1);
219 * Returns the last value corresponding to the specified field, or null.
281 * present, the null field's last element will be used to set the status
  /external/skia/src/utils/
SkJSON.cpp 431 int last = fCount - 1; local
436 for (int i = 0; i <= last; ++i) {
443 SkDebugf(i < last ? "}," : "}");
445 SkDebugf(i < last ? "null," : "null");
452 for (int i = 0; i <= last; ++i) {
459 SkDebugf(i < last ? "]," : "]");
461 SkDebugf(i < last ? "null," : "null");
467 for (int i = 0; i < last; ++i) {
471 const char* str = fArray.fStrings[last];
475 for (int i = 0; i < last; ++i)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
TokenRewriteStream.js 288 var programName, first, last, text;
292 last = arguments[0];
297 last = arguments[1];
302 last = arguments[2];
310 if (last instanceof org.antlr.runtime.Token) {
311 last = last.index; // that's ugly
314 if ( first > last || last<0 || first<0 ) {
319 new trs.ReplaceOp(first, last, text))
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObjectChildList.cpp 301 RenderObject* last = const_cast<RenderObject*>(owner); local
303 last = last->lastChild();
304 } while (last && last->isAnonymous() && last->style()->styleType() == NOPSEUDO && !last->isListMarker());
305 if (last && last->style()->styleType() != AFTER)
307 return last;
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
JavaPerformanceDetector.java 196 typeName = reference.astParts().last().astIdentifier().astValue();
208 typeName = reference.astParts().last().astIdentifier().astValue();
383 TypeReferencePart type = arg0.astTypeReference().astParts().last();
411 TypeReferencePart type = iterator.next().astTypeReference().astParts().last();
416 type = iterator.next().astTypeReference().astParts().last();
440 VariableDefinition arg1 = parameters.last();
441 TypeReferencePart type1 = arg0.astTypeReference().astParts().last();
442 TypeReferencePart type2 = arg1.astTypeReference().astParts().last();
465 TypeReferencePart type = next.astTypeReference().astParts().last();
489 String valueType = types.last().getTypeName()
    [all...]
  /external/openssh/
loginrec.c 58 * (utmp and friends) and last login time retrieval.
89 * Retrieving the time of last login ('lastlog') is in some ways even
95 * we look backwards in the wtmp or wtmpx file for the last login entry
128 * getlast_entry(), which tries one of three methods to find the last
258 * login_get_lastlog_time(int) - Retrieve the last login time
260 * Retrieve the last login time for the given uid. Will try to use the
309 * reliably search wtmp(x) for the last login (see
502 ** getlast_entry: Call low-level functions to retrieve the last login
506 /* take the uid in li and return the last login time */
519 /* On some systems we shouldn't even try to obtain last logi
1536 struct lastlog last; local
1589 struct lastlog last; local
    [all...]
  /external/libxslt/libxslt/
templates.c 517 ret->children = ret->last = NULL;
543 ret->last = ret->children = text;
619 xmlAttrPtr attr, copy, last; local
635 last = target->properties;
636 while (last->next != NULL)
637 last = last->next;
639 last = NULL;
695 if (last == NULL) {
697 last = copy
    [all...]
  /external/zlib/examples/
gzlog.c 18 valid state. The last data to be appended or compressed is saved in an
22 gzlog maintains another auxiliary file with the last 32K of data from the
32 foo.add -- last message to append or last data to compress
33 foo.dict -- dictionary of the last 32K of data for next compression
48 extra field has the necessary information to restore the start of the last
115 - Pointer to the last stored block length. This is the same as above, but
116 for the last stored block of the uncompressed data in the gzip file.
119 stored block as added, at which point the last stored block length pointer
121 different, the first bit of the last stored block header is eight bits, o
297 off_t last; \/* offset of last stored block first length byte *\/ member in struct:log
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingDeque.java 65 * or "last" (for prev links).
107 * Invariant: (first == null && last == null) ||
113 * Pointer to last node.
114 * Invariant: (first == null && last == null) ||
115 * (last.next == null && last.item != null)
117 transient Node<E> last; field in class:LinkedBlockingDeque
192 if (last == null)
193 last = node;
202 * Links node as last element, or returns false if full
    [all...]
  /external/bluetooth/glib/gio/
gthemedicon.c 158 char *last; local
168 last = g_strdup (themed->names[0]);
173 themed->names[i++] = last;
175 while ((dashp = strrchr (last, '-')) != NULL)
176 themed->names[i++] = last = g_strndup (last, dashp - last);
  /external/valgrind/tsan/
suppressions.cc 81 bool NextStackTraceTemplate(StackTraceTemplate* trace, bool* last);
153 const char* last = e - 1; local
154 while (last > p && (*last == ' ' || *last == '\t'))
155 --last;
156 return string(p, last - p + 1);
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 450 last;
455 last;
471 last;
477 last;
482 last;
538 last;
549 last;
575 last;
579 last;
584 last;
    [all...]
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java 99 * <p>Years are handled specially: {@code yy} truncates to the last 2 digits, but any
285 int next, last = -1, count = 0; local
292 validateFormat((char) last);
295 if (last == next) {
296 last = -1;
298 last = next;
304 && (last == next || (next >= 'a' && next <= 'z') || (next >= 'A' && next <= 'Z'))) {
305 if (last == next) {
309 validateFormat((char) last);
311 last = next
535 int next, last = -1, count = 0; local
    [all...]

Completed in 1423 milliseconds

1 2 3 4 5 6 7 891011>>