Searched refs:next (Results 276 - 300 of 5321) sorted by relevance

<<11121314151617181920>>

/external/junit/src/org/junit/experimental/theories/internal/
H A DParameterizedAssertionError.java33 Object next = iter.next();
34 buffer.append(stringValueOf(next));
42 private static String stringValueOf(Object next) { argument
44 return String.valueOf(next);
/external/mockito/src/org/mockito/internal/verification/checkers/
H A DNonGreedyNumberOfInvocationsInOrderChecker.java39 Invocation next = finder.findFirstMatchingUnverifiedInvocation( invocations, wanted, context );
40 if( next == null ){
43 marker.markVerified( next, wanted );
44 context.markVerified( next );
45 lastLocation = next.getLocation();
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DContactParser.java61 final char next = lexer.lookAhead(1);
62 if (next == ' ' || next == '\t' || next == '\r' || next == '\n') {
/external/chromium_org/mojo/public/js/bindings/
H A Dcodec.js42 this.next = base;
46 this.next += offset;
50 var result = this.buffer.getInt8(this.next);
51 this.next += 1;
56 var result = this.buffer.getUint8(this.next);
57 this.next += 1;
62 var result = this.buffer.getInt16(this.next);
63 this.next += 2;
68 var result = this.buffer.getUint16(this.next);
69 this.next
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp60 for (ArrayList::Iterator it = allInsns.iterator(); !it.end(); it.next())
63 for (ArrayList::Iterator it = allLValues.iterator(); !it.end(); it.next())
66 for (ArrayList::Iterator BBs = allBBlocks.iterator(); !BBs.end(); BBs.next())
97 for (Instruction *i = getFirst(); i; i = i->next)
102 for (Graph::EdgeIterator it = cfg.outgoing(); !it.end(); it.next()) {
120 assert(inst->next == 0 && inst->prev == 0);
154 assert(inst->next == 0 && inst->prev == 0);
186 assert(p->next == 0 && p->prev == 0);
201 p->next = q;
204 p->prev->next
478 Instruction *insn, *next; local
[all...]
H A Dnv50_ir_graph.cpp40 for (IteratorRef it = safeIteratorDFS(); !it->end(); it->next())
56 prev[0]->next[0] = next[0];
57 next[0]->prev[0] = prev[0];
59 origin->out = (next[0] == this) ? NULL : next[0];
64 prev[1]->next[1] = next[1];
65 next[1]->prev[1] = prev[1];
67 target->in = (next[
234 virtual void next() { if (pos < count) ++pos; } function in class:nv50_ir::DFSIterator
280 virtual void next() { if (pos < count) ++pos; } function in class:nv50_ir::CFGIterator
418 Node *next = NULL; local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp60 for (ArrayList::Iterator it = allInsns.iterator(); !it.end(); it.next())
63 for (ArrayList::Iterator it = allLValues.iterator(); !it.end(); it.next())
66 for (ArrayList::Iterator BBs = allBBlocks.iterator(); !BBs.end(); BBs.next())
97 for (Instruction *i = getFirst(); i; i = i->next)
102 for (Graph::EdgeIterator it = cfg.outgoing(); !it.end(); it.next()) {
120 assert(inst->next == 0 && inst->prev == 0);
154 assert(inst->next == 0 && inst->prev == 0);
186 assert(p->next == 0 && p->prev == 0);
201 p->next = q;
204 p->prev->next
478 Instruction *insn, *next; local
[all...]
H A Dnv50_ir_graph.cpp40 for (IteratorRef it = safeIteratorDFS(); !it->end(); it->next())
56 prev[0]->next[0] = next[0];
57 next[0]->prev[0] = prev[0];
59 origin->out = (next[0] == this) ? NULL : next[0];
64 prev[1]->next[1] = next[1];
65 next[1]->prev[1] = prev[1];
67 target->in = (next[
234 virtual void next() { if (pos < count) ++pos; } function in class:nv50_ir::DFSIterator
280 virtual void next() { if (pos < count) ++pos; } function in class:nv50_ir::CFGIterator
418 Node *next = NULL; local
[all...]
/external/smack/src/org/jivesoftware/smack/util/
H A DCache.java233 public V next() {
234 return it.next().object;
300 public Entry<K, V> next() {
301 Map.Entry<K, CacheObject<V>> entry = it.next();
391 // Get the next node.
508 head.next = head.previous = head;
517 LinkedListNode node = head.next;
544 node.next = head.next;
546 node.previous.next
629 public LinkedListNode next; field in class:Cache.LinkedListNode
652 LinkedListNode(Object object, LinkedListNode next, LinkedListNode previous) argument
[all...]
/external/valgrind/main/coregrind/
H A Dm_stacks.c92 struct _Stack *next; member in struct:_Stack
121 st0 = st0->next;
129 vg_assert(st2->next == st1);
130 vg_assert(st1->next == st0);
131 tmp = st0->next;
132 st2->next = st0;
133 st0->next = st1;
134 st1->next = tmp;
140 vg_assert(st1->next == st0);
141 st1->next
[all...]
/external/zlib/src/contrib/blast/
H A Dblast.c41 unsigned char *in; /* next input location */
52 unsigned next; /* index of next write location in out[] */ member in struct:state
133 int left; /* bits left in next or left to process */
134 short *next; /* next number of codes */ local
140 next = h->count + 1;
145 count = *next++;
151 index += count; /* else update for next length */
256 * next,
[all...]
/external/bison/src/
H A Dsymlist.c53 res->next = NULL;
72 res->next = NULL;
90 res->next = NULL;
108 res->next = NULL;
121 for (/* Nothing. */; l && l->content.sym; l = l->next)
138 node->next = list;
150 symbol_list *node, *next; local
151 for (node = list; node; node = next)
153 next = node->next;
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/lhash/
H A Dlhash_test.c26 struct dummy_lhash_node *next; member in struct:dummy_lhash_node
34 struct dummy_lhash_node *cur, *next; local
36 for (cur = lh->head; cur != NULL; cur = next) {
37 next = cur->next;
47 for (cur = lh->head; cur != NULL; cur = cur->next) {
57 for (cur = lh->head; cur != NULL; cur = cur->next) {
69 for (cur = lh->head; cur != NULL; cur = cur->next) {
80 node->next = lh->head;
90 for (cur = lh->head; cur != NULL; cur = cur->next) {
[all...]
/external/chromium_org/v8/src/
H A Dcollection.js37 var next, done;
38 while (!(next = iter.next()).done) {
39 if (!IS_SPEC_OBJECT(next)) {
40 throw MakeTypeError('iterator_result_not_an_object', [next]);
42 %_CallFunction(this, next.value, adder);
168 var next, done, nextItem;
169 while (!(next = iter.next()).done) {
170 if (!IS_SPEC_OBJECT(next)) {
[all...]
/external/chromium_org/v8/test/mjsunit/es6/
H A Ddebug-stepin-generators.js36 i.next();
41 i.next();
42 i.next();
H A Dgenerators-relocation.js26 assertIteratorResult(value1, false, obj.next());
36 assertIteratorResult(value2, false, obj.next());
43 assertIteratorResult(undefined, true, obj.next());
/external/chromium_org/v8/test/mjsunit/
H A Dregress-3225.js43 assertEquals(4, foo.next().value);
44 assertEquals(3, foo.next().value);
45 assertEquals(5, foo.next().value);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DGroupedLinkedMap.java75 LinkedEntry<K, V> current = head.next;
80 current = current.next;
92 entry.next = head.next;
100 entry.next = head;
105 entry.next.prev = entry;
106 entry.prev.next = entry;
110 entry.prev.next = entry.next;
111 entry.next
117 LinkedEntry<K, V> next; field in class:GroupedLinkedMap.LinkedEntry
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONTokener.java73 * the next number or identifier.
106 * Determine if the source string still contains characters that next()
111 char nextChar = next();
121 * Get the next character in the source string.
123 * @return The next character, or 0 if past the end of the source string.
125 public char next() throws JSONException { method in class:JSONTokener
151 * Consume the next character, and check that it matches a specified
157 public char next(char c) throws JSONException { method in class:JSONTokener
158 char n = next();
168 * Get the next
176 public String next(int n) throws JSONException { method in class:JSONTokener
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DIntQueue.java21 private IntQueue.Entry next; field in class:IntQueue.Entry
34 tail.next = entry;
50 head = head.next;
/external/javassist/src/main/javassist/convert/
H A DTransformer.java34 private Transformer next; field in class:Transformer
37 next = t;
40 public Transformer getNext() { return next; }
/external/libcxx/test/containers/associative/map/map.cons/
H A Dcopy.pass.cpp48 assert(*next(m.begin()) == V(2, 1));
49 assert(*next(m.begin(), 2) == V(3, 1));
56 assert(*next(mo.begin()) == V(2, 1));
57 assert(*next(mo.begin(), 2) == V(3, 1));
83 assert(*next(m.begin()) == V(2, 1));
84 assert(*next(m.begin(), 2) == V(3, 1));
91 assert(*next(mo.begin()) == V(2, 1));
92 assert(*next(mo.begin(), 2) == V(3, 1));
119 assert(*next(m.begin()) == V(2, 1));
120 assert(*next(
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DClassTransformerChain.java29 ClassVisitor next = v;
31 chain[i].setTarget(next);
32 next = chain[i];
/external/valgrind/main/callgrind/
H A Dcosts.c51 cc->next = 0;
54 cost_chunk_current->next = cc;
74 cc_next = cc->next;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DPaintInvalidationState.cpp36 PaintInvalidationState::PaintInvalidationState(const PaintInvalidationState& next, RenderLayerModelObject& renderer, const RenderLayerModelObject& paintInvalidationContainer) argument
39 , m_forceCheckForPaintInvalidation(next.m_forceCheckForPaintInvalidation)
52 if (!renderer.supportsPaintInvalidationStateCachedOffsets() || !next.m_cachedOffsetsEnabled) {
60 m_paintOffset = next.m_paintOffset + offset;
74 m_clipped = !fixed && next.m_clipped;
76 m_clipRect = next.m_clipRect;

Completed in 7266 milliseconds

<<11121314151617181920>>