HomeSort by relevance Sort by last modified time
    Searched refs:previous (Results 76 - 100 of 1135) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
TextImpl.java 145 * Tries to remove this node using itself and the previous node as context.
147 * If the previous node exists and is a text node, this node's text will be
162 Node previous = getPreviousSibling(); local
163 if (previous == null || previous.getNodeType() != Node.TEXT_NODE) {
167 TextImpl previousText = (TextImpl) previous;
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
SectionedAlbumDataAdapter.java 69 String previous = ""; local
73 if (previous.isEmpty() || !previous.equals(item.account)) {
74 if (DEBUG) Log.i(TAG, "previous = " + previous +", title = " + item.account);
75 previous = item.account;
83 previous = "";
87 if (previous.isEmpty() || !previous.equals(item.account)) {
88 previous = item.account
    [all...]
  /external/ceres-solver/internal/ceres/
line_search.cc 153 const FunctionSample& previous,
180 << ", lowerbound: " << lowerbound << ", previous: " << previous
193 if (previous.value_is_valid) {
196 samples.push_back(ValueSample(previous.x, previous.value));
202 if (previous.value_is_valid) {
205 samples.push_back(previous);
238 FunctionSample previous = ValueAndGradientSample(0.0, 0.0, 0.0); local
239 previous.value_is_valid = false
462 FunctionSample previous = initial_position; local
    [all...]
  /external/chromium_org/chrome/browser/download/
download_history.cc 148 bool ShouldUpdateHistory(const history::DownloadRow* previous,
152 return ((previous == NULL) ||
153 (previous->current_path != current.current_path) ||
154 (previous->target_path != current.target_path) ||
155 (previous->end_time != current.end_time) ||
156 (previous->received_bytes != current.received_bytes) ||
157 (previous->total_bytes != current.total_bytes) ||
158 (previous->etag != current.etag) ||
159 (previous->last_modified != current.last_modified) ||
160 (previous->state != current.state) |
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
StringCharacterIteratorTest.java 304 * @tests java.text.StringCharacterIterator.previous()
308 assertEquals(CharacterIterator.DONE, fixture.previous());
319 assertEquals('e', fixture.previous());
321 assertEquals('r', fixture.previous());
323 assertEquals('u', fixture.previous());
325 assertEquals('t', fixture.previous());
327 assertEquals('x', fixture.previous());
329 assertEquals('i', fixture.previous());
331 assertEquals('f', fixture.previous());
333 assertEquals(CharacterIterator.DONE, fixture.previous());
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 57 "ListTest - c) add with index failed--affected previous elements",
65 assertTrue("ListTest - c) set failed--affected previous elements", list
75 "ListTest - c) remove with index failed--affected previous elements",
94 "ListTest - e) addAll with index failed--affected previous elements",
165 assertTrue("list iterator previous(): " + i, li.previous() == list
181 li.previous();
185 assertTrue("list iterator previous() exception", exception);
197 Object previous = li.previous(); local
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
password_generation_popup_controller_impl.cc 38 base::WeakPtr<PasswordGenerationPopupControllerImpl> previous,
46 if (previous.get() &&
47 previous->element_bounds() == bounds &&
48 previous->web_contents() == web_contents &&
49 previous->container_view() == container_view) {
50 return previous;
53 if (previous.get())
54 previous->Hide();
  /external/chromium_org/components/policy/core/common/
policy_service.h 32 // |previous| contains the values of the policies before the update,
35 const PolicyMap& previous,
96 // same |policy_name| will overwrite the previous callback.
101 const PolicyMap& previous,
  /external/chromium_org/device/hid/
hid_report_descriptor.cc 43 HidReportDescriptorItem* usage = item->previous();
48 HidReportDescriptorItem* usage_page = usage->previous();
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
UnmodifiableLazyStringList.java 95 public String previous() { method
96 return iter.previous();
  /external/llvm/test/MC/ARM/
eh-directive-fnstart-diagnostics.s 6 @ There should be some diagnostics when the previous .fnstart is not closed
24 @ CHECK: error: .fnstart starts before the end of previous one
  /external/oprofile/module/x86/
oprofile_nmi.S 48 .previous; \
54 .previous
  /libcore/luni/src/main/java/libcore/icu/
CollationElementIteratorICU.java 23 * data string depending on whether next() is called or previous().
33 * ce = iterator.previous();
61 * Get the ordering priority of the previous collation element in the text.
63 * @return previous collation element ordering, or NULLORDER if the end of
67 public int previous() { method in class:CollationElementIteratorICU
68 return NativeCollation.previous(address);
74 * @param order collation order returned by previous or next.
  /libcore/luni/src/main/java/libcore/util/
BasicLruCache.java 67 * @return the previous value mapped by {@code key}. Although that entry is
77 V previous = map.put(key, value); local
79 return previous;
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 57 "ListTest - c) add with index failed--affected previous elements",
65 assertTrue("ListTest - c) set failed--affected previous elements", list
75 "ListTest - c) remove with index failed--affected previous elements",
94 "ListTest - e) addAll with index failed--affected previous elements",
165 assertTrue("list iterator previous(): " + i, li.previous() == list
181 li.previous();
185 assertTrue("list iterator previous() exception", exception);
197 Object previous = li.previous(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementTraversal.h 60 static ElementType* previous(const ContainerNode& current) { return previousTemplate(current); } function in class:WebCore::Traversal
61 static ElementType* previous(const Node& current) { return previousTemplate(current); } function in class:WebCore::Traversal
62 static ElementType* previous(const ContainerNode& current, const Node* stayWithin) { return previousTemplate(current, stayWithin); } function in class:WebCore::Traversal
63 static ElementType* previous(const Node& current, const Node* stayWithin) { return previousTemplate(current, stayWithin); } function in class:WebCore::Traversal
79 // Previous / Next sibling.
124 node = NodeTraversal::previous(*node, &current);
152 Node* node = NodeTraversal::previous(current);
154 node = NodeTraversal::previous(*node);
162 Node* node = NodeTraversal::previous(current, stayWithin);
164 node = NodeTraversal::previous(*node, stayWithin)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderCounter.cpp 62 Element* previous = ElementTraversal::previousIncludingPseudo(*self); local
63 while (previous && !previous->renderer())
64 previous = ElementTraversal::previousIncludingPseudo(*previous);
65 return previous ? previous->renderer() : 0;
74 Element* previous = ElementTraversal::pseudoAwarePreviousSibling(*self); local
75 while (previous && !previous->renderer()
433 CounterNode* previous; local
    [all...]
  /external/smali/util/src/test/java/org/jf/util/
AbstractForwardSequentialListTest.java 109 Assert.assertEquals(i, iter.previous().intValue());
140 Assert.assertEquals(50, iter.previous().intValue());
195 // the last call to previous()
199 iter.previous();
202 iter.previous();
212 iter.previous();
  /frameworks/base/core/java/android/net/http/
AndroidHttpClientConnection.java 316 CharArrayBuffer previous = null; local
334 if ((first == ' ' || first == '\t') && previous != null) {
347 previous.length() + 1 + current.length() - start >
351 previous.append(' ');
352 previous.append(current, start, current.length() - start);
354 if (previous != null) {
355 headers.parseHeader(previous);
358 previous = current;
366 if (previous != null) {
367 headers.parseHeader(previous);
    [all...]
  /external/chromium_org/content/renderer/gpu/
compositor_software_output_device.cc 139 Buffer* previous = NULL; local
141 previous = buffers_[current_index_];
154 if (!previous) {
158 // to be copied from the |previous| buffer.
161 current->FindDamageDifferenceFrom(previous, &region) ||
162 previous->FindDamageDifferenceFrom(current, &region);
173 back_bitmap.setPixels(previous->memory());
183 // Make |current| child of |previous| and orphan all of |current|'s children.
184 current->SetParent(previous, damage_rect);
  /frameworks/base/core/java/com/android/internal/app/
LocalePicker.java 117 // check previous entry:
121 final LocaleInfo previous = localeInfos.get(localeInfos.size() - 1); local
122 if (previous.locale.getLanguage().equals(l.getLanguage()) &&
123 !previous.locale.getLanguage().equals("zz")) {
125 Log.v(TAG, "backing up and fixing " + previous.label + " to " +
126 getDisplayName(previous.locale, specialLocaleCodes, specialLocaleNames));
128 previous.label = toTitleCase(getDisplayName(
129 previous.locale, specialLocaleCodes, specialLocaleNames));
  /external/guava/guava/src/com/google/common/collect/
Cut.java 251 @Nullable C previous = domain.previous(endpoint); local
252 return (previous == null) ? Cut.<C>belowAll() : new AboveValue<C>(previous);
260 @Nullable C previous = domain.previous(endpoint); local
261 return (previous == null) ? Cut.<C>aboveAll() : new AboveValue<C>(previous);
278 return domain.previous(endpoint);
DiscreteDomains.java 52 @Override public Integer previous(Integer value) { method in class:DiscreteDomains.IntegerDomain
92 @Override public Long previous(Long value) { method in class:DiscreteDomains.LongDomain
144 @Override public BigInteger previous(BigInteger value) { method in class:DiscreteDomains.BigIntegerDomain
  /cts/tools/dasm/src/java_cup/
symbol_set.java 104 Object previous; local
109 previous = _all.put(sym.name(),sym);
111 /* if we had a previous, this is no change */
112 return previous == null;
  /external/linux-tools-perf/perf-3.12.0/arch/x86/lib/
memset_64.S 35 .previous
57 .previous
154 .previous

Completed in 2077 milliseconds

1 2 34 5 6 7 8 91011>>