/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
stl_multimap.h | 204 * @param last An input iterator. 207 * [first,last). This is linear in N if the range is already sorted, 208 * and NlogN otherwise (where N is distance(first,last)). 218 * @param last An input iterator. 223 * [first,last). This is linear in N if the range is already sorted, 224 * and NlogN otherwise (where N is distance(first,last)). 319 * Returns a read/write iterator that points one past the last pair in 328 * Returns a read-only (constant) iterator that points one past the last 337 * Returns a read/write reverse iterator that points to the last pair in 347 * last pair in the %multimap. Iteration is done in descending orde [all...] |
forward_list.h | 488 * @param last An input iterator. 492 * [@a first,@a last). This is linear in N (where N is 493 * distance(@a first,@a last)). 596 * @param last An input iterator. 599 * in the range [@a first,@a last). 687 * Returns a read/write iterator that points one past the last 696 * Returns a read-only iterator that points one past the last 724 * the last element in the %forward_list. Iteration is done in 874 * @return An iterator pointing to the last inserted copy of 890 * @param last An input iterator [all...] |
/development/samples/BackupRestore/src/com/example/android/backuprestore/ |
ExampleAgent.java | 74 * blob describing the last dataset backed up. The state file 81 * it can detect that the last backup operation was performed by an 105 // our last backup, so that we can avoid transmitting redundant 143 * the last backup operation; <code>false</code> otherwise. 152 // Whoops; the last version of the app that backed up 245 // The last thing to do is write the state blob that describes the
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
TreeSetTest.java | 78 "Answered incorrect last element--did not use custom comparator ", 79 myTreeSet.last().equals(new Integer(1))); 228 * @tests java.util.TreeSet#last() 231 // Test for method java.lang.Object java.util.TreeSet.last() 232 assertTrue("Returned incorrect last element", 233 ts.last() == objArray[objArray.length - 1]);
|
/external/bluetooth/bluedroid/stack/a2dp/ |
a2d_sbc.c | 342 ** last: 1, if the last packet of a fragmented frame. 353 void A2D_BldSbcMplHdr(UINT8 *p_dst, BOOLEAN frag, BOOLEAN start, BOOLEAN last, UINT8 num) 362 if(last) 382 ** last: 1, if the last packet of a fragmented frame.
|
/external/icu4c/i18n/ |
rbt_pars.h | 111 * The last available stand-in for variables. This is discovered 185 * at pos. Return the index after the last character parsed. Do not 197 * @param limit pointer past the last character of the rule. 198 * @return the index after the last character parsed. 236 * @param limit pointer past the last character of the rule. 246 * @param limit pointer past the last character of the rule.
|
/external/icu4c/layoutex/layout/ |
plruns.h | 109 * Get the limit index for the last font run. This is the 114 * @return the last limit index. 242 * Get the limit index for the last value run. This is the 247 * @return the last limit index. 374 * Get the limit index for the last font run. This is the 379 * @return the last limit index.
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/ |
GeoMap.java | 180 if (x == getWidth() - 1) { // case #4 : last row, last col 186 } else { // case #3 : last row, except for last col 194 if (x == getWidth() - 1) { // case #2 : last column except for last row
|
/external/libppp/src/ |
throughput.c | 121 "(over the last %d secs)\n", 284 char *time_buf, *last; local 287 last = time_buf + strlen(time_buf); 288 if (last > time_buf && *--last == '\n') 289 *last = '\0';
|
/external/llvm/lib/Target/Mips/ |
MipsInstrInfo.cpp | 83 // for both int and fp branches, the last explicit operand is the 216 // Get the second to last instruction in the block. 249 // If second to last instruction is an unconditional branch, 250 // analyze it and remove the last instruction. 252 // Return if the last instruction cannot be removed. 263 // The last one must be unconditional.
|
/external/webkit/Source/WebCore/page/ |
FrameTree.cpp | 313 // top view is always the last one in this ordering, so prev is nil without wrap 320 for (Frame* last = lastChild(); last; last = last->tree()->lastChild()) 321 result = last;
|
/frameworks/base/tests/HugeBackup/src/com/android/hugebackup/ |
HugeAgent.java | 75 * blob describing the last dataset backed up. The state file 82 * it can detect that the last backup operation was performed by an 106 // our last backup, so that we can avoid transmitting redundant 155 * the last backup operation; <code>false</code> otherwise. 164 // Whoops; the last version of the app that backed up 257 // The last thing to do is write the state blob that describes the
|
/hardware/qcom/display/liboverlay/ |
overlayMdp.h | 49 * Set would always consult last good known ov instance. 51 * On a sucess ioctl. last good known ov instance is updated */ 118 * than last known good overlay */ 120 /* save mOVInfo to be last known good ov*/ 122 /* restore last known good ov to be the current */ 126 /* last good known ov info */
|
/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') {
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
stl_numeric.h | 73 * For each element in the range @p [first,last) assigns @p value and 111 * Accumulates the values in the range [first,last) using operator+(). The 135 * Accumulates the values in the range [first,last) using the function 225 * Accumulates the values in the range [first,last) using the @c + operator. 264 * Accumulates the values in the range [first,last) using @p __binary_op. 306 * [first,last) using operator-() and writes the result to @p __result.
|
stl_algobase.h | 426 * @brief Copies the range [first,last) into result. 431 * @return result + (first - last) 437 * [first,last); the copy_backward function should be used instead. 440 * within [first,last). 459 * @brief Moves the range [first,last) into result. 464 * @return result + (first - last) 470 * [first,last); the move_backward function should be used instead. 473 * within [first,last). 594 * @brief Copies the range [first,last) into result. 599 * @return result - (first - last) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
Xlib.h | 554 unsigned long last_request_read; /* seq number of last event read */ 555 unsigned long request; /* sequence number of last request. */ 591 unsigned long serial; /* # of last request processed by server */ 609 unsigned long serial; /* # of last request processed by server */ 627 unsigned long serial; /* # of last request processed by server */ 644 unsigned long serial; /* # of last request processed by server */ 668 unsigned long serial; /* # of last request processed by server */ 687 unsigned long serial; /* # of last request processed by server */ 696 unsigned long serial; /* # of last request processed by server */ 707 unsigned long serial; /* # of last request processed by server * [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xlib.h | 554 unsigned long last_request_read; /* seq number of last event read */ 555 unsigned long request; /* sequence number of last request. */ 591 unsigned long serial; /* # of last request processed by server */ 609 unsigned long serial; /* # of last request processed by server */ 627 unsigned long serial; /* # of last request processed by server */ 644 unsigned long serial; /* # of last request processed by server */ 668 unsigned long serial; /* # of last request processed by server */ 687 unsigned long serial; /* # of last request processed by server */ 696 unsigned long serial; /* # of last request processed by server */ 707 unsigned long serial; /* # of last request processed by server * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xlib.h | 554 unsigned long last_request_read; /* seq number of last event read */ 555 unsigned long request; /* sequence number of last request. */ 591 unsigned long serial; /* # of last request processed by server */ 609 unsigned long serial; /* # of last request processed by server */ 627 unsigned long serial; /* # of last request processed by server */ 644 unsigned long serial; /* # of last request processed by server */ 668 unsigned long serial; /* # of last request processed by server */ 687 unsigned long serial; /* # of last request processed by server */ 696 unsigned long serial; /* # of last request processed by server */ 707 unsigned long serial; /* # of last request processed by server * [all...] |
/external/webkit/Tools/Scripts/ |
VCSUtils.pm | 111 # Args: pass the child error status returned by the last pipe close, 298 my $last = ''; 325 last if !$thisUUID; 327 last if $thisUUID ne $repositoryUUID; 329 last if !$thisRoot; 331 last if $thisRoot ne $repositoryRoot; 333 $last = $path; 337 return File::Spec->rel2abs($last); 505 last; 536 # the handle so the last line read is the first line after the header [all...] |
/external/fsck_msdos/ |
dir.c | 447 int last; local 461 last = boot->RootDirEnts * 32; 464 last = boot->SecPerClust * boot->BytesPerSec; 469 buf = malloc(last); 480 if (read(f, buf, last) != last) { 485 last /= 32; 531 int i, j, k, last; local 555 last = boot->RootDirEnts * 32; 558 last = boot->SecPerClust * boot->BytesPerSec [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
FocusHelper.java | 62 * A keyboard listener we set on the last tab button in AppsCustomize to jump to then 84 * Handles key events in a AppsCustomize tab between the last tab view and the shop button. 159 // Select the previous widget or the last widget on the previous page 242 // Select the first item on the next page, or the last item on this page 266 // Select the last item on this page 318 // Select the previous icon or the last icon on the previous page 402 // Select the first icon on the next page, or the last icon on this page 426 // Select the last icon on this page 463 // Select the next tab, or if the last tab has a focus right id, select that 680 // Select the previous icon or the last icon on the previous page if possibl [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
forward_list.h | 488 * @param last An input iterator. 492 * [@a first,@a last). This is linear in N (where N is 493 * distance(@a first,@a last)). 596 * @param last An input iterator. 599 * in the range [@a first,@a last). 687 * Returns a read/write iterator that points one past the last 696 * Returns a read-only iterator that points one past the last 724 * the last element in the %forward_list. Iteration is done in 874 * @return An iterator pointing to the last inserted copy of 890 * @param last An input iterator [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
forward_list.h | 488 * @param last An input iterator. 492 * [@a first,@a last). This is linear in N (where N is 493 * distance(@a first,@a last)). 596 * @param last An input iterator. 599 * in the range [@a first,@a last). 687 * Returns a read/write iterator that points one past the last 696 * Returns a read-only iterator that points one past the last 724 * the last element in the %forward_list. Iteration is done in 874 * @return An iterator pointing to the last inserted copy of 890 * @param last An input iterator [all...] |
/external/chromium/chrome/common/ |
pref_names.cc | 25 // Used to determine if the last session exited cleanly. Set to false when 32 // 1: restore the last session. 261 // Time when instant was last enabled. 486 // Map of timestamps of the last used file browser tasks. [all...] |