HomeSort by relevance Sort by last modified time
    Searched refs:previous (Results 1 - 25 of 404) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ELF/
elf_directive_previous.s 9 .previous
12 .previous
  /external/webkit/Source/WebCore/html/
HTMLTableRowsCollection.cpp 55 HTMLTableRowElement* HTMLTableRowsCollection::rowAfter(HTMLTableElement* table, HTMLTableRowElement* previous)
61 if (previous && previous->parentNode() != table) {
62 for (child = previous->nextSibling(); child; child = child->nextSibling()) {
69 if (!previous)
71 else if (isInHead(previous))
72 child = previous->parentNode()->nextSibling();
83 if (!previous || isInHead(previous))
85 else if (previous->parentNode() == table
    [all...]
HTMLNameCollection.cpp 41 Element* HTMLNameCollection::itemAfter(Element* previous) const
43 ASSERT(previous != base());
46 if (!previous)
49 current = previous->traverseNextNode(base());
  /external/elfutils/lib/
list.h 22 assert (_newp->previous == NULL); \
24 (first) = _newp->next = _newp->previous = _newp; \
28 _newp->previous = (first)->previous; \
29 _newp->previous->next = _newp->next->previous = _newp; \
51 _elem->next->previous = _elem->previous; \
52 _elem->previous->next = _elem->next; \
56 assert ((_elem->next = _elem->previous = NULL, 1));
    [all...]
  /libcore/luni/src/main/java/java/util/
LinkedList.java 51 Link<ET> previous, next; field in class:LinkedList.Link
55 previous = p;
81 link = link.previous;
94 next.previous = newLink;
131 public ET previous() { method in class:LinkedList.LinkIterator
135 link = link.previous;
152 Link<ET> previous = lastLink.previous; local
153 next.previous = previous;
225 Link<ET> previous = link.next; local
290 Link<E> previous = link.previous; local
353 Link<E> previous = voidLink; local
393 Link<E> previous = voidLink.previous; local
652 Link<E> previous = link.previous; local
706 Link<E> previous = last.previous; local
    [all...]
ListIterator.java 29 * {@code previous}. The object inserted will be the previous object.
51 * Returns whether there are previous elements to iterate.
53 * @return {@code true} if there are previous elements, {@code false}
55 * @see #previous
81 * Returns the previous object in the iteration.
83 * @return the previous object.
85 * if there are no previous elements.
88 public E previous(); method in interface:ListIterator
91 * Returns the index of the previous object in the iteration
    [all...]
  /libcore/luni/src/main/java/java/text/
CharacterIterator.java 98 * @return the character at the previous index, or {@code DONE} if the
99 * previous index would be past the beginning.
101 public char previous(); method in interface:CharacterIterator
CollationElementIterator.java 51 * {@code next()} and {@code previous()} when the end or the
70 * call to either the {@link #next()} or {@link #previous()}
117 * Obtains the previous collation element in the source string.
119 * @return the previous collation element, or {@code NULLORDER} when
122 public int previous() { method in class:CollationElementIterator
123 return this.icuIterator.previous();
140 * string. The next call to {@link #next()} or {@link #previous()} will
  /external/chromium/chrome/common/net/
raw_host_resolver_proc.cc 13 net::HostResolverProc* previous)
14 : HostResolverProc(previous), dns_server_(dns_server) {}
raw_host_resolver_proc.h 25 net::HostResolverProc* previous);
  /frameworks/base/core/java/android/util/
LruCache.java 142 * @return the previous value mapped by {@code key}.
149 V previous; local
153 previous = map.put(key, value);
154 if (previous != null) {
155 size -= safeSizeOf(key, previous);
159 if (previous != null) {
160 entryRemoved(false, key, previous, value);
164 return previous;
204 * @return the previous value mapped by {@code key}.
211 V previous; local
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
LruCache.java 113 * @return the previous value mapped by {@code key}.
120 V previous; local
124 previous = map.put(key, value);
125 if (previous != null) {
126 size -= safeSizeOf(key, previous);
130 if (previous != null) {
131 entryRemoved(false, key, previous, value);
135 return previous;
171 * @return the previous value mapped by {@code key}.
178 V previous; local
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/
EOLConvertingInputStream.java 43 private int previous = 0; field in class:EOLConvertingInputStream
98 } else if ((flags & CONVERT_LF) != 0 && b == '\n' && previous != '\r') {
103 previous = b;
  /dalvik/dx/tests/087-ssa-local-vars/
Blort.java 48 * phi's. The key component here is the assignment of previous = current.
58 StringBuilder previous = null; local
70 if ((current.charAt(0) == ' ' || current.charAt(0) == '\t') && previous != null) {
80 && previous.length() + 1 + current.length() - i > maxLineLen) {
83 previous.append(' ');
84 previous.append(current, i, current.length() - i);
86 previous = current;
  /external/chromium/net/base/
directory_lister_unittest.cc 36 for (size_t previous = 0, current = 1;
38 previous++, current++) {
40 paths_[previous], paths_[current]));
47 for (size_t previous = 0, current = 1;
49 previous++, current++) {
51 if (file_util::FileEnumerator::IsDirectory(file_list_[previous]) &&
57 EXPECT_EQ(file_util::FileEnumerator::IsDirectory(file_list_[previous]),
60 file_util::FileEnumerator::GetFilename(file_list_[previous]),
  /external/guava/src/com/google/common/collect/
ForwardingListIterator.java 51 public E previous() { method in class:ForwardingListIterator
52 return delegate().previous();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
UserBigramSuggestHelper.java 55 public int searchUserBigramSuggestion(CharSequence previous, char typed,
60 if (!TextUtils.isEmpty(previous) && !TextUtils.isEmpty(Character.toString(typed))) {
62 mSuggest.getSuggestions(firstChar, previous, mKeyboard.getProximityInfo());
65 mUserBigram.getBigrams(firstChar, previous, mSuggest);
79 String previous = null; local
82 if (previous != null) {
83 addToUserBigram(new String[] {previous, current});
85 previous = current;
SuggestHelper.java 131 private void getBigramSuggestions(CharSequence previous, CharSequence typed) {
132 if (!TextUtils.isEmpty(previous) && (typed.length() > 1)) {
134 mSuggest.getSuggestions(firstChar, previous, mKeyboard.getProximityInfo());
138 public CharSequence getBigramFirstSuggestion(CharSequence previous, CharSequence typed) {
140 getBigramSuggestions(previous, typed);
141 SuggestedWords suggestions = mSuggest.getSuggestions(word, previous,
146 public CharSequence getBigramAutoCorrection(CharSequence previous, CharSequence typed) {
148 getBigramSuggestions(previous, typed);
149 SuggestedWords suggestions = mSuggest.getSuggestions(word, previous,
155 public int searchBigramSuggestion(CharSequence previous, CharSequence typed
    [all...]
  /external/chromium/base/
linked_list.h 13 // list, as extending LinkNode (this gives it next/previous pointers).
47 // node = node->previous()) {
73 // "previous" pointers that reference other nodes in the list.
76 // space for the "next" and "previous" pointers (base::LinkNode<T>*).
78 // needs to glue on the "next" and "previous" pointers using
87 LinkNode(LinkNode<T>* previous, LinkNode<T>* next)
88 : previous_(previous), next_(next) {}
112 LinkNode<T>* previous() const { function in class:base::LinkNode
146 // and root_->previous() wraps around to the end of the list).
159 return root_.previous();
    [all...]
  /external/llvm/test/MC/AsmParser/
section.s 7 .previous
11 .previous
15 .previous
35 .previous
39 .previous
45 .previous
47 .previous
  /external/webkit/Source/WebCore/rendering/
CounterNode.cpp 92 CounterNode* previous = m_previousSibling; local
93 if (!previous)
96 while (CounterNode* lastChild = previous->m_lastChild)
97 previous = lastChild;
99 return previous;
149 RenderCounter* previous = 0; local
152 if (previous)
153 previous->m_nextForSameCounter = value->m_nextForSameCounter;
160 previous = iterator;
275 CounterNode* previous = oldChild->m_previousSibling local
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldCollationElementIteratorTest.java 43 order = iterator.previous();
47 order = iterator.previous();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ElemContext.java 108 /** The previous element "stack frame". */
136 * @param previous The "stack frame" corresponding to the new
139 private ElemContext(final ElemContext previous)
141 m_prev = previous;
142 m_currentElemDepth = previous.m_currentElemDepth + 1;
  /build/tools/droiddoc/templates-sdk/
docpage.cs 49 <?cs if:previous.link ?>
50 <div class="training-nav-button-previous">
51 <a href="<?cs var:previous.link ?>">
53 Previous lesson
54 <span class="training-nav-button-title"><?cs var:previous.title ?></span>
58 <?cs /if ?><?cs # end if previous.link ?>
68 <?cs if:!startpage && (previous.link || next.link) ?>
80 <?cs if:previous.link ?>
81 <div class="training-nav-button-previous">
82 <a href="<?cs var:previous.link ?>"
    [all...]
  /external/webkit/Source/WebCore/platform/text/wince/
TextBreakIteratorWinCE.cpp 70 virtual int previous() = 0;
79 return previous();
89 virtual int previous();
94 virtual int previous();
99 virtual int previous();
104 virtual int previous();
124 int WordBreakIterator::previous() function in class:WebCore::WordBreakIterator
151 int CharBreakIterator::previous() function in class:WebCore::CharBreakIterator
180 int LineBreakIterator::previous() function in class:WebCore::LineBreakIterator
214 int SentenceBreakIterator::previous() function in class:WebCore::SentenceBreakIterator
    [all...]

Completed in 551 milliseconds

1 2 3 4 5 6 7 8 91011>>