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

/frameworks/base/sax/java/android/sax/
H A DRootElement.java101 Element current = null; field in class:RootElement.Handler
123 + " within text element named " + current + ".",
127 // If we're one level below the current element.
128 if (depth == current.depth + 1) {
130 Children children = current.children;
155 this.current = e;
180 Element current = this.current;
182 // If we've ended the current element...
183 if (depth == current
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DTicker.java56 int current; field in class:Ticker.Segment
78 if (this.current > this.text.length()) {
81 CharSequence substr = this.text.subSequence(this.current, this.text.length());
87 this.next = this.current + end;
90 throw new RuntimeException("lineCount=" + lineCount + " current=" + current +
121 this.current = index + start;
125 this.current = len;
138 this.current = index;
170 // (which will let the current on
[all...]
/frameworks/base/include/private/ui/
H A DRegionHelper.h75 RECT current; local
78 int inside = spanner.next(current.top, current.bottom);
82 int inside = spannerInner.next(current.left, current.right);
84 if (current.left < current.right &&
85 current.top < current.bottom) {
86 rasterizer(current);
[all...]
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dsbr_update_freq_scale.cpp309 Int32 current; local
326 current = (tmp_q1 + 16) >> 5;
328 diff[i-1] = current - previous;
329 previous = current;
/frameworks/base/services/surfaceflinger/
H A DBlurFilter.cpp263 PIXEL current; local
293 current.clear();
297 current += *in;
303 current += *in;
305 *fb++ = current.to(areaShift, k==repeat-1, dither);
311 current += *in;
312 current -= *out;
314 *fb++ = current.to(areaShift, k==repeat-1, dither);
320 current -= *out;
322 *fb++ = current
[all...]
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java246 * Set the range of numbers allowed for the number picker. The current
257 * Set the range of numbers allowed for the number picker. The current
280 * Set the current value for the number picker.
282 * @param current the current value the start of the range (inclusive)
283 * @throws IllegalArgumentException when current is not within the range
286 public void setCurrent(int current) { argument
287 if (current < mStart || current > mEnd) {
289 "current shoul
321 changeCurrent(int current) argument
[all...]
/frameworks/base/services/camera/libcameraservice/
H A DFakeCamera.cpp404 bool current = black; local
406 dst[y*mWidth+x] = current?0:0xffff;
409 current = !current;
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp1650 sp<AaptAssets> current = this; local
1714 current->setOverlay(nextOverlay);
1715 current = nextOverlay;
1717 count = current->slurpResourceTree(bundle, String8(res));
H A DResource.cpp80 // Try to get next file in this current group.
816 sp<AaptAssets> current = assets->getOverlay(); local
817 while(current.get()) {
820 current->setResources(resources);
821 collect_files(current, resources);
822 current = current->getOverlay();
880 current = assets;
881 while(current.get()) {
883 current
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DEditStyledText.java1129 private int findLineStart(Editable text, int current) { argument
1131 Log.d(LOG_TAG, "--- findLineStart: curr:" + current +
1134 int pos = current;
1160 private int findLineEnd(Editable text, int current) { argument
1162 Log.d(LOG_TAG, "--- findLineEnd: curr:" + current +
1165 int pos = current;
/frameworks/base/media/java/android/media/
H A DAudioService.java504 * as the current volume.
1528 private void persistVolume(VolumeStreamState streamState, boolean current, boolean lastAudible) { argument
1529 if (current) {
2039 * Display in the log the current entries in the audio focus stack
2061 // is the current top of the focus stack abandoning focus? (because of death or request)
2171 // the reason for the audio focus request has changed: remove the current top of
2176 // notify current top of stack it is losing focus
2257 // if in a call or ringing, do not break the current phone app behavior
2269 // create a new intent specifically aimed at the current registered listener
2273 // trap the current broadcas
[all...]
/frameworks/base/include/private/opengles/
H A Dgl_context.h493 matrix_stack_t *current; member in struct:android::gl::transform_state_t
626 vertex_t current; member in struct:android::gl::ogles_context_t
/frameworks/base/opengl/libagl/
H A Degl.cpp1198 ogles_context_t* current = (ogles_context_t*)getGlThreadSpecific(); local
1202 if (current != gl) {
1203 // it is an error to set a context current, if it's already
1204 // current to another thread
1208 if (current) {
1209 // mark the current context as not current, and flush
1211 egl_context_t::context(current)->flags &= ~egl_context_t::IS_CURRENT;
1215 // The context is not current, make it current!
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java453 * current run.
459 * mTotalTime to find the time for the current run of the system.
806 * subtract this from the current battery time to find the amount of
1192 // If the current time is basically the same as the last time,
1199 // If the current is the same as the one before, then we no
2284 long current = computeCurrentTcpBytesReceived();
2286 current -= mTcpBytesReceivedAtLastUnplug;
2288 current += mLoadedTcpBytesReceived;
2290 return current;
2304 long current
4327 getTcpBytes(long current, long[] dataBytes, int which) argument
[all...]

Completed in 921 milliseconds