HomeSort by relevance Sort by last modified time
    Searched refs:next (Results 1176 - 1200 of 7540) sorted by null

<<41424344454647484950>>

  /dalvik/vm/mterp/mips/
stub.S 8 FETCH_INST() # load next instruction from rPC
unflop.S 31 GOTO_OPCODE(t1) # jump to next instruction
unopWide.S 20 GOTO_OPCODE(t0) # jump to next instruction
unopWider.S 19 GOTO_OPCODE(t0) # jump to next instruction
  /development/ndk/platforms/android-3/include/linux/
proc_fs.h 47 struct proc_dir_entry *next, *parent, *subdir; member in struct:proc_dir_entry
57 struct kcore_list *next; member in struct:kcore_list
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.js 8 /** Treat next element as a single node even if it's a subtree.
9 * This is used instead of next() when the result has to be a
17 * Hideous code duplication here with super.next(). Can't think of
19 * and super.next() doesn't know which to call: dup node or dup tree.
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 119 elem = li.next();
130 assertTrue("listIterator(1)", li.next() == list.get(1));
152 assertTrue("list iterator next(): " + i, li.next() == list
158 assertTrue("list iterator next() exception: " + i, exception);
160 assertTrue("list iterator next() exception: " + i, !exception);
194 Object next = li.next(); local
195 assertTrue("list iterator add(), next(): " + next, next == list.get(1))
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
BreakIteratorTest.java 125 * Class under test for int next(int)
128 assertEquals(BreakIterator.DONE, iterator.next(3));
130 assertEquals(4, iterator.next(3));
131 assertEquals(24, iterator.next(20));
132 assertEquals(23, iterator.next(-1));
133 assertEquals(-1, iterator.next(TEXT.length()));
274 n = bi.next();
275 assertEquals("Assert 0: next() returns incorrect value ", 4, n);
277 assertEquals(BreakIterator.DONE, iterator.next());
279 assertEquals(2, iterator.next());
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
BasicCookieStore.java 89 if (cookieComparator.compare(cookie, it.next()) == 0) {
142 if (it.next().isExpired(date)) {
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIterNodeList.java 113 while (((node = m_iter.next()) != DTMAxisIterator.END)
135 while ((node = m_iter.next()) != DTMAxisIterator.END) {
DTMAxisIteratorBase.java 67 * i.e. subsequent call to next() should return END.
142 while (next() != END);
272 while ((node = next()) != DTMAxisIterator.END) {
  /external/chromium/base/debug/
leak_tracker.h 37 // Next, when we believe all instances of net::URLRequest have been deleted:
87 node = node->next()) {
115 node = node->next()) {
  /external/chromium/chrome/browser/sync/engine/
change_reorder_buffer.cc 164 int64 next = to_visit.front(); local
168 i = operations_.find(next);
171 record.id = next;
183 // Now add the children of |next| to |to_visit|.
184 if (parents_of_position_changes.find(next) ==
188 Traversal::LinkSet::const_iterator j = traversal.begin_children(next);
189 Traversal::LinkSet::const_iterator end = traversal.end_children(next);
191 CHECK(j->first == next);
197 syncable::Entry parent(trans, syncable::GET_BY_HANDLE, next);
  /external/chromium/testing/gtest/samples/
sample3_unittest.cc 106 n1 != NULL; n1 = n1->next(), n2 = n2->next() ) {
  /external/chromium_org/base/debug/
leak_tracker.h 36 // Next, when we believe all instances of net::URLRequest have been deleted:
87 node = node->next()) {
115 node = node->next()) {
  /external/chromium_org/base/test/expectations/
parser.h 27 // function pointer to the next state.
76 // of the token. Each returns a function pointer to the next state function,
78 // next token.
94 // to the next whitespace character. Returns the |success| function when at
99 // the |next| state.
100 StateFunc SkipWhitespace(StateFunc next);
103 StateFunc SkipWhitespaceAndNewLines(StateFunc next);
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_worditerator.cc 380 int next = ubrk_next(iterator_); local
381 while (next != UBRK_DONE) {
383 if (Normalize(position_, next - position_, word_string)) {
385 *word_length = next - position_;
386 position_ = next;
390 position_ = next;
391 next = ubrk_next(iterator_);
395 // UBRK_DONE to prevent from calling ubrk_next() next time when this function
427 for (UChar c = it.first(); c != icu::CharacterIterator::DONE; c = it.next())
  /external/chromium_org/content/renderer/
renderer_webcolorchooser_impl.cc 13 static int next = 0; local
14 return ++next;
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_cond_init.c 145 cv->next = NULL;
150 ptw32_cond_list_tail->next = cv;
  /external/chromium_org/testing/gtest/samples/
sample3_unittest.cc 106 n1 != NULL; n1 = n1->next(), n2 = n2->next() ) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
OrderIterator.cpp 48 return next();
51 RenderBox* OrderIterator::next() function in class:WebCore::OrderIterator
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontFamily.h 47 const FontFamily* next() const;
75 reaper = reaper->releaseNext(); // implicitly protects reaper->next, then derefs reaper
78 inline const FontFamily* FontFamily::next() const function in class:WebCore::FontFamily
  /external/chromium_org/third_party/freetype/src/sfnt/
ttkern.c 199 FT_Byte* next = base; local
209 next = base + length;
211 if ( next > p_limit ) /* handle broken table */
212 next = p_limit;
217 if ( p + 8 > next )
223 if ( ( next - p ) < 6 * (int)num_pairs ) /* handle broken count */
224 num_pairs = (FT_UInt)( ( next - p ) / 6 );
298 p = next;
  /external/chromium_org/third_party/icu/source/common/
ulist.c 17 UListNode *next; member in struct:UListNode
62 newItem->next = NULL;
87 newItem->next = NULL;
89 list->tail->next = newItem;
115 newItem->next = list->head;
139 pointer = pointer->next;
154 list->curr = curr->next;
183 listPointer = listHead->next;
  /external/chromium_org/third_party/icu/source/test/intltest/
canittst.cpp 157 //UnicodeString *result = new UnicodeString(it.next());
158 UnicodeString result(it.next());
195 UnicodeString item = it.next();
271 //String item = (String) it.next();
294 result.append(it.next().toString());
320 UnicodeString next = can.next(); local
321 logln("CanonicalIterator::next returned "+next);
325 UnicodeString afterReset = can.next();
    [all...]

Completed in 335 milliseconds

<<41424344454647484950>>