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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/hwui/tests/unit/
TestUtilsTests.cpp 25 bool previous = Properties::debugOverdraw; local
30 EXPECT_EQ(previous, Properties::debugOverdraw);
35 EXPECT_EQ(previous, Properties::debugOverdraw);
  /external/pdfium/fxjs/xfa/
cjx_keep.cpp 27 void CJX_Keep::previous(CFXJSE_Value* pValue, function in class:CJX_Keep
  /external/glide/library/src/main/java/com/bumptech/glide/load/
MultiTransformation.java 34 Resource<T> previous = resource; local
37 Resource<T> transformed = transformation.transform(previous, outWidth, outHeight);
38 if (previous != null && !previous.equals(resource) && !previous.equals(transformed)) {
39 previous.recycle();
41 previous = transformed;
43 return previous;
  /external/mesa3d/src/gallium/state_trackers/nine/
threadpool.c 135 struct threadpool_task *task, *previous; local
158 previous = pool->workqueue;
159 while (previous && previous->next)
160 previous = previous->next;
162 previous->next = task;
  /frameworks/support/navigation/safe-args-generator/src/tests/test-data/a/b/
R.java 24 public static final int previous = 0x7f060001; field in class:R.id
  /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/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...]
  /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...]
  /bionic/linker/
linker_memory.cpp 50 pid_t previous = fallback_tid.exchange(0); local
51 if (previous == 0) {
53 } else if (previous != gettid()) {
55 previous);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
NonMonotonousSequenceException.java 47 * Previous value.
49 private final Number previous; field in class:NonMonotonousSequenceException
57 * @param previous Previous value in the sequence.
61 Number previous,
63 this(wrong, previous, index, MathUtils.OrderDirection.INCREASING, true);
70 * @param previous Previous value in the sequence.
78 Number previous,
89 wrong, previous, index, index - 1)
    [all...]
  /external/boringssl/src/crypto/hkdf/
hkdf.c 64 uint8_t previous[EVP_MAX_MD_SIZE]; local
87 !HMAC_Update(&hmac, previous, digest_len))) {
92 !HMAC_Final(&hmac, previous, NULL)) {
100 OPENSSL_memcpy(out_key + done, previous, todo);
  /external/boringssl/src/crypto/lhash/
lhash_test.cc 111 void *previous; local
112 ASSERT_TRUE(lh_insert(lh.get(), &previous, key.get()));
113 EXPECT_EQ(Lookup(&dummy_lh, key.get()), previous); local
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
DrawableCrossFadeViewAnimation.java 30 * Animates from the previous drawable to the current drawable in one of two ways.
33 * <li>Using the default animation provided in the constructor if the previous drawable is null</li>
34 * <li>Using the cross fade animation with the duration provided in the constructor if the previous
44 Drawable previous = adapter.getCurrentDrawable(); local
45 if (previous != null) {
46 TransitionDrawable transitionDrawable = new TransitionDrawable(new Drawable[] { previous, current });
  /external/guava/guava/src/com/google/common/collect/
AbstractIndexedListIterator.java 61 * the element at that index, if available. Calls to {@link #previous()} can
98 public final E previous() { method in class:AbstractIndexedListIterator
ForwardingListIterator.java 57 public E previous() { method in class:ForwardingListIterator
58 return delegate().previous();
TransformedListIterator.java 48 public final T previous() { method in class:TransformedListIterator
49 return transform(backingIterator().previous());
  /external/guice/core/src/com/google/inject/internal/
SingleFieldInjector.java 52 Dependency previous = context.pushDependency(dependency, binding.getSource()); local
61 context.popStateAndSetDependency(previous);
  /external/python/cpython3/Objects/stringlib/
localeutil.h 11 char previous; member in struct:__anon33563
20 self->previous = 0;
33 return self->previous;
39 self->previous = ch;
  /external/smali/util/src/main/java/org/jf/util/
AbstractListIterator.java 53 public T previous() { method in class:AbstractListIterator
  /external/syslinux/com32/lib/sys/module/
exec.c 38 struct elf_module *previous;
80 previous = __syslinux_current;
117 __syslinux_current = previous;
159 struct elf_module *previous; local
198 previous = __syslinux_current;
220 __syslinux_current = previous;
  /external/v8/src/
vm-state.h 45 ExternalCallbackScope* previous() { return previous_scope_; } function in class:v8::internal::BASE_EMBEDDED
  /frameworks/base/sax/java/android/sax/
Children.java 42 Child previous; local
51 previous = current;
57 previous.next = current;
  /hardware/intel/common/libwsbm/src/
wsbm_atomic.h 67 int32_t previous; local
69 __asm__ __volatile__("lock; cmpxchgl %k1,%2":"=a"(previous)
73 return previous;
  /libcore/ojluni/src/main/java/java/text/
CharacterIterator.java 56 * The methods previous() and next() are used for iteration. They return DONE if
76 * for(char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
94 * c = iter.previous()) {
156 public char previous(); method in interface:CharacterIterator
  /libcore/ojluni/src/main/java/java/util/
ListIterator.java 35 * to {@code previous()} and the element that would be
46 * {@link #previous()}.
77 * or intermixed with calls to {@link #previous} to go back and forth.
78 * (Note that alternating calls to {@code next} and {@code previous}
89 * returns {@code true} if {@link #previous} would return an element
98 * Returns the previous element in the list and moves the cursor
102 * to {@code next} and {@code previous} will return the same
105 * @return the previous element in the list
106 * @throws NoSuchElementException if the iteration has no previous
109 E previous(); method in interface:ListIterator
    [all...]

Completed in 692 milliseconds

1 2 3 4 5 6 7 8 91011>>