Searched defs:previous (Results 1 - 25 of 255) sorted by relevance

1234567891011

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DRealConvergenceChecker.java43 * call if needed. Each time this method is called, the previous and current point
49 * @param previous point from previous iteration
53 boolean converged(int iteration, RealPointValuePair previous, RealPointValuePair current); argument
H A DVectorialConvergenceChecker.java43 * call if needed. Each time this method is called, the previous and current point
49 * @param previous point from previous iteration
53 boolean converged(int iteration, VectorialPointValuePair previous, VectorialPointValuePair current); argument
H A DSimpleRealPointChecker.java73 final RealPointValuePair previous,
75 final double[] p = previous.getPoint();
72 converged(final int iteration, final RealPointValuePair previous, final RealPointValuePair current) argument
H A DSimpleScalarValueChecker.java73 final RealPointValuePair previous,
75 final double p = previous.getValue();
72 converged(final int iteration, final RealPointValuePair previous, final RealPointValuePair current) argument
H A DSimpleVectorialPointChecker.java73 final VectorialPointValuePair previous,
75 final double[] p = previous.getPointRef();
72 converged(final int iteration, final VectorialPointValuePair previous, final VectorialPointValuePair current) argument
H A DSimpleVectorialValueChecker.java73 final VectorialPointValuePair previous,
75 final double[] p = previous.getValueRef();
72 converged(final int iteration, final VectorialPointValuePair previous, final VectorialPointValuePair current) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
H A DNonMonotonousSequenceException.java49 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);
94 this.previous = previous;
118 * @return the previous valu
60 NonMonotonousSequenceException(Number wrong, Number previous, int index) argument
77 NonMonotonousSequenceException(Number wrong, Number previous, int index, MathUtils.OrderDirection direction, boolean strict) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DAbstractIndexedListIterator.java61 * the element at that index, if available. Calls to {@link #previous()} can
98 public final E previous() { method in class:AbstractIndexedListIterator
H A DAbstractSequentialIterator.java28 * previous element. Null elements are not supported, nor is the
35 * protected Integer computeNext(Integer previous) {
36 * return (previous == 1 << 30) ? null : previous * 2;
57 * Returns the element that follows {@code previous}, or returns {@code null}
62 protected abstract T computeNext(T previous); argument
H A DForwardingListIterator.java57 public E previous() { method in class:ForwardingListIterator
58 return delegate().previous();
H A DTransformedListIterator.java48 public final T previous() { method in class:TransformedListIterator
49 return transform(backingIterator().previous());
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dthreadpool.c135 struct threadpool_task *task, *previous; local
158 previous = pool->workqueue;
159 while (previous && previous->next)
160 previous = previous->next;
162 previous->next = task;
/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/smali/util/src/main/java/org/jf/util/
H A DAbstractListIterator.java53 public T previous() { method in class:AbstractListIterator
/external/syslinux/com32/lib/sys/module/
H A Dexec.c38 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/
H A Dvm-state.h45 ExternalCallbackScope* previous() { return previous_scope_; } function in class:v8::internal::BASE_EMBEDDED
/external/boringssl/src/crypto/lhash/
H A Dlhash_test.cc115 void *previous; local
116 ASSERT_TRUE(lh_insert(lh.get(), &previous, key.get()));
117 EXPECT_EQ(Lookup(&dummy_lh, key.get()), previous); local
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DReplaceableUCharacterIterator.java114 previous();
160 * Returns previous UTF16 character and decrements the iterator's currentIndex by
168 public int previous(){ method in class:ReplaceableUCharacterIterator
H A DUCharArrayIterator.java62 public int previous() { method in class:UCharArrayIterator
H A DUCharacterIteratorWrapper.java54 return (char)iterator.previous();
91 public char previous(){ method in class:UCharacterIteratorWrapper
93 return (char) iterator.previous();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DReplaceableUCharacterIterator.java112 previous();
158 * Returns previous UTF16 character and decrements the iterator's currentIndex by
166 public int previous(){ method in class:ReplaceableUCharacterIterator
H A DUCharArrayIterator.java60 public int previous() { method in class:UCharArrayIterator
H A DUCharacterIteratorWrapper.java52 return (char)iterator.previous();
89 public char previous(){ method in class:UCharacterIteratorWrapper
91 return (char) iterator.previous();
/external/libchrome/base/containers/
H A Dlinked_list.h14 // list, as extending LinkNode (this gives it next/previous pointers).
48 // node = node->previous()) {
74 // "previous" pointers that reference other nodes in the list.
77 // space for the "next" and "previous" pointers (base::LinkNode<T>*).
79 // needs to glue on the "next" and "previous" pointers using
88 LinkNode(LinkNode<T>* previous, LinkNode<T>* next) argument
89 : previous_(previous), next_(next) {}
111 // next() and previous() return non-NULL if and only this node is not in any
117 LinkNode<T>* previous() const { function in class:base::LinkNode
146 // and root_->previous() wrap
[all...]
/external/mesa3d/src/glx/apple/
H A Dapple_glx_context.h70 struct apple_glx_context *previous, *next; member in struct:apple_glx_context

Completed in 659 milliseconds

1234567891011