Searched refs:next (Results 126 - 150 of 5298) sorted by relevance

1234567891011>>

/external/mockito/src/main/java/org/mockito/internal/configuration/injection/filter/
H A DTypeBasedCandidateFilter.java14 private final MockCandidateFilter next; field in class:TypeBasedCandidateFilter
16 public TypeBasedCandidateFilter(MockCandidateFilter next) { argument
17 this.next = next;
31 return next.filterCandidate(mockTypeMatches, candidateFieldToBeInjected, allRemainingCandidateFields, injectee);
/external/smali/smalidea/src/main/java/org/jf/smalidea/util/
H A DPsiUtil.java62 PsiElement next = element.getNextSibling();
63 if (next == null) {
64 next = element.getParent();
65 if (next == null) {
69 element = next;
/external/syslinux/core/thread/
H A Dtimeout.c24 for (tp = curr->list.next; tp != &curr->list; tp = tp->next) {
30 block->list.next->prev = block->list.prev;
31 block->list.prev->next = block->list.next;
/external/mesa3d/src/glx/
H A Dglxconfig.c12 * The above copyright notice and this permission notice (including the next
228 struct glx_config **next; local
231 next = &base;
233 *next = (struct glx_config *) malloc(size);
234 if (*next == NULL) {
240 (void) memset(*next, 0, size);
241 (*next)->visualID = GLX_DONT_CARE;
242 (*next)->visualType = GLX_DONT_CARE;
243 (*next)->visualRating = GLX_NONE;
244 (*next)
270 struct glx_config *const next = configs->next; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cfg.cpp11 * The above copyright notice and this permission notice (including the next
81 fs_bblock *next; local
114 next = new_block();
115 next->start = (fs_inst *)inst->next;
116 cur_if->add_successor(mem_ctx, next);
118 set_next_block(next);
124 next = new_block();
125 next->start = (fs_inst *)inst->next;
[all...]
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonTokenizer.cs102 /// Returns the next JSON token in the stream. An EndDocument token is returned to indicate the end of the stream,
106 /// <returns>The next token in the stream. This is never null.</returns>
133 /// Returns the next JSON token in the stream, when requested by the base class. (The <see cref="Next"/> method delegates
171 // The set of states in which a value is valid next token.
200 var next = reader.Read();
201 if (next == null)
207 switch (next.Value)
276 double number = ReadNumber(next.Value);
280 throw new InvalidJsonException("Invalid first character of token: " + next.Value);
401 char? next
[all...]
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/
H A Dmember_swap.pass.cpp33 assert(*next(c1.begin(), 0) == 10);
34 assert(*next(c1.begin(), 1) == 11);
35 assert(*next(c1.begin(), 2) == 12);
39 assert(*next(c2.begin(), 0) == 0);
40 assert(*next(c2.begin(), 1) == 1);
41 assert(*next(c2.begin(), 2) == 2);
42 assert(*next(c2.begin(), 3) == 3);
43 assert(*next(c2.begin(), 4) == 4);
44 assert(*next(c2.begin(), 5) == 5);
60 assert(*next(c
[all...]
H A Dnon_member_swap.pass.cpp34 assert(*next(c1.begin(), 0) == 10);
35 assert(*next(c1.begin(), 1) == 11);
36 assert(*next(c1.begin(), 2) == 12);
40 assert(*next(c2.begin(), 0) == 0);
41 assert(*next(c2.begin(), 1) == 1);
42 assert(*next(c2.begin(), 2) == 2);
43 assert(*next(c2.begin(), 3) == 3);
44 assert(*next(c2.begin(), 4) == 4);
45 assert(*next(c2.begin(), 5) == 5);
61 assert(*next(c
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Dcompute_memory_pool.c9 * The above copyright notice and this permission notice (including the next
136 for (item = pool->item_list; item; item = item->next) {
166 for (item = pool->item_list; item; item = item->next) {
167 if (item->next) {
169 && item->next->start_in_dw > start_in_dw) {
239 chunk.prev = chunk.next = NULL;
251 struct compute_memory_item *item, *next; local
258 for (item = pool->item_list; item; item = item->next) {
259 COMPUTE_DBG("list: %i %p\n", item->start_in_dw, item->next);
262 for (item = pool->item_list; item; item = next) {
353 struct compute_memory_item *item, *next; local
[all...]
/external/e2fsprogs/e2fsck/
H A Dregion.c26 struct region_el *next; member in struct:region_el
50 struct region_el *r, *next; local
52 for (r = region->allocated; r; r = next) {
53 next = r->next;
62 struct region_el *r, *new_region, *prev, *next; local
78 for (r = region->allocated, prev=NULL; r; prev = r, r = r->next) {
88 if ((next = r->next)) {
89 if (end > next
[all...]
/external/javassist/src/main/javassist/
H A DCtMember.java23 CtMember next; // for internal use field in class:CtMember
54 fieldTail.next = this;
65 method.next = methodTail.next;
66 methodTail.next = method;
79 cons.next = consTail.next;
80 consTail.next = cons;
88 field.next = this; // or fieldTail.next
131 final CtMember next() { return next; } method in class:CtMember
[all...]
/external/libcxx/test/std/containers/associative/multiset/multiset.cons/
H A Dmove.pass.cpp64 assert(*next(m.begin(), 0) == 1);
65 assert(*next(m.begin(), 1) == 1);
66 assert(*next(m.begin(), 2) == 1);
67 assert(*next(m.begin(), 3) == 2);
68 assert(*next(m.begin(), 4) == 2);
69 assert(*next(m.begin(), 5) == 2);
70 assert(*next(m.begin(), 6) == 3);
71 assert(*next(m.begin(), 7) == 3);
72 assert(*next(m.begin(), 8) == 3);
103 assert(*next(
[all...]
/external/freetype/src/cache/
H A Dftcmru.c52 cnode = cnode->next;
59 last->next = node;
60 node->next = first;
65 node->next = node;
83 FTC_MruNode prev, next, last; local
93 cnode = cnode->next;
103 next = node->next;
105 prev->next = next;
126 FTC_MruNode prev, next; local
331 FTC_MruNode first, node, next; local
[all...]
/external/libvpx/libvpx/vpx_dsp/
H A Dadd_noise.c47 int next = 0, i, j; local
54 char_dist[next + j] = (int8_t)i;
56 next = next + j;
61 for (; next < 256; ++next) {
62 char_dist[next] = 0;
/external/valgrind/memcheck/tests/
H A Dleak-cases.c42 struct _Node* next; member in struct:_Node
48 Node* mk(Node* next) argument
53 x->next = next;
82 (p6->next)++; // 16/1 possibly lost
88 (p8->next)++; // 16/1 possibly lost
92 (p9->next)++; // 32(16d,16i)/1 definitely lost (double count!)
/external/c-ares/
H A Dares_data.c67 if (ptr->data.mx_reply.next)
68 ares_free_data(ptr->data.mx_reply.next);
75 if (ptr->data.srv_reply.next)
76 ares_free_data(ptr->data.srv_reply.next);
83 if (ptr->data.txt_reply.next)
84 ares_free_data(ptr->data.txt_reply.next);
91 if (ptr->data.addr_node.next)
92 ares_free_data(ptr->data.addr_node.next);
125 ptr->data.mx_reply.next = NULL;
131 ptr->data.srv_reply.next
[all...]
/external/llvm/test/CodeGen/SystemZ/Large/
H A Dbranch-range-01.py81 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
86 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
89 print '%s:' % next
H A Dbranch-range-03.py81 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
87 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
90 print '%s:' % next
H A Dbranch-range-04.py44 # ...as mentioned above, the next one could be a CGRJE instead...
85 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
91 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
94 print '%s:' % next
H A Dbranch-range-05.py44 # ...as mentioned above, the next one could be a CIJL instead...
85 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
90 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
93 print '%s:' % next
H A Dbranch-range-06.py44 # ...as mentioned above, the next one could be a CGIJL instead...
85 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
90 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
93 print '%s:' % next
H A Dbranch-range-09.py81 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
87 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
90 print '%s:' % next
H A Dbranch-range-10.py44 # ...as mentioned above, the next one could be a CLGRJL instead...
85 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
91 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
94 print '%s:' % next
H A Dbranch-range-11.py49 # ...as mentioned above, the next one could be a CLIJL instead...
101 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
107 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
110 print '%s:' % next
H A Dbranch-range-12.py49 # ...as mentioned above, the next one could be a CLGIJL instead...
101 next = 'before%d' % (i + 1) if i + 1 < branch_blocks else 'main' variable
107 print ' br i1 %%btest%d, label %%after0, label %%%s' % (i, next)
110 print '%s:' % next

Completed in 480 milliseconds

1234567891011>>