Searched refs:last (Results 151 - 175 of 742) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Dtime_win_unittest.cc49 TimeTicks last = TimeTicks::Now(); local
52 int64 milliseconds = (now - last).InMilliseconds();
57 last = now;
/external/e2fsprogs/misc/
H A Dfindsuper.c80 * has the last time e2fsck or tune2fs wrote to the filesystem.
119 time_t tm, last = time(0); local
198 diff = now - last;
211 last = now;
/external/guava/src/com/google/common/base/
H A DCharMatcher.java790 * Returns the index of the last matching character in a character sequence,
969 int last;
976 for (last = len - 1; last > first; last--) {
977 if (!matches(sequence.charAt(last))) {
982 return sequence.subSequence(first, last + 1).toString();
1018 int last;
1020 for (last = len - 1; last >
[all...]
/external/yaffs2/yaffs2/
H A Ddevextras.h167 struct list_head *last = list->prev; local
173 last->next = at;
174 at->prev = last;
/external/zlib/
H A Dinflate.c46 * - Unroll last copy for window match in inflate_fast()
114 state->last = 0;
345 Update the window with the last wsize (normally 32K) bytes written before
353 advantage, since only the last 32K of output is copied to the sliding window
573 When there is a window, goto inf_leave will update the window with the last
603 code last; /* parent table entry */ local
813 if (state->last) {
819 state->last = BITS(1);
824 state->last ? " (last)"
[all...]
/external/chromium/base/memory/
H A Dlinked_ptr.h6 // particular object is kept on a circular linked list. When the last pointer
9 // Used properly, this deletes the object when the last reference goes away.
64 // last member of the circle. Once this is done, you can join() another.
121 bool last = link_.depart(); local
122 CHECK(last);
/external/chromium/chrome/browser/autofill/
H A Dcontact_info.h35 // Returns the full name, which can include up to the first, middle, and last
45 const string16& last() const { return last_; } function in class:NameInfo
53 // Returns true if |text| is the last name.
59 // Returns true if |text| is the last name.
79 // Sets |last_| to |last| and |last_tokens_| to the set of tokens in |last|,
81 void SetLast(const string16& last);
/external/freetype/src/base/
H A Dftbbox.c37 FT_Vector last; member in struct:TBBox_Rec_
51 /* in `user->last'; no further computations are necessary since we */
67 user->last = *to;
171 BBox_Conic_Check( user->last.x,
178 BBox_Conic_Check( user->last.y,
184 user->last = *to;
340 /* always compare first and last points */
542 BBox_Cubic_Check( user->last.x,
551 BBox_Cubic_Check( user->last.y,
558 user->last
[all...]
/external/icu4c/samples/break/
H A Dbreak.cpp58 int32_t end = boundary.last();
75 /* Print the last element */
78 int32_t end = boundary.last();
130 //print last element
131 puts("----- last: --------------");
/external/libffi/testsuite/libffi.call/
H A Dpyobjc-tc.c25 int doit(int o, char* s, Point p, Rect r, int last) argument
28 o, s, p.x, p.y, r.o.x, r.o.y, r.s.h, r.s.w, last);
/external/oprofile/libpp/
H A Dsymbol_container.cpp72 it last = symbols_by_loc.upper_bound(&symbol); local
75 for ( ; first != last ; ++first)
/external/proguard/src/proguard/gui/
H A DTabbedPane.java185 * Selects the last tab.
187 public void last() method in class:TabbedPane
189 cardLayout.last(cardPanel);
/external/qemu/distrib/sdl-1.2.12/src/cdrom/dc/
H A DSDL_syscdrom.c85 cdrom->numtracks = TOC_TRACK(toc.last)-TOC_TRACK(toc.first)+1;
91 cdrom->track[i].length = TOC_LBA((i+1<toc.last)?toc.entry[i+1]:toc.leadout_sector)-TOC_LBA(entry);
/external/stlport/test/unit/
H A Dfind_test.cpp130 char *last = find(pstr, pstr + str_size, 'x'); local
131 CPPUNIT_ASSERT( last == pstr + str_size );
/external/valgrind/main/coregrind/
H A Dm_xarray.c229 /*OUT*/Word* first, /*OUT*/Word* last,
237 vg_assert(last);
251 *first = *last = mid;
255 while (*last < xa->usedsizeE-1
256 && 0 == cmpFn( key, VG_(indexXA)(xa, (*last)+1)))
257 (*last)++;
263 /*OUT*/Word* first, /*OUT*/Word* last )
269 return VG_(lookupXA_UNSAFE)(xao, key, first, last, xa->cmpFn);
228 lookupXA_UNSAFE( XArray* xao, void* key, Word* first, Word* last, Int(*cmpFn)(void*,void*) ) argument
/external/webkit/Source/WebCore/bindings/gobject/
H A DDOMObjectCache.cpp83 Vector<DOMObjectCacheData*>::iterator last = toUnref.end(); local
84 for (Vector<DOMObjectCacheData*>::iterator it = toUnref.begin(); it != last; ++it) {
97 // If this is the last unref we are going to do,
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontWinCE.cpp134 offset += add + letterSpacing + components->last().m_width;
148 offset += components->last().m_width + letterSpacing;
156 offset += wordSpacing + add + components->last().m_width + letterSpacing;
164 offset += components->last().m_width + letterSpacing;
172 offset += components->last().m_width;
183 offset += components->last().m_width;
192 offset += add + components->last().m_width;
202 offset += components->last().m_width;
H A DPlatformPathWinCE.cpp209 if (poly.isEmpty() || poly.last() != p)
215 const PathPoint& startPoint = poly.last();
231 if (poly.isEmpty() || poly.last() != data.m_end)
333 const PathPoint* point1 = &last();
334 Vector<PathPoint>::const_iterator last = end(); local
337 for (Vector<PathPoint>::const_iterator i = begin(); i != last; ++i) {
371 j = last;
487 m_subpaths.last().append(m_currentPoint);
500 if (m_currentPoint != m_subpaths.last()[0]) {
502 m_subpaths.last()
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DFileSystemMac.mm54 ASSERT(temporaryFilePath.last() == '/');
/external/webkit/Tools/Scripts/
H A Drun-javascriptcore-tests138 last if /failures reported\.$/;
150 last if /failures reported\.$/;
/external/zlib/examples/
H A Dgzappend.c52 block boundary to facilitate locating and modifying the last block bit at
55 number of unusued bits in the last input byte used. gzappend will not work
59 the last 32K of uncompressed data, and noting the location of the last block
60 bit and the number of unused bits in the last byte of the compressed data.
64 Then the last block bit is cleared by seeking back in the file and rewriting
65 the byte that contains it. Seeking forward, the last byte of the compressed
68 A deflate process is initialized, using the last 32K of the uncompressed
72 last bits from the original deflate stream. From here on, the data to
125 unsigned char *start, *last, *t local
386 gztack(char *name, int gd, z_stream *strm, int last) argument
[all...]
/external/oprofile/daemon/
H A Dopd_sfile.c300 struct sfile * last = trans->last; local
320 hash = last->hashval & (CG_HASH_SIZE - 1);
323 * 'last', we use its hash.
327 if (sfile_equal(last, &cg->to)) {
334 sfile_dup(&cg->to, last);
340 opd_open_sample_file(file, last, sf, trans->event, is_cg);
400 if (trans->last->kernel)
401 to -= trans->last->kernel->start;
406 if (trans->last
[all...]
/external/v8/test/cctest/
H A Dtest-cpu-profiler.cc187 CHECK_EQ("bbb", top_down_root_children->last()->entry()->name());
189 top_down_root_children->last()->children();
191 CHECK_EQ("5", top_down_bbb_children->last()->entry()->name());
193 top_down_bbb_children->last()->children();
195 CHECK_EQ("ddd", top_down_stub_children->last()->entry()->name());
197 top_down_stub_children->last()->children();
212 CHECK_EQ("bbb", bottom_up_stub_children->last()->entry()->name());
219 CHECK_EQ("5", bottom_up_ddd_children->last()->entry()->name());
221 bottom_up_ddd_children->last()->children();
223 CHECK_EQ("bbb", bottom_up_ddd_stub_children->last()
[all...]
/external/fsck_msdos/
H A Ddir.c447 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
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dinflate.c46 * - Unroll last copy for window match in inflate_fast()
114 state->last = 0;
310 Update the window with the last wsize (normally 32K) bytes written before
318 advantage, since only the last 32K of output is copied to the sliding window
538 When there is a window, goto inf_leave will update the window with the last
568 code last; /* parent table entry */ local
776 if (state->last) {
782 state->last = BITS(1);
787 state->last ? " (last)"
[all...]

Completed in 1675 milliseconds

1234567891011>>