Searched refs:dirty (Results 1 - 25 of 169) sorted by relevance

1234567

/external/jmonkeyengine/engine/src/bullet-native/
H A DjmeMotionState.cpp43 dirty = true;
52 dirty = true;
57 dirty = true;
62 dirty = true;
67 dirty = true;
72 dirty = true;
76 if (dirty) {
81 dirty = false;
H A DjmeMotionState.h43 bool dirty; member in class:jmeMotionState
/external/dhcpcd/mk/
H A Dfiles.mk1 # Quick and dirty files
H A Dscripts.mk1 # Quick and dirty scripts
/external/skia/legacy/src/animator/
H A DSkPostParts.h21 virtual void dirty();
H A DSkPostParts.cpp39 void SkDataInput::dirty() { function in class:SkDataInput
40 fParent->dirty();
/external/skia/src/animator/
H A DSkPostParts.h21 virtual void dirty();
H A DSkPostParts.cpp39 void SkDataInput::dirty() { function in class:SkDataInput
40 fParent->dirty();
/external/bison/build-aux/
H A Dgit-version-gen193 # Test whether to append the "-dirty" suffix only if the version
197 # Don't declare a version "dirty" merely because a time stamp has changed.
200 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty=
201 case "$dirty" in
205 *-dirty) ;;
206 *) v="$v-dirty" ;;
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DPicturePileLayerContent.cpp41 PrerenderedInval* PicturePileLayerContent::prerenderForRect(const IntRect& dirty) argument
43 return m_picturePile.prerenderedInvalForArea(dirty);
H A DLayerContent.h50 virtual PrerenderedInval* prerenderForRect(const IntRect& dirty) { return 0; } argument
H A DPicturePileLayerContent.h47 virtual PrerenderedInval* prerenderForRect(const IntRect& dirty);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.as57 * can be reused in future subrules. So, reset must set a dirty bit.
58 * If dirty, then next() always returns a dup.
63 protected var dirty:Boolean = false;
90 * the dirty bit.
94 dirty = true;
120 * size==1. If we've already used the element, dup (dirty bit set).
125 if ( dirty || (cursor>=n && n==1) ) {
H A DRewriteRuleSubtreeStream.as52 if ( dirty || (cursor>=n && n==1) ) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DRewriteRuleElementStream.cs71 * 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)) {
H A DRewriteRuleSubtreeStream.cs72 if (dirty || (cursor >= n && n == 1)) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DRewriteRuleElementStream.cs73 * 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 ) )
H A DRewriteRuleSubtreeStream.cs78 if ( dirty || ( cursor >= n && n == 1 ) )
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.java60 * 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) ) {
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DRewriteRuleElementStream.js22 * can be reused in future subrules. So, reset must set a dirty bit.
23 * If dirty, then next() always returns a dup.
28 this.dirty = false;
46 * the dirty bit.
50 this.dirty = true;
75 * size==1. If we've already used the element, dup (dirty bit set).
80 if ( this.dirty || (this.cursor>=n && n==1) ) {
H A DRewriteRuleSubtreeStream.js24 if ( this.dirty || (this.cursor>=n && n===1) ) {
/external/chromium/chrome/browser/
H A Dtransport_security_persister.cc53 bool dirty = false; local
54 if (!transport_security_state_->LoadEntries(state, &dirty)) {
58 if (dirty)
/external/webkit/Source/WebKit/android/jni/
H A DPicturePile.h60 virtual void paintContents(GraphicsContext* gc, IntRect& dirty) = 0;
72 bool dirty; member in class:WebCore::PictureContainer
79 , dirty(true)
/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DPlatformGraphicsContext.cpp251 bool dirty = false; local
254 dirty = true;
256 return setFillShader(0) || dirty;
261 bool dirty = false; local
264 dirty = true;
271 dirty = true;
273 return dirty;
347 bool dirty = false; local
350 dirty = true;
352 return setStrokeShader(0) || dirty;
357 bool dirty = false; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.cpp300 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
[all...]

Completed in 605 milliseconds

1234567