/hardware/ti/omap4xxx/ |
mapinfo.h | 5 struct mapinfo *next; member in struct:mapinfo
|
/libcore/luni/src/main/java/java/util/ |
Iterator.java | 24 * methods {@code next} and {@code hasNext()} may throw a {@code ConcurrentModificationException}. 38 * @see #next 43 * Returns the next object and advances the iterator. 45 * @return the next object. 50 public E next(); method in interface:Iterator 53 * Removes the last object returned by {@code next} from the collection. 54 * This method can only be called once between each call to {@code next}. 60 * if {@code next} has not been called, or {@code remove} has 61 * already been called after the last call to {@code next}.
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
next_prior.hpp | 23 BOOST_MPL_AUX_COMMON_NAME_WKND(next) 29 struct next struct in namespace:boost::mpl 31 typedef typename T::next type; 32 BOOST_MPL_AUX_LAMBDA_SUPPORT(1,next,(T)) 44 BOOST_MPL_AUX_NA_SPEC(1, next)
|
/system/core/include/cutils/ |
config_utils.h | 29 cnode *next; member in struct:cnode
|
/system/core/sh/ |
alias.h | 40 struct alias *next; member in struct:alias
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
iteration-semantics.js | 45 function next() { 50 return { next: next, n: 0 } 55 function next() { 58 return { next: next } 145 function next() { 146 if (n-- == 0) delete this.next; 147 return iter.next(); 149 return { next: next [all...] |
/bionic/libc/kernel/common/linux/raid/ |
xor.h | 14 *** Any manual change here will be lost the next time this script will 25 struct xor_block_template *next; member in struct:xor_block_template
|
/cts/tools/dasm/src/java_cup/ |
lalr_transition.java | 22 * @param nxt next transition in linked list. 41 /** Constructor with null next. 70 /** Next transition in linked list of transitions out of a state */ 73 /** Next transition in linked list of transitions out of a state */ 74 public lalr_transition next() {return _next;} method in class:lalr_transition
|
/development/ndk/platforms/android-3/include/linux/raid/ |
xor.h | 20 struct xor_block_template *next; member in struct:xor_block_template
|
/device/asus/flo/camera/QCamera2/stack/common/ |
cam_list.h | 43 struct cam_list *next, *prev; member in struct:cam_list 48 ptr->next = ptr; 58 item->next = head; 60 prev->next = item; 66 item->next = node; 68 item->prev->next = item; 75 struct cam_list *next = ptr->next; local 77 next->prev = ptr->prev; 78 prev->next = ptr->next [all...] |
/device/lge/mako/camera/QCamera/stack/common/ |
cam_list.h | 43 struct cam_list *next, *prev; member in struct:cam_list 48 ptr->next = ptr; 58 item->next = head; 60 prev->next = item; 66 struct cam_list *next = ptr->next; local 68 next->prev = ptr->prev; 69 prev->next = ptr->next; 70 ptr->next = ptr [all...] |
/external/bison/lib/ |
fd-hook.c | 100 struct fd_hook *next = link->private_next; local 103 if (next != NULL && prev != NULL) 106 prev->private_next = next; 107 next->private_prev = prev;
|
/external/chromium/net/disk_cache/ |
mem_rankings.cc | 30 MemEntryImpl* next = node->next(); local 33 head_ = next; 39 prev->set_next(next); 41 if (next) 42 next->set_prev(prev); 57 return node->next();
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
ptw32_MCS_lock.c | 165 node->next = 0; /* initially, no successor */ 174 pred->next = node; 195 ptw32_mcs_local_node_t *next = local 197 PTW32_INTERLOCKED_EXCHANGE_ADD_SIZE((PTW32_INTERLOCKED_SIZEPTR)&node->next, (PTW32_INTERLOCKED_SIZE)0); /* MBR fence */ 199 if (0 == next) 214 next = (ptw32_mcs_local_node_t *) 215 PTW32_INTERLOCKED_EXCHANGE_ADD_SIZE((PTW32_INTERLOCKED_SIZEPTR)&node->next, (PTW32_INTERLOCKED_SIZE)0); /* MBR fence */ 219 ptw32_mcs_flag_set(&next->readyFlag); 234 node->next = 0; /* initially, no successor */ 262 new_node->next = 0 [all...] |
/external/chromium_org/net/disk_cache/ |
mem_rankings.cc | 30 MemEntryImpl* next = node->next(); local 33 head_ = next; 39 prev->set_next(next); 41 if (next) 42 next->set_prev(prev); 57 return node->next();
|
/external/chromium_org/ppapi/tests/ |
test_trace_event.cc | 59 int64_t next = interface_->Now(); local 60 ASSERT_LE(last, next); 61 last = next;
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
instruction.h | 30 : code(c), next(n), k(parm) {} 55 Instruction* next; member in union:sandbox::Instruction::__anon10268
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
DecimalNumber.cpp | 105 LChar* next = buffer; local 113 *next++ = '-'; 114 *next++ = '0'; 115 *next++ = '.'; 117 *next++ = '0'; 119 *next++ = m_significand[i]; 121 return next - buffer; 131 *next++ = '-'; 133 *next++ = m_significand[i]; 135 *next++ = '0' 161 LChar* next = buffer; local [all...] |
/external/chromium_org/third_party/icu/source/common/ |
usetiter.cpp | 39 * Returns the next element in the set. 47 UBool UnicodeSetIterator::next() { function in class:UnicodeSetIterator
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tokiter.cpp | 25 UBool TokenIterator::next(UnicodeString& token, UErrorCode& ec) { function in class:TokenIterator 54 * Read the next token from 'this->line' and append it to 'token'.
|
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/ |
iterator.h | 45 // Moves to the next entry in the source. After this call, Valid() is 48 virtual void Next() = 0; 56 // the returned slice is valid only until the next modification of 62 // the returned slice is valid only until the next modification of 83 Cleanup* next; member in struct:leveldb::Iterator::Cleanup
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_heap.h | 28 struct nouveau_heap *next; member in struct:nouveau_heap
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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...] |