HomeSort by relevance Sort by last modified time
    Searched refs:dirty (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /cts/tests/src/android/widget/cts/
MockLinearLayout.java 38 public ViewParent invalidateChildInParent(int[] location, Rect dirty) {
40 return super.invalidateChildInParent(location, dirty);
  /external/chromium/net/data/proxy_resolver_v8_unittest/
side_effects.js 3 // gCounter remains dirty.
  /external/dhcpcd/mk/
files.mk 1 # Quick and dirty files
scripts.mk 1 # Quick and dirty scripts
  /frameworks/base/core/java/android/view/
HardwareCanvas.java 43 * @param dirty The dirty rectangle to update, can be null.
45 abstract void onPreDraw(Rect dirty);
58 * @param dirty The dirty region to redraw in the next pass, matters only
64 abstract boolean drawDisplayList(DisplayList displayList, int width, int height, Rect dirty);
SurfaceHolder.java 205 * must be written. The only exception to this rule is when a dirty
206 * rectangle is specified, in which case, non-dirty pixels will be
228 * Just like {@link #lockCanvas()} but allows specification of a dirty rectangle.
231 * the dirty rectangle will be preserved by the next call to lockCanvas().
235 * @param dirty Area of the Surface that will be modified.
238 public Canvas lockCanvas(Rect dirty);
  /external/skia/src/animator/
SkPostParts.h 29 virtual void dirty();
SkPostParts.cpp 47 void SkData::dirty() { function in class:SkData
48 fParent->dirty();
SkDisplayMovie.h 33 virtual void dirty();
SkDisplayPost.h 40 virtual void dirty();
SkDrawColor.h 28 virtual void dirty();
SkDrawRectangle.h 30 virtual void dirty();
SkDrawPath.h 33 virtual void dirty();
  /frameworks/base/core/java/com/android/internal/view/
BaseSurfaceHolder.java 160 public Canvas lockCanvas(Rect dirty) {
161 return internalLockCanvas(dirty);
164 private final Canvas internalLockCanvas(Rect dirty) {
175 if (dirty == null) {
180 dirty = mTmpDirty;
184 c = mSurface.lockCanvas(dirty);
  /external/antlr/src/org/antlr/runtime/tree/
RewriteRuleElementStream.java 60 * can be reused in future subrules. So, reset must set a dirty bit.
61 * If dirty, then next() always returns a dup.
68 protected boolean dirty = false; field in class:RewriteRuleElementStream
104 * the dirty bit.
108 dirty = true;
134 * size==1. If we've already used the element, dup (dirty bit set).
138 if ( dirty || (cursor>=n && n==1) ) {
RewriteRuleSubtreeStream.java 70 if ( dirty || (cursor>=n && n==1) ) {
  /external/chromium/chrome/browser/
transport_security_persister.cc 53 bool dirty = false; local
54 if (!transport_security_state_->LoadEntries(state, &dirty)) {
58 if (dirty)
  /bionic/libc/netbsd/nameser/
ns_ttl.c 103 int ch, digits, dirty; local
108 dirty = 0;
133 dirty = 1;
136 if (dirty)
  /frameworks/base/libs/hwui/
LayerRenderer.cpp 49 Rect dirty(left, top, right, bottom);
50 if (dirty.isEmpty() || (dirty.left <= 0 && dirty.top <= 0 &&
51 dirty.right >= width && dirty.bottom >= height)) {
53 dirty.set(0.0f, 0.0f, width, height);
55 dirty.intersect(0.0f, 0.0f, width, height);
56 android::Rect r(dirty.left, dirty.top, dirty.right, dirty.bottom)
    [all...]
  /external/chromium/net/base/
transport_security_state.h 111 bool LoadEntries(const std::string& state, bool* dirty);
123 // our state is dirty.
131 bool* dirty,
  /system/core/libpixelflinger/
clear.cpp 42 c->state.clear.dirty = GGL_STENCIL_BUFFER_BIT |
118 if (c->state.clear.dirty & GGL_COLOR_BUFFER_BIT) {
119 c->state.clear.dirty &= ~GGL_COLOR_BUFFER_BIT;
134 if (c->state.clear.dirty & GGL_DEPTH_BUFFER_BIT) {
135 c->state.clear.dirty &= ~GGL_DEPTH_BUFFER_BIT;
154 c->state.clear.dirty |= GGL_COLOR_BUFFER_BIT;
161 c->state.clear.dirty |= GGL_DEPTH_BUFFER_BIT;
168 c->state.clear.dirty |= GGL_STENCIL_BUFFER_BIT;
picker.cpp 35 if (ggl_likely(!c->dirty))
42 if (c->dirty & GGL_CB_STATE) {
46 c->dirty |= GGL_PIXEL_PIPELINE_STATE;
49 if (c->dirty & GGL_PIXEL_PIPELINE_STATE) {
132 if (c->dirty & GGL_TMU_STATE) {
168 c->dirty = 0;
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp 300 m_transforms.dirty = true;
302 m_state.dirty = true;
370 if (!m_transforms.dirty)
373 m_transforms.dirty = false;
614 bool isDirty = m_state.dirty;
615 m_state.dirty = false;
624 m_state.maskLayer->m_state.dirty = false;
627 m_state.replicaLayer->m_state.dirty = false;
629 m_state.replicaLayer->m_state.maskLayer->m_state.dirty = false;
703 m_state.dirty = true
    [all...]
TextureMapperNode.h 159 bool dirty, localDirty, perspectiveDirty; member in struct:WebCore::TextureMapperNode::TransformData
161 TransformData() : dirty(true), localDirty(true), perspectiveDirty(true) { }
224 bool dirty; member in struct:WebCore::TextureMapperNode::State
240 , dirty(true)
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
SDL_fbvideo.h 46 int dirty; member in struct:vidmem_bucket
151 ((vidmem_bucket *)surface->hwdata)->dirty = 1;
156 return ((vidmem_bucket *)surface->hwdata)->dirty;
166 /* Clear all surface dirty bits */
168 bucket->dirty = 0;

Completed in 316 milliseconds

1 2 3 4 5 6 7