/frameworks/base/core/java/android/view/ |
ViewGroup.java | [all...] |
SurfaceView.java | 777 * @param inOutDirty A rectangle that represents the dirty region that the caller wants 778 * to redraw. This function may choose to expand the dirty rectangle if for example 780 * not available. The caller must redraw the entire dirty region as represented 790 private final Canvas internalLockCanvas(Rect dirty) { 798 if (dirty == null) { 803 dirty = mTmpDirty; 807 c = mSurface.lockCanvas(dirty); [all...] |
GLES20RecordingCanvas.java | 147 public int drawDisplayList(DisplayList displayList, Rect dirty, int flags) { 148 int status = super.drawDisplayList(displayList, dirty, flags);
|
/dalvik/vm/hprof/ |
Hprof.h | 111 bool dirty; member in struct:hprof_record_t
|
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/ |
DiskLruCache.java | 107 private static final String DIRTY = "DIRTY"; 123 * DIRTY 335c4c6028171cfddfbaae1a9c313c52 126 * DIRTY 1ab96a171faeeee38496d8b330771a7a 138 * o DIRTY lines track that an entry is actively being created or updated. 139 * Every successful DIRTY action should be followed by a CLEAN or REMOVE 140 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that 390 } else if (parts[0].equals(DIRTY) && parts.length == 2) { 401 * cache. Dirty entries are assumed to be inconsistent and will be deleted. 444 writer.write(DIRTY + ' ' + entry.key + '\n') 582 File dirty = entry.getDirtyFile(i); local [all...] |
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3rewritestreams.c | 243 stream->dirty = ANTLR3_FALSE; 512 stream->dirty = ANTLR3_TRUE; 565 /// size==1. If we've already used the element, dup (dirty bit set). 575 if ( stream->dirty || (stream->cursor >=n && n==1) ) 795 if (stream->dirty == ANTLR3_TRUE || (stream->cursor > n && n == 1))
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/ |
DiskLruCache.java | 97 private static final String DIRTY = "DIRTY"; 109 // DIRTY 335c4c6028171cfddfbaae1a9c313c52 112 // DIRTY 1ab96a171faeeee38496d8b330771a7a 124 // o DIRTY lines track that an entry is actively being created or updated. 125 // Every successful DIRTY action should be followed by a CLEAN or REMOVE 126 // action. DIRTY lines without a matching CLEAN or REMOVE indicate that 286 } else if (parts[0].equals(DIRTY) && parts.length == 2) { 297 * cache. Dirty entries are assumed to be inconsistent and will be deleted. 340 writer.write(DIRTY + ' ' + entry.key + '\n') 470 File dirty = entry.getDirtyFile(i); local [all...] |
/external/skia/legacy/src/animator/ |
SkDisplayMovie.cpp | 63 void SkDisplayMovie::dirty() { function in class:SkDisplayMovie
|
SkDisplayTypes.cpp | 17 void SkDisplayDepend::dirty() { function in class:SkDisplayDepend
|
SkDrawBitmap.cpp | 149 void SkImage::dirty() { function in class:SkImage
|
/external/skia/src/animator/ |
SkDisplayMovie.cpp | 63 void SkDisplayMovie::dirty() { function in class:SkDisplayMovie
|
SkDisplayTypes.cpp | 17 void SkDisplayDepend::dirty() { function in class:SkDisplayDepend
|
SkDrawBitmap.cpp | 149 void SkImageBaseBitmap::dirty() { function in class:SkImageBaseBitmap
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
LayerTilerChromium.h | 99 bool dirty() const { return !m_dirtyLayerRect.isEmpty(); } function in class:WebCore::LayerTilerChromium::Tile 106 // Layer-space dirty rectangle that needs to be repainted.
|
/external/webkit/Tools/QueueStatusServer/model/ |
attachment.py | 40 def dirty(cls, attachment_id): member in class:Attachment
|
/frameworks/native/services/surfaceflinger/ |
DisplayDevice.h | 91 // Flip the front and back buffers if the back buffer is "dirty". Might 93 void flip(const Region& dirty) const;
|
/libcore/luni/src/main/java/libcore/io/ |
DiskLruCache.java | 96 private static final String DIRTY = "DIRTY"; 109 * DIRTY 335c4c6028171cfddfbaae1a9c313c52 112 * DIRTY 1ab96a171faeeee38496d8b330771a7a 124 * o DIRTY lines track that an entry is actively being created or updated. 125 * Every successful DIRTY action should be followed by a CLEAN or REMOVE 126 * action. DIRTY lines without a matching CLEAN or REMOVE indicate that 291 } else if (secondSpace == -1 && firstSpace == DIRTY.length() && line.startsWith(DIRTY)) { 302 * cache. Dirty entries are assumed to be inconsistent and will be deleted 485 File dirty = entry.getDirtyFile(i); local [all...] |
/external/v8/test/mjsunit/regress/ |
regress-94425.js | 45 // Do a GC to verify region dirty marks.
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
Tile.cpp | 41 // If the dirty portion of a tile exceeds this ratio, fully repaint. 140 // mark dirty regardless of which texture was taken - the back texture may 150 m_dirtyArea.setEmpty(); // empty dirty rect prevents fast blit path 189 // UpToDate: marking dirty means we need to repaint, but don't stop the 195 ALOGV("Warning: tried to mark tile %p at %d, %d islayertile %d as dirty, state %d", 198 // prefetch tiles can be marked dirty while in the process of painting, 303 bool dirty = m_dirty; local 310 if (!dirty || !texture) { 349 // The various checks to see if we are still dirty... 358 ALOGV("painted tile %p (%d, %d), texture %p, dirty=%d", this, x, y, texture, m_dirty) [all...] |
/frameworks/base/core/jni/ |
android_view_GLES20Canvas.cpp | 177 android::uirenderer::Rect dirty; local 178 return renderer->callDrawGLFunction(functor, dirty); 192 jobject clazz, OpenGLRenderer* renderer, jobject dirty) { 195 if (status != DrawGlInfo::kStatusDone && dirty != NULL) { 196 env->CallVoidMethod(dirty, gRectClassInfo.set, 733 jobject dirty, jint flags) { 736 if (status != DrawGlInfo::kStatusDone && dirty != NULL) { 737 env->CallVoidMethod(dirty, gRectClassInfo.set, [all...] |
/frameworks/base/libs/hwui/ |
DisplayList.h | 76 ReplayStateStruct(OpenGLRenderer& renderer, Rect& dirty, int replayFlags) 77 : mRenderer(renderer), mDirty(dirty), mReplayFlags(replayFlags),
|
DisplayListRenderer.h | 72 virtual status_t callDrawGLFunction(Functor *functor, Rect& dirty); 96 virtual status_t drawDisplayList(DisplayList* displayList, Rect& dirty, int32_t flags);
|
/external/qemu/distrib/sdl-1.2.15/src/video/dga/ |
SDL_dgavideo.c | 640 bucket->dirty = 0; 650 surfaces.dirty = 0; 672 ((vidmem_bucket *)surface->hwdata)->dirty = 1; 677 return ((vidmem_bucket *)surface->hwdata)->dirty; 687 /* Clear all surface dirty bits */ 689 bucket->dirty = 0; 762 bucket->dirty = 0;
|
/external/qemu/ |
vnc-android.c | 280 two 16-pixel blocks but we only mark the first as dirty 292 vnc_set_bit(s->dirty[y], (x + i) / 16); 373 memset(vs->guest.dirty, 0xFF, sizeof(vs->guest.dirty)); 383 memset(vs->server.dirty, 0xFF, sizeof(vs->guest.dirty)); 701 if (!vnc_get_bit(s->dirty[y + h], last_x)) 704 vnc_clear_bit(s->dirty[y + h], tmp_x); 732 * Walk through the guest dirty map. 734 * Update server dirty map [all...] |
vnc.c | 274 two 16-pixel blocks but we only mark the first as dirty 286 vnc_set_bit(s->dirty[y], (x + i) / 16); 367 memset(vs->guest.dirty, 0xFF, sizeof(vs->guest.dirty)); 377 memset(vs->server.dirty, 0xFF, sizeof(vs->guest.dirty)); 695 if (!vnc_get_bit(s->dirty[y + h], last_x)) 698 vnc_clear_bit(s->dirty[y + h], tmp_x); 726 * Walk through the guest dirty map. 728 * Update server dirty map [all...] |