Searched defs:current (Results 1 - 25 of 567) sorted by relevance

1234567891011>>

/external/libchrome/base/
H A Dguid.cc19 char current = guid[i]; local
21 if (current != '-')
24 if (!IsHexDigit(current))
H A Dthread_task_runner_handle.cc22 ThreadTaskRunnerHandle* current = lazy_tls_ptr.Pointer()->Get(); local
23 DCHECK(current);
24 return current->task_runner_;
/external/libexif/test/
H A Dtest-sorted.c33 ExifTag last = 0, current; local
36 current = exif_tag_table_get_tag(i);
37 if (current < last) {
39 current);
43 printf("Tag 0x%04x has a NULL name\n", current);
46 last = current;
/external/skia/src/pathops/
H A DSkPathOpsTightBounds.cpp24 SkOpContour* current = contourList; local
25 SkPathOpsBounds bounds = current->bounds();
26 while ((current = current->next())) {
27 bounds.add(current->bounds());
/external/v8/test/mjsunit/regress/
H A Dregress-454725.js9 var current = 0; variable
29 current++;
30 if (current == depth) return;
38 current--;
/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
48 * @param iteration index of current iteration
50 * @param current point from current 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
48 * @param iteration index of current iteration
50 * @param current point from current iteration
53 boolean converged(int iteration, VectorialPointValuePair previous, VectorialPointValuePair current); argument
H A DSimpleRealPointChecker.java74 final RealPointValuePair current) {
76 final double[] c = current.getPoint();
72 converged(final int iteration, final RealPointValuePair previous, final RealPointValuePair current) argument
H A DSimpleScalarValueChecker.java74 final RealPointValuePair current) {
76 final double c = current.getValue();
72 converged(final int iteration, final RealPointValuePair previous, final RealPointValuePair current) argument
H A DSimpleVectorialPointChecker.java74 final VectorialPointValuePair current) {
76 final double[] c = current.getPointRef();
72 converged(final int iteration, final VectorialPointValuePair previous, final VectorialPointValuePair current) argument
H A DSimpleVectorialValueChecker.java74 final VectorialPointValuePair current) {
76 final double[] c = current.getValueRef();
72 converged(final int iteration, final VectorialPointValuePair previous, final VectorialPointValuePair current) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisTraverser.java84 * Traverse to the next node after the current node.
88 * @param current The current node of the traversal. This is the last known
91 * should be set equal to current. Note that in order to test whether
97 public abstract int next(int context, int current); argument
100 * Traverse to the next node after the current node that is matched
105 * @param current The current node of the traversal. This is the last known
108 * should be set equal to current. Note that in order to test whether
115 public abstract int next(int context, int current, in argument
[all...]
/external/bison/lib/
H A Dmsvc-inval.c104 struct gl_msvc_inval_per_thread *current = gl_msvc_inval_current (); local
105 if (current->restart_valid)
106 longjmp (current->restart, 1);
/external/curl/tests/libtest/
H A Dlib526.c59 int current = 0; local
80 multi_add_handle(m, curl[current]);
101 curl_easy_cleanup(curl[current]);
102 curl[current] = NULL;
104 if(++current < NUM_HANDLES) {
105 fprintf(stderr, "Advancing to URL %d\n", current);
120 multi_add_handle(m, curl[current]);
H A Dlib533.c40 int current=0; local
71 if(!current++) {
/external/deqp/framework/common/
H A DtcuSeedBuilder.cpp45 const deUint32 current = static_cast<deUint32>(data[i]); local
46 crc = crc ^ current;
/external/glide/library/src/main/java/com/bumptech/glide/request/animation/
H A DDrawableCrossFadeViewAnimation.java30 * Animates from the previous drawable to the current drawable in one of two ways.
38 * @param current {@inheritDoc}
43 public boolean animate(T current, ViewAdapter adapter) { argument
46 TransitionDrawable transitionDrawable = new TransitionDrawable(new Drawable[] { previous, current });
52 defaultAnimation.animate(current, adapter);
H A DGlideAnimation.java30 * Returns the current drawable being displayed in the view, or null if no such drawable exists (or one cannot
36 * Sets the current drawable (usually an animated drawable) to display in the wrapped view.
47 * @param current The new resource that will be displayed in the view.
52 * needs to manually set the current resource on the view.
54 boolean animate(R current, ViewAdapter adapter); argument
H A DViewAnimation.java25 * Always clears the current animation on the view using {@link android.view.View#clearAnimation()}, then
28 * the animation does not actually set the current resource on the view.
30 * @param current {@inheritDoc}
35 public boolean animate(R current, ViewAdapter adapter) { argument
H A DViewPropertyAnimation.java32 * @param current {@inheritDoc}
37 public boolean animate(R current, ViewAdapter adapter) { argument
/external/icu/icu4c/source/common/unicode/
H A Dcaniter.h89 * Gets the NFD form of the current source we are iterating over.
174 // current is used in iterating to combine pieces
175 int32_t *current; member in class:U_FINAL
/external/icu/icu4c/source/i18n/
H A Dpluralaffix.cpp21 DigitAffix *current = affixes.getMutable(variant, status); local
25 current->remove();
26 current->append(value);
39 for (DigitAffix *current = affixes.nextMutable(index);
40 current != NULL; current = affixes.nextMutable(index)) {
41 current->appendUChar(value, fieldId);
49 for (DigitAffix *current = affixes.nextMutable(index);
50 current != NULL; current
[all...]
/external/jsoncpp/src/lib_json/
H A Djson_tool.h60 * @param current Input/Output string buffer.
63 static inline void uintToString(LargestUInt value, char*& current) { argument
64 *--current = 0;
66 *--current = char(value % 10) + '0';
/external/libbrillo/brillo/message_loops/
H A Dmessage_loop.cc24 MessageLoop* MessageLoop::current() { function in class:brillo::MessageLoop
43 "This is not the MessageLoop bound to the current thread.";
/external/libweave/third_party/chromium/base/
H A Dguid_unittest.cc35 char current = guid[i]; local
37 if (current != '-')
40 if (!IsHexDigit(current))

Completed in 567 milliseconds

1234567891011>>