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

1 2 3 4 5 6 7 891011>>

  /external/webkit/WebCore/history/
BackForwardList.cpp 70 RefPtr<HistoryItem> item = m_entries.last();
167 int last = min(m_current + limit, lastEntry); local
169 for (; limit <= last; ++limit)
182 RefPtr<HistoryItem> item = m_entries.last();
  /external/webkit/WebCore/platform/
DeprecatedPtrListImpl.h 61 void *last();
  /external/webkit/WebCore/platform/wince/
FileSystemWince.cpp 119 if (buffer.last() != L'\\' && buffer.last() != L'/'
260 if (pattern.last() != L'/' && pattern.last() != L'\\')
  /external/webkit/WebKitTools/QtLauncher/
utils.cpp 46 result.append(keys.last());
  /external/webkit/WebKitTools/Scripts/
find-extra-includes 94 last;
  /external/wpa_supplicant/
eap_methods.c 319 struct eap_method *m, *last = NULL; local
330 last = m;
333 if (last)
334 last->next = method;
config.c 386 int val = 0, last, errors = 0; local
402 last = *end == '\0';
415 if (last)
468 int val = 0, last, errors = 0; local
484 last = *end == '\0';
502 if (last)
587 int val = 0, last; local
603 last = *end == '\0';
622 if (last)
760 int val = 0, last, errors = 0 local
858 int last, errors = 0; local
1463 struct wpa_ssid *ssid, *last = NULL; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_methods.c 319 struct eap_method *m, *last = NULL; local
330 last = m;
333 if (last)
334 last->next = method;
tncc.c 940 struct tnc_if_imc *imc, *last; local
943 last = tncc->imc;
944 while (last && last->next)
945 last = last->next;
1034 if (last == NULL)
1037 last->next = imc;
1038 last = imc;
1127 struct tnc_if_imc *imc, *last; local
    [all...]
  /frameworks/base/services/java/com/android/server/
NativeDaemonConnector.java 243 * Note: The format of the last response in this case is
271 int last = rsp.size() -1; local
272 if (i != last) {
273 Slog.w(TAG, String.format("Recv'd %d lines after end of list {%s}", (last-i), cmd));
274 for (int j = i; j <= last ; j++) {
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
PERF.awk 127 delta = $1 - last;
142 last = $1;
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/data_ctrl/Tx/
MsduList.h 62 mem_MSDU_T *last; /* Points to the last Msdu's is the list. */ member in struct:__anon13555
  /external/skia/src/xml/
SkParseColor.cpp 31 // !!! the bit to end the word (last) is at the low bit for binary search
198 bool last = false; local
213 if (len <= 6) { // last
215 last = true;
220 } while (last == false);
381 bool last = false; local
403 last = ch < 'a' || ch > 'z';
404 if (last)
408 } while (last == false && len > 0);
419 if ((*sixMatchPtr & 1) == 0) { // last
    [all...]
  /external/skia/src/core/
SkScan_Path.cpp 461 static SkEdge* sort_edges(SkEdge* list[], int count, SkEdge** last) {
470 *last = list[count - 1];
514 SkEdge headEdge, tailEdge, *last; local
515 // this returns the first and last edge after they're sorted into a dlink list
516 SkEdge* edge = sort_edges(list, count, &last);
524 tailEdge.fPrev = last;
527 last->fNext = &tailEdge;
672 SkEdge headEdge, tailEdge, *last; local
674 // this returns the first and last edge after they're sorted into a dlink list
675 SkEdge* edge = sort_edges(list, count, &last);
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
URLStreamHandler.java 145 // if there are square braces, ie. IPv6 address, use last ':'
191 int last = file.lastIndexOf('/') + 1; local
192 file = file.substring(0, last);
212 int last = file.lastIndexOf('/') + 1; local
213 if (last == 0) {
216 file = file.substring(0, last)
  /external/bluetooth/glib/glib/
gunidecomp.c 96 int last; local
98 last = COMBINING_CLASS (string[0]);
102 if (next != 0 && last > next)
118 next = last;
120 last = next;
  /external/webkit/WebCore/rendering/
RenderBlockLineLayout.cpp 97 // Check to see if our last midpoint is a start point beyond the line break. If so,
214 // the last item on the line.
222 // Get the last box we made for this render object.
304 // be the last continuation of our line list.
316 // Return the last line.
708 FloatingObject* lastFloat = m_floatingObjects ? m_floatingObjects->last() : 0;
987 RootInlineBox* last = 0; local
1110 RootInlineBox* last = 0; local
1437 RenderObject *last = o; local
    [all...]
  /external/freetype/src/autofit/
aflatin.c 229 FT_Int last = -1; local
232 for ( nn = 0; nn < glyph->outline.n_contours; first = last+1, nn++ )
238 last = glyph->outline.contours[nn];
243 if ( last <= first )
248 for ( pp = first; pp <= last; pp++ )
257 for ( pp = first; pp <= last; pp++ )
268 best_last = last;
711 AF_Point last = point->prev; local
718 if ( point == last ) /* skip singletons -- just in case */
721 if ( FT_ABS( last->out_dir ) == major_dir &
831 AF_Point last = segment->last; local
    [all...]
  /external/libpcap/
optimize.c 703 struct slist *next, *last; local
710 last = s;
726 last = next;
816 * it is defined by the last stmt of this sequence
817 * (i.e., the last statement of the sequence loads
841 if (last->s.code == (BPF_ALU|BPF_SUB|BPF_X)) {
854 last->s.code = NOP;
866 last->s.code = NOP;
877 else if (last->s.code == (BPF_ALU|BPF_SUB|BPF_K)) {
878 last->s.code = NOP
1171 struct stmt *last[N_ATOMS]; local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
WeakHashMap.java 575 Entry<K, V> entry, last = null;
583 if (last == null) {
586 last.next = entry.next;
591 last = entry;
688 Entry<K, V> entry, last = null;
693 last = entry;
699 last = entry;
705 if (last == null) {
708 last.next = entry.next;
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
StringCharacterIteratorTest.java 317 * @tests java.text.StringCharacterIterator.last()
322 method = "last",
327 assertEquals('e', fixture.last());
329 assertEquals('e', fixture.last());
331 assertEquals('e', fixture.last());
334 assertEquals('e', fixture.last());
336 assertEquals('t', fixture.last());
482 assertEquals('x', fixture.last());
573 it1.last();
614 * @tests java.text.StringCharacterIterator#last()
    [all...]
  /external/dbus/dbus/
dbus-marshal-validate.c 56 int last; local
91 last = DBUS_TYPE_INVALID;
146 if (last == DBUS_STRUCT_BEGIN_CHAR)
158 if (last != DBUS_TYPE_ARRAY)
249 if (last == DBUS_DICT_ENTRY_BEGIN_CHAR &&
256 last = *p;
279 _dbus_assert (last != DBUS_TYPE_ARRAY);
280 _dbus_assert (last != DBUS_STRUCT_BEGIN_CHAR);
281 _dbus_assert (last != DBUS_DICT_ENTRY_BEGIN_CHAR);
  /external/grub/netboot/
eepro.c 120 #define ee_addr_CRC_8 0x14 /* CRC over last thee Bytes */
397 unsigned int status, tx_available, last, end, length; local
408 last = tx_end;
409 end = last + (((length + 3) >> 1) << 1) + XMT_HEADER;
411 last = (XMT_LOWER_LIMIT << 8);
412 end = last + (((length + 3) >> 1) << 1) + XMT_HEADER;
414 outw(last, ioaddr + HOST_ADDRESS_REG);
426 outw(last, ioaddr + xmt_bar);
428 tx_start = last;
429 tx_last = last;
    [all...]
  /external/e2fsprogs/e2fsck/
profile.c 94 time_t timestamp; /* time tree was last updated from file */
130 * Check if a filespec is last in a list (NULL on UNIX, invalid FSSpec on MacOS
303 prf_file_t new_file, *last; local
312 last = &profile->first_file;
327 *last = new_file;
328 last = &new_file->next;
341 *last = new_file;
342 last = &new_file->next;
1117 struct profile_node *p, *last; local
1125 last = 0
1150 struct profile_node *p, *last, *new; local
    [all...]
  /external/bluetooth/glib/gmodule/
gmodule.c 560 GModule *last; local
563 last = NULL;
570 if (last)
571 last->next = node->next;
576 last = node;
577 node = last->next;

Completed in 2529 milliseconds

1 2 3 4 5 6 7 891011>>