HomeSort by relevance Sort by last modified time
    Searched full:next (Results 1351 - 1375 of 30278) sorted by null

<<51525354555657585960>>

  /external/llvm/test/Transforms/ObjCARC/
gvn.ll 13 ; CHECK-NEXT: entry:
14 ; CHECK-NEXT: %s = load i8** @x
17 ; CHECK-NEXT: }
pointer-types.ll 10 ; CHECK-NEXT: call void @use_fptr(void ()* %otherBlock)
11 ; CHECK-NEXT: %tmp11 = bitcast void ()* %otherBlock to i8*
12 ; CHECK-NEXT: call void @objc_release(i8* %tmp11)
  /external/marisa-trie/tools/
cmdopt.h 37 int optind; // Index of the next argument.
38 char *nextchar; // Next character.
51 // cmdopt_get() analyzes command line arguments and gets the next option.
  /external/marisa-trie/v0_1_5/tools/
cmdopt.h 37 int optind; // Index of the next argument.
38 char *nextchar; // Next character.
51 // cmdopt_get() analyzes command line arguments and gets the next option.
  /external/qemu/android/utils/
dirscanner.h 30 /* Get the name of the next file from a directory scanner.
39 * change on the next call to this function or when the
45 * to the next directory element.
  /external/skia/include/core/
SkTInternalLList.h 53 T* next = entry->fNext; local
56 prev->fNext = next;
58 fHead = next;
60 if (NULL != next) {
61 next->fPrev = prev;
156 T* next = existingEntry->fNext; local
158 newEntry->fNext = next;
159 if (NULL == next) {
163 next->fPrev = newEntry;
202 * Return the next/previous element in the list or NULL if at the end
204 T* next() { function in class:SkTInternalLList::Iter
    [all...]
  /external/wpa_supplicant_8/src/utils/
radiotap_iter.h 30 * @arg_index: internal next argument index
31 * @arg: internal next argument pointer
32 * @next_bitmap: internal pointer to next present u32
  /frameworks/base/core/java/android/util/
JsonScope.java 32 * the next element.
43 * An object whose most recent element is a key. The next element must
50 * newline before the next element.
  /frameworks/base/core/java/android/view/
Choreographer.java 32 * the next display frame.
41 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
43 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
46 * next display frame, use {@link View#postInvalidateOnAnimation()} or
75 // wait before posting the next animation message. It is important that the
246 * on the next frame, but this is much better than waiting a whole 16ms and likely
260 * Posts a callback to run on the next frame.
266 * @param action The callback action to run during the next frame.
277 * Posts a callback to run on the next frame after the specified delay.
283 * @param action The callback action to run during the next frame after the specified delay
568 final CallbackRecord next = callbacks.next; local
740 public CallbackRecord next; field in class:Choreographer.CallbackRecord
768 CallbackRecord next = last.next; local
806 final CallbackRecord next = callback.next; local
    [all...]
  /libcore/luni/src/main/java/java/io/
SerializationHandleMap.java 71 * Returns the index where the key is found at, or the index of the next
81 * Found the key, or the next empty spot (which means key is not
126 int index, next, hash; local
129 index = next = findIndex(key, keys);
142 next = (next + 2) % length;
143 object = keys[next];
150 if (next < index) {
151 hashedOk = hashedOk || (hash <= next);
153 hashedOk = hashedOk && (hash <= next);
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 39 l.next();
46 assertTrue(objArray[i].equals(l.next()));
50 l.next();
72 public Object next() { method in class:OldListIteratorTest.Mock_ListIterator
107 l.next();
131 l.next();
144 l.next();
162 l.next();
169 l.next();
182 l.next();
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.cons/
copy.pass.cpp 48 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(m.begin(), 2) == V(3, 1))
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
item.hpp 27 , typename Next
40 typedef Next next; typedef in struct:boost::mpl::l_item
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_old_mailbox.py 69 self.assertTrue(self.mbox.next() is None)
70 self.assertTrue(self.mbox.next() is None)
76 msg = self.mbox.next()
79 self.assertTrue(self.mbox.next() is None)
80 self.assertTrue(self.mbox.next() is None)
86 msg = self.mbox.next()
89 self.assertTrue(self.mbox.next() is None)
90 self.assertTrue(self.mbox.next() is None)
97 msg = self.mbox.next()
100 msg = self.mbox.next()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_old_mailbox.py 69 self.assertTrue(self.mbox.next() is None)
70 self.assertTrue(self.mbox.next() is None)
76 msg = self.mbox.next()
79 self.assertTrue(self.mbox.next() is None)
80 self.assertTrue(self.mbox.next() is None)
86 msg = self.mbox.next()
89 self.assertTrue(self.mbox.next() is None)
90 self.assertTrue(self.mbox.next() is None)
97 msg = self.mbox.next()
100 msg = self.mbox.next()
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
tokenutil.py 73 token = token.next
92 first_token = first_token.next
133 next_token = token.next
218 token.previous.next = token.next
220 if token.next:
221 token.next.previous = token.previous
223 following_token = token.next
226 following_token = following_token.next
237 DeleteToken(token.next)
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
tokenutil.py 73 token = token.next
92 first_token = first_token.next
133 next_token = token.next
218 token.previous.next = token.next
220 if token.next:
221 token.next.previous = token.previous
223 following_token = token.next
226 following_token = following_token.next
237 DeleteToken(token.next)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
symbol_table.c 11 * The above copyright notice and this permission notice (including the next
30 * Link to the next symbol in the table with the same name
39 * Link to the next symbol in the table with the same scope
75 struct symbol_header *next; member in struct:symbol_header
89 /** Link to next (inner) scope level. */
90 struct scope_level *next; member in struct:scope_level
125 * The next call to \c _mesa_symbol_table_iterator_get will return this
127 * returned by the next call.
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
164 table->current_scope = scope->next;
170 struct symbol *const next = sym->next_with_same_scope; local
475 struct symbol_header *next; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
3dnow_xform1.S 84 ADD_L ( EDI, EAX ) /* next vertex */
86 ADD_L ( CONST(16), EDX ) /* next r */
89 JNZ ( LLBL( G3TPGR_2 ) ) /* cnt > 0 ? -> process next vertex */
131 ADD_L ( EDI, EAX ) /* next vertex */
134 ADD_L ( CONST(16), EDX ) /* next r */
137 JNZ ( LLBL( G3TPIR_3 ) ) /* cnt > 0 ? -> process next vertex */
190 ADD_L ( EDI, EAX ) /* next vertex */
192 ADD_L ( CONST(16), EDX ) /* next r */
195 JNZ ( LLBL( G3TP3NRR_2 ) ) /* cnt > 0 ? -> process next vertex */
245 ADD_L ( EDI, EAX ) /* next vertex *
    [all...]
3dnow_xform2.S 96 ADD_L ( EDI, EAX ) /* next vertex */
102 ADD_L ( CONST(16), EDX ) /* next r */
105 JNZ ( LLBL( G3TPGR_2 ) ) /* cnt > 0 ? -> process next vertex */
157 ADD_L ( EDI, EAX ) /* next vertex */
158 ADD_L ( CONST(16), EDX ) /* next r */
161 JNZ ( LLBL( G3TPPR_2 ) ) /* cnt > 0 ? -> process next vertex */
233 ADD_L ( EDI, EAX ) /* next vertex */
235 ADD_L ( CONST(16), EDX ) /* next r */
238 JNZ ( LLBL( G3TP3R_2 ) ) /* cnt > 0 ? -> process next vertex */
292 ADD_L ( EDI, EAX ) /* next vertex *
    [all...]
  /external/icu4c/common/unicode/
strenum.h 25 * method that returns the next UnicodeString since in C++ this can
38 * 'next' that you call. In general the StringEnumeration is
46 * <p>The pointers returned by next, unext, and snext become invalid
47 * upon any subsequent call to the enumeration's destructor, next,
100 * <p>Returns the next element as a NUL-terminated char*. If there
107 * deleted by the caller. The pointer is valid until the next call
108 * to next, unext, snext, reset, or the enumerator's destructor.</p>
121 * Either next() or snext() must be implemented differently by a subclass.
129 virtual const char* next(int32_t *resultLength, UErrorCode& status);
132 * <p>Returns the next element as a NUL-terminated UChar*. If ther
    [all...]
  /external/libppp/src/
timer.c 105 for (t = TimerList; t; t = t->next) {
122 tp->next = t;
124 pt->next = tp;
142 * A RUNNING timer must be removed from TimerList (->next list).
143 * A STOPPED timer isn't in any list, but may have a bogus [e]next field.
151 for (t = TimerList; t != tp && t != NULL; t = t->next)
156 pt->next = t->next;
158 TimerList = t->next;
162 if (t->next) {
192 struct pppTimer *tp, *exp, *next; local
    [all...]
  /external/mesa3d/src/mesa/program/
symbol_table.c 11 * The above copyright notice and this permission notice (including the next
30 * Link to the next symbol in the table with the same name
39 * Link to the next symbol in the table with the same scope
75 struct symbol_header *next; member in struct:symbol_header
89 /** Link to next (inner) scope level. */
90 struct scope_level *next; member in struct:scope_level
125 * The next call to \c _mesa_symbol_table_iterator_get will return this
127 * returned by the next call.
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
164 table->current_scope = scope->next;
170 struct symbol *const next = sym->next_with_same_scope; local
475 struct symbol_header *next; local
    [all...]
  /external/mesa3d/src/mesa/x86/
3dnow_xform1.S 84 ADD_L ( EDI, EAX ) /* next vertex */
86 ADD_L ( CONST(16), EDX ) /* next r */
89 JNZ ( LLBL( G3TPGR_2 ) ) /* cnt > 0 ? -> process next vertex */
131 ADD_L ( EDI, EAX ) /* next vertex */
134 ADD_L ( CONST(16), EDX ) /* next r */
137 JNZ ( LLBL( G3TPIR_3 ) ) /* cnt > 0 ? -> process next vertex */
190 ADD_L ( EDI, EAX ) /* next vertex */
192 ADD_L ( CONST(16), EDX ) /* next r */
195 JNZ ( LLBL( G3TP3NRR_2 ) ) /* cnt > 0 ? -> process next vertex */
245 ADD_L ( EDI, EAX ) /* next vertex *
    [all...]
3dnow_xform2.S 96 ADD_L ( EDI, EAX ) /* next vertex */
102 ADD_L ( CONST(16), EDX ) /* next r */
105 JNZ ( LLBL( G3TPGR_2 ) ) /* cnt > 0 ? -> process next vertex */
157 ADD_L ( EDI, EAX ) /* next vertex */
158 ADD_L ( CONST(16), EDX ) /* next r */
161 JNZ ( LLBL( G3TPPR_2 ) ) /* cnt > 0 ? -> process next vertex */
233 ADD_L ( EDI, EAX ) /* next vertex */
235 ADD_L ( CONST(16), EDX ) /* next r */
238 JNZ ( LLBL( G3TP3R_2 ) ) /* cnt > 0 ? -> process next vertex */
292 ADD_L ( EDI, EAX ) /* next vertex *
    [all...]

Completed in 1247 milliseconds

<<51525354555657585960>>