Searched refs:previous (Results 26 - 50 of 550) sorted by relevance

1234567891011>>

/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DCharacterIteration.java40 c = ci.previous();
56 ci.previous();
81 ci.previous();
91 char trail = ci.previous();
94 char lead = ci.previous();
114 ci.previous();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCharacterIteration.java36 c = ci.previous();
52 ci.previous();
77 ci.previous();
87 char trail = ci.previous();
90 char lead = ci.previous();
110 ci.previous();
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
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/guava/guava/src/com/google/common/collect/
H A DTransformedListIterator.java48 public final T previous() { method in class:TransformedListIterator
49 return transform(backingIterator().previous());
/external/guice/core/test/com/google/inject/example/
H A DClientServiceWithFactories.java62 Service previous = ServiceFactory.getInstance();
71 ServiceFactory.setInstance(previous);
/external/libvpx/libvpx/test/
H A Dactive_map_refresh_test.cc20 int CheckMb(const vpx_image_t &current, const vpx_image_t &previous, argument
40 previous.planes[plane][previous.stride[plane] * r + c])
49 const vpx_image_t &previous, uint8_t *map) {
52 map[mb_r * mb_cols + mb_c] = CheckMb(current, previous, mb_r, mb_c);
81 vpx_image_t *previous = y4m_holder_->img(); local
82 ASSERT_TRUE(previous != NULL);
89 GenerateMap(mb_height, mb_width, *current, *previous, active_map);
48 GenerateMap(int mb_rows, int mb_cols, const vpx_image_t &current, const vpx_image_t &previous, uint8_t *map) argument
/external/boringssl/src/crypto/hkdf/
H A Dhkdf.c31 uint8_t prk[EVP_MAX_MD_SIZE], previous[EVP_MAX_MD_SIZE]; local
64 !HMAC_Update(&hmac, previous, digest_len))) {
69 !HMAC_Final(&hmac, previous, NULL)) {
77 memcpy(out_key + done, previous, todo);
/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/llvm/test/MC/ELF/
H A Dsubsection.s27 .previous
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DElemContext.java108 /** The previous element "stack frame". */
136 * @param previous The "stack frame" corresponding to the new
139 private ElemContext(final ElemContext previous) argument
141 m_prev = previous;
142 m_currentElemDepth = previous.m_currentElemDepth + 1;
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
H A Decmalintrules.py140 token = token.previous
207 the previous token doesn't end with a space and the previous token is on the
215 token.previous and token.line_number == token.previous.line_number and
216 len(token.previous.string) - len(token.previous.string.rstrip()) == 0):
232 if (token.previous and token.previous.type == Type.WHITESPACE and
237 token.previous, positio
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DUnmodifiableListIteratorTest.java51 assertEquals("b", iterator.previous());
64 assertEquals("b", iterator.previous());
93 @Override public String previous() {
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUCharacterIterator.java146 previous();
199 previous();
206 * Decrement to the position of the previous code unit in the
210 * @return the previous code unit in the text, or DONE if the new
213 public abstract int previous(); method in class:UCharacterIterator
217 * Retreat to the start of the previous code point in the text,
220 * as <code>previous()</code>. Otherwise the iterator is
223 * @return the previous code point in the text, or DONE if the new
227 int ch1 = previous();
229 int ch2 = previous();
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUCharacterIterator.java156 previous();
213 previous();
220 * Decrement to the position of the previous code unit in the
224 * @return the previous code unit in the text, or DONE if the new
228 public abstract int previous(); method in class:UCharacterIterator
232 * Retreat to the start of the previous code point in the text,
235 * as <code>previous()</code>. Otherwise the iterator is
238 * @return the previous code point in the text, or DONE if the new
243 int ch1 = previous();
245 int ch2 = previous();
[all...]
/external/junit/src/org/junit/internal/runners/
H A DTestClass.java68 private boolean isShadowed(Method current, Method previous) { argument
69 if (! previous.getName().equals(current.getName()))
71 if (previous.getParameterTypes().length != current.getParameterTypes().length)
73 for (int i= 0; i < previous.getParameterTypes().length; i++) {
74 if (! previous.getParameterTypes()[i].equals(current.getParameterTypes()[i]))
/external/libdrm/tests/
H A Ddrmsl.c64 unsigned long previous; local
79 previous = 0;
82 if (key <= previous) {
83 printf( "%lu !< %lu\n", previous, key);
85 previous = key;
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractService.java191 State previous = state();
192 switch (previous) {
210 throw new AssertionError("isStoppable is incorrectly implemented, saw: " + previous);
212 throw new AssertionError("Unexpected state: " + previous);
338 State previous = snapshot.state;
339 if (previous != STOPPING && previous != RUNNING) {
341 "Cannot notifyStopped() when the service is " + previous);
346 terminated(previous);
363 State previous
[all...]
/external/llvm/test/MC/AsmParser/
H A Dsection.s7 .previous
11 .previous
15 .previous
35 .previous
39 .previous
45 .previous
47 .previous
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractMessageParser.java120 CharArrayBuffer previous = null;
135 if ((current.charAt(0) == ' ' || current.charAt(0) == '\t') && previous != null) {
147 && previous.length() + 1 + current.length() - i > maxLineLen) {
150 previous.append(' ');
151 previous.append(current, i, current.length() - i);
154 previous = current;
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DMicrobenchmarkAllocationWorker.java110 AllocationStats previous = null;
112 if (previous == null) {
115 AllocationStats.Delta delta = allocationStats.delta(previous);
118 previous = allocationStats;
/external/ceres-solver/internal/ceres/
H A Dline_search_direction.h64 virtual bool NextDirection(const LineSearchMinimizer::State& previous,
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableExtractor.java155 RegisterSpec previous
158 if (previous != null
159 && (previous.getReg() != result.getReg())) {
161 primaryState.remove(previous);

Completed in 2924 milliseconds

1234567891011>>