HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 76 - 100 of 3893) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/include/core/
SkTRegistry.h 43 const SkTRegistry* next() const { return fChain; } function in class:SkTRegistry
  /external/chromium_org/third_party/skia/src/core/
SkDeviceLooper.cpp 17 // sentinels that next() has not yet been called, and so our mapper functions
28 // back up by 1 DX, so that next() will put us in a correct starting
78 bool SkDeviceLooper::next() { function in class:SkDeviceLooper
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdftest1.asm 22 mov cx,next ; [1] => 66 b9 0012
23 next: label
  /external/chromium_org/v8/src/
hydrogen-mark-deoptimize.cc 72 HInstruction* next = current->next(); local
78 current = next;
  /external/chromium_org/v8/tools/
consarray.js 56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);
72 * Returns the current item, moves to the next one.
74 ConsArray.prototype.next = function() {
77 this.currCell_ = this.currCell_.next;
89 ConsArray.Cell = function(data, next) {
91 this.next = next;
  /external/e2fsprogs/lib/ext2fs/
io_manager.c 25 char *next, *ptr, *options, *arg; local
42 next = strchr(ptr, '&');
43 if (next)
44 *next++ = 0;
53 ptr = next;
  /external/guava/guava/src/com/google/common/collect/
AbstractLinkedIterator.java 28 * interface for sequences whose next element can always be derived from the
60 * {@link #next()} in order to compute the result of a <i>future</i> call to
61 * {@code next()}.
71 public final T next() { method in class:AbstractLinkedIterator
ForwardingIterator.java 47 public T next() { method in class:ForwardingIterator
48 return delegate().next();
PeekingIterator.java 33 * Returns the next element in the iteration, without advancing the iteration.
48 * #next()} are guaranteed to be equal to each other.
51 E next(); method in interface:PeekingIterator
57 * #peek()} has occurred since the most recent call to {@link #next()}.
60 * since the most recent call to {@link #next()} and this implementation
  /external/hamcrest/src/org/hamcrest/internal/
ArrayIterator.java 21 public Object next() { method in class:ArrayIterator
SelfDescribingValueIterator.java 18 public SelfDescribing next() { method in class:SelfDescribingValueIterator
19 return new SelfDescribingValue<T>(values.next());
  /external/icu4c/common/
usetiter.cpp 39 * Returns the next element in the set.
47 UBool UnicodeSetIterator::next() { function in class:UnicodeSetIterator
  /external/icu4c/i18n/
fpositer.cpp 102 UBool FieldPositionIterator::next(FieldPosition& fp) { function in class:FieldPositionIterator
  /external/icu4c/test/intltest/
tokiter.cpp 26 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) { function in class:TokenIterator
55 * Read the next token from 'this->line' and append it to 'token'.
  /external/iproute2/ip/
ip_common.h 58 struct link_util *next; member in struct:link_util
  /external/javassist/src/main/javassist/convert/
Transformer.java 34 private Transformer next; field in class:Transformer
37 next = t;
40 public Transformer getNext() { return next; }
  /external/kernel-headers/original/linux/raid/
xor.h 11 struct xor_block_template *next; member in struct:xor_block_template
  /external/linux-tools-perf/util/include/linux/
types.h 14 struct list_head *next, *prev; member in struct:list_head
22 struct hlist_node *next, **pprev; member in struct:hlist_node
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs_llvm.c 15 * next paragraph) shall be included in all copies or substantial portions
72 struct draw_llvm_variant_list_item *next = next_elem(li); local
74 li = next;
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_heap.h 28 struct nouveau_heap *next; member in struct:nouveau_heap
  /external/mesa3d/src/gallium/drivers/trace/
tr_screen.h 15 * next paragraph) shall be included in all copies or substantial portions
42 struct tr_list *next; member in struct:tr_list
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_resolve_map.c 11 * The above copyright notice and this permission notice (including the next
41 struct intel_resolve_map **tail = &head->next;
50 tail = &(*tail)->next;
55 (*tail)->next = NULL;
70 struct intel_resolve_map *item = head->next;
76 item = item->next;
89 elem->prev->next = elem->next;
90 if (elem->next)
91 elem->next->prev = elem->prev
101 struct intel_resolve_map *next = head->next; local
    [all...]
  /external/mockito/src/org/mockito/internal/configuration/injection/filter/
TypeBasedCandidateFilter.java 14 MockCandidateFilter next; field in class:TypeBasedCandidateFilter
16 public TypeBasedCandidateFilter(MockCandidateFilter next) {
17 this.next = next;
28 return next.filterCandidate(mockTypeMatches, field, fieldInstance);
  /external/openssl/crypto/pqueue/
pqueue.h 73 struct _pitem *next; member in struct:_pitem
  /external/openssl/include/openssl/
pqueue.h 73 struct _pitem *next; member in struct:_pitem

Completed in 1054 milliseconds

1 2 34 5 6 7 8 91011>>