Searched
full:last (Results
676 -
700 of
13702) sorted by null
<<21222324252627282930>>
/external/smack/src/org/jivesoftware/smack/util/ |
StringUtils.java | 533 int last=0; local 542 if (i > last) { 543 out.append(input, last, i - last); 545 last = i + 1; 549 if (i > last) { 550 out.append(input, last, i - last); 552 last = i + 1; 557 if (i > last) { [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...] |
/bionic/libc/arch-mips/bionic/ |
cacheflush.c | 84 * "end" points to the last byte of the line before the last cache line. 86 * "end" to the last byte.
|
/bootable/recovery/edify/ |
README | 56 As shown in the last example, function names are just strings, 80 The last example is equivalent to: 87 expression. Their value is the value of the last-evaluated
|
/dalvik/dx/tests/031-bb-dead-code/ |
blort.j | 26 ; dead code after the last reachable instruction in a method 32 ; dead code after the last reachable instruction in a method 39 ; dead code after the last reachable instruction in a method
|
/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/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRPtrStack.m | 80 * Last Revision 9/03/90 104 * Last Revision 9/03/90 130 * Last Revision 9/03/90
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
StringCharacterIteratorTest.java | 249 * @tests java.text.StringCharacterIterator.last() 253 assertEquals('e', fixture.last()); 255 assertEquals('e', fixture.last()); 257 assertEquals('e', fixture.last()); 260 assertEquals('e', fixture.last()); 262 assertEquals('t', fixture.last()); 384 assertEquals('x', fixture.last()); 451 it1.last(); 486 * @tests java.text.StringCharacterIterator#last() 491 assertEquals("Wrong last char", 'n', it1.last()) [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
Counter.java | 72 * Value to store result of last getCount call, for benifit 146 * Get the last node in the list. 148 * @return the last node in the list.
|
/external/chromium/chrome/browser/prefs/ |
session_startup_pref.cc | 29 case SessionStartupPref::LAST: return kPrefValueLast; 38 case kPrefValueLast: return SessionStartupPref::LAST; 97 // preferences panels can show the user their last choice.
|
/external/chromium/chrome/browser/ui/find_bar/ |
find_tab_helper.h | 21 // last remembered search string as specified with set_find_string(). This 98 // Whether the last search was case sensitive or not. 101 // The last find result. This object contains details about the number of
|
/external/chromium/net/tools/flip_server/ |
balsa_headers_token_utils.cc | 32 DLOG(WARNING) << "Attempting to remove last token from a non-existent " 37 // Find the last line with that key. 75 // Find the last line
|
/external/chromium/third_party/libjingle/source/talk/base/ |
time.cc | 44 const uint32 LAST = 0xFFFFFFFF; 113 return static_cast<long>(later + (LAST - earlier) + 1); 119 return -static_cast<long>(earlier + (LAST - later) + 1);
|
/external/grub/stage2/ |
disk_inode.h | 69 mach_time_t ic_atime; /* 16: time last accessed */ 71 mach_time_t ic_mtime; /* 24: time last modified */ 73 mach_time_t ic_ctime; /* 32: last time inode changed */
|