Searched refs:previous (Results 101 - 125 of 550) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/common/
H A Dulist.c18 UListNode *previous; member in struct:UListNode
63 newItem->previous = NULL;
88 newItem->previous = list->tail;
114 newItem->previous = NULL;
116 list->head->previous = newItem;
/external/selinux/libsepol/cil/src/
H A Dcil_list.c227 struct cil_list_item *previous = NULL; local
235 if (previous == NULL) {
238 previous->next = item->next;
241 list->tail = previous;
246 previous = item;
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DGaussNewtonEstimator.java173 double previous = Double.POSITIVE_INFINITY;
222 previous = cost;
226 (FastMath.abs(previous - cost) > (cost * steadyStateThreshold) &&
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularContiguousSet.java72 protected C computeNext(C previous) {
73 return equalsOrThrow(previous, last) ? null : domain.next(previous);
H A DForwardingImmutableMap.java45 V previous = delegate.put(key, checkNotNull(entry.getValue()));
46 if (previous != null) {
/external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
H A DCrawler.java85 AtomicInteger previous = hostnames.putIfAbsent(url.host(), hostnameCount);
86 if (previous != null) hostnameCount = previous;
/external/squashfs-tools/squashfs-tools/
H A Dprogressbar.c113 static long long previous = -1; local
120 if(current == previous)
122 previous = current;
/external/valgrind/helgrind/tests/
H A Dannotate_rwlock.stderr.exp24 This conflicts with a previous write of size 4 by thread #x
41 This conflicts with a previous write of size 4 by thread #x
58 This conflicts with a previous read of size 4 by thread #x
75 This conflicts with a previous read of size 4 by thread #x
92 This conflicts with a previous read of size 4 by thread #x
114 This conflicts with a previous read of size 4 by thread #x
H A Dfree_is_write.stderr.exp23 This conflicts with a previous read of size 1 by thread #x
H A Dhg03_inherit.stderr.exp21 This conflicts with a previous read of size 4 by thread #x
/external/icu/icu4c/source/samples/uciter8/
H A Duciter8.c91 c1=iter1->previous(iter1);
92 c2=iter2->previous(iter2);
94 log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT));
186 c1=iter1->previous(iter1);
187 c2=iter2->previous(iter2);
189 log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT));
251 c=iter2->previous(iter2);
253 log_err("%s->previous(a
[all...]
/external/mesa3d/src/glx/apple/
H A Dapple_glx_drawable.c150 if (d->previous) {
151 d->previous->next = d->next;
156 * has no previous pointer.
162 d->next->previous = d->previous;
296 d->previous = NULL;
309 drawables_list->previous = agd;
/external/valgrind/coregrind/m_dispatch/
H A Ddispatch-ppc64le-linux.S96 .previous
435 .previous
473 .previous
511 .previous
575 .previous
605 .previous
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.cc208 void Logging::State::MergePrevious(const State& previous) { argument
210 tag = previous.tag;
211 } else if (!previous.tag.empty()) {
212 tag = previous.tag + "_" + tag;
214 timestamp_ms = std::max(previous.timestamp_ms, timestamp_ms);
215 enabled = previous.enabled && enabled;
/external/e2fsprogs/debugfs/
H A Dextent_cmds.ct25 request do_prev_sib, "Goto previous sibling",
31 request do_prev_leaf, "Goto previous leaf",
37 request do_prev, "Goto previous node",
38 previous, prev, p;
/external/guice/core/src/com/google/inject/internal/
H A DInternalContext.java74 Dependency<?> previous = this.dependency;
77 return previous;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
H A DTestUCharacterIterator.java87 if (iterator.previous() != ITERATION_STRING_.charAt(
120 if (ch != (int)iterator.previous() &&
122 errln("Error mismatch in previous() and " +
127 if (UTF16.getLeadSurrogate(ch) != iterator.previous() ||
128 UTF16.getTrailSurrogate(ch) != iterator.previous()) {
129 errln("Error mismatch in previous and " +
256 public int previous() { method in class:TestUCharacterIterator.UCharIterator
347 // - for previous(), 0 for current(), + for next()
368 c2=iter32.previous();
412 c1=wrap_ci.previous();
[all...]
/external/icu/icu4c/source/i18n/
H A Duitercollationiterator.cpp54 if(!U16_IS_TRAIL(trail) && trail >= 0) { iter.previous(&iter); }
117 iter.previous(&iter);
148 iter.previous(&iter);
171 iter.previous(&iter);
183 iter.previous(&iter);
207 c = iter.previous(&iter);
216 CollationFCD::hasTccc(prev = iter.previous(&iter))) {
229 prev = iter.previous(&iter);
393 // Fetch the previous character and its fcd16 value.
406 // Fails FCD check. Find the previous FC
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
H A DTestUCharacterIterator.java83 if (iterator.previous() != ITERATION_STRING_.charAt(
116 if (ch != (int)iterator.previous() &&
118 errln("Error mismatch in previous() and " +
123 if (UTF16.getLeadSurrogate(ch) != iterator.previous() ||
124 UTF16.getTrailSurrogate(ch) != iterator.previous()) {
125 errln("Error mismatch in previous and " +
252 public int previous() { method in class:TestUCharacterIterator.UCharIterator
343 // - for previous(), 0 for current(), + for next()
364 c2=iter32.previous();
408 c1=wrap_ci.previous();
[all...]
/external/opencv3/samples/cpp/tutorial_code/core/mat_mask_operations/
H A Dmat_mask_operations.cpp71 const uchar* previous = myImage.ptr<uchar>(j - 1); local
80 -current[i-nChannels] - current[i+nChannels] - previous[i] - next[i]);
/external/proguard/src/proguard/gui/
H A DTabbedPane.java195 * Selects the previous tab.
197 public void previous() method in class:TabbedPane
199 cardLayout.previous(cardPanel);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DUnmodifiableLazyStringList.java127 public String previous() {
128 return iter.previous();
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.h134 // Return the previous token -- i.e. what current() returned before the
135 // previous call to Next().
136 const Token& previous();
142 // Like Next(), but also collects comments which appear between the previous
145 // Comments which appear to be attached to the previous token are stored
252 Token previous_; // Returned by previous().
389 inline const Tokenizer::Token& Tokenizer::previous() { function in class:google::protobuf::io::Tokenizer
/external/selinux/libsemanage/src/
H A Dconf-scan.l48 save-previous return SAVE_PREVIOUS;
/external/v8/src/compiler/
H A Djs-context-specialization.cc51 context = handle(context->previous(), isolate());
101 context = handle(context->previous(), isolate());

Completed in 923 milliseconds

1234567891011>>