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

1 2 3 4 5 6 7 8 9

  /external/jmonkeyengine/engine/src/bullet-native/
jmeMotionState.h 43 bool dirty; member in class:jmeMotionState
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.h 40 unsigned dirty; member in struct:i915_tracked_state
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRewriteRuleElementStream.h 33 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset variable
43 @property (assign) BOOL dirty; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRewriteRuleElementStream.h 38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset variable
47 @property (assign, getter=Getdirty, setter=Setdirty:) BOOL dirty; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRewriteRuleElementStream.h 38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset variable
47 @property (assign, getter=Getdirty, setter=Setdirty:) BOOL dirty; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRewriteRuleElementStream.h 38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset variable
47 @property (assign, getter=Getdirty, setter=Setdirty:) BOOL dirty; variable
  /external/mesa3d/src/gallium/drivers/svga/
svga_state.h 42 unsigned dirty; member in struct:svga_tracked_state
43 enum pipe_error (*update)( struct svga_context *svga, unsigned dirty );
svga_surface.h 54 boolean dirty; member in struct:svga_surface
  /external/skia/src/animator/
SkPostParts.cpp 39 void SkDataInput::dirty() { function in class:SkDataInput
40 fParent->dirty();
SkDrawRectangle.cpp 43 void SkDrawRect::dirty() { function in class:SkDrawRect
45 fParent->dirty();
SkDisplayMovie.cpp 63 void SkDisplayMovie::dirty() { function in class:SkDisplayMovie
SkPathParts.cpp 19 void SkPathPart::dirty() { function in class:SkPathPart
20 fPath->dirty();
SkAnimateBase.cpp 69 void SkAnimateBase::dirty() { function in class:SkAnimateBase
SkDisplayTypes.cpp 17 void SkDisplayDepend::dirty() { function in class:SkDisplayDepend
SkDrawBitmap.cpp 148 void SkImageBaseBitmap::dirty() { function in class:SkImageBaseBitmap
SkDrawMatrix.cpp 86 void SkDrawMatrix::dirty() { function in class:SkDrawMatrix
  /external/mesa3d/src/gallium/drivers/nv30/
nv40_verttex.c 33 unsigned dirty = nv30->vertprog.dirty_samplers; local
35 while (dirty) {
36 unsigned unit = ffs(dirty) - 1;
68 nv30->dirty |= NV30_NEW_VERTTEX;
92 nv30->dirty |= NV30_NEW_VERTTEX;
nv30_fragtex.c 39 unsigned dirty = nv30->fragprog.dirty_samplers; local
41 while (dirty) {
42 unsigned unit = ffs(dirty) - 1;
146 dirty &= ~(1 << unit);
170 nv30->dirty |= NV30_NEW_FRAGTEX;
194 nv30->dirty |= NV30_NEW_FRAGTEX;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_read.c 84 GLuint dirty; local
135 dirty = intel->front_buffer_dirty;
137 intel->front_buffer_dirty = dirty;
175 bool dirty; local
185 /* glReadPixels() wont dirty the front buffer, so reset the dirty
187 dirty = intel->front_buffer_dirty;
189 intel->front_buffer_dirty = dirty;
204 intel->front_buffer_dirty = dirty;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_texture.h 45 GLboolean dirty; member in struct:nouveau_texture
50 to_nouveau_texture(t)->dirty = GL_TRUE
  /bionic/libc/dns/nameser/
ns_ttl.c 99 int ch, digits, dirty; local
104 dirty = 0;
129 dirty = 1;
132 if (dirty)
136 } else if (!dirty)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteRuleElementStream.cs 71 * can be reused in future subrules. So, reset must set a dirty bit.
72 * If dirty, then next() always returns a dup.
77 protected bool dirty = false; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
108 * the dirty bit.
113 dirty = true;
140 * size==1. If we've already used the element, dup (dirty bit set).
145 if (dirty || (cursor >= n && n == 1)) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleElementStream.cs 73 * can be reused in future subrules. So, reset must set a dirty bit.
74 * If dirty, then next() always returns a dup.
79 protected bool dirty = false; field in class:Antlr.Runtime.Tree.RewriteRuleElementStream
113 * the dirty bit.
119 dirty = true;
150 * size==1. If we've already used the element, dup (dirty bit set).
156 if ( dirty || ( cursor >= n && n == 1 ) )
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3rewritestreams.h 94 /// can be reused in future sub rules. So, reset must set a dirty bit.
95 /// If dirty, then next() always returns a dup.
97 ANTLR3_BOOLEAN dirty; member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/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) ) {

Completed in 982 milliseconds

1 2 3 4 5 6 7 8 9