/external/webkit/Source/WebCore/platform/graphics/texmap/ |
D | TextureMapperNode.cpp | 143 if (m_state.hasSurfaceDescendants) { in setNeedsDisplayInRect() 166 if (m_state.drawsContent || m_currentContent.contentType != HTMLContentType) in setNeedsDisplay() 190 if (m_layerType == ClipLayer || m_layerType == TransparencyLayer || m_state.replicaLayer) in hasSurfaceDescendants() 205 if (!m_state.visible || m_state.opacity < 0.001) in countDescendantsWithContent() 208 …int descendantsWithContent = (m_state.drawsContent || m_currentContent.contentType != HTMLContentT… in countDescendantsWithContent() 226 …const bool selfHasContent = m_state.drawsContent || (m_currentContent.contentType != HTMLContentTy… in computeLayerType() 227 … const bool hasDescendantsWithContent = m_state.descendantsWithContent - (selfHasContent ? 1 : 0); in computeLayerType() 228 const bool hasTransparency = m_state.opacity < 0.99 || m_state.maskLayer; in computeLayerType() 229 const bool hasReplica = m_state.replicaLayer; in computeLayerType() 243 if (!m_state.descendantsWithContent) in computeLayerType() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/android/context/ |
D | PlatformGraphicsContext.cpp | 202 m_state = &m_stateStack.last(); in PlatformGraphicsContext() 215 m_stateStack.append(m_state->cloneInheritedProperties()); in save() 216 m_state = &m_stateStack.last(); in save() 222 m_state = &m_stateStack.last(); in restore() 231 m_state->alpha = alpha; in setAlpha() 236 int alpha = roundf(m_state->alpha * 256); in getNormalizedAlpha() 246 m_state->mode = WebCoreCompositeToSkiaComposite(op); in setCompositeOperation() 252 if (m_state->fillColor != c.rgb()) { in setFillColor() 253 m_state->fillColor = c.rgb(); in setFillColor() 262 if (fillShader && m_state->fillColor != Color::black) { in setFillShader() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/openvg/ |
D | PainterOpenVG.cpp | 400 : m_state(0) in PainterOpenVG() 406 : m_state(0) in PainterOpenVG() 424 ASSERT(!m_state); in begin() 429 m_state = m_stateStack.last(); in begin() 454 m_state = 0; in destroyPainterStates() 460 ASSERT(m_state); in applyState() 461 m_state->applyState(this); in applyState() 472 ASSERT(m_state); // implies m_surface in blitToSurface() 478 ASSERT(m_state); in transformation() 479 return m_state->surfaceTransformation; in transformation() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
D | PlatformContextSkia.cpp | 227 m_state = &m_stateStack.last(); in PlatformContextSkia() 266 m_stateStack.append(m_state->cloneInheritedProperties()); in save() 267 m_state = &m_stateStack.last(); in save() 271 m_state->m_imageBufferClip.reset(); in save() 283 m_state->m_clip = rect; in beginLayerClippedToImage() 299 bitmap->copyTo(&m_state->m_imageBufferClip, SkBitmap::kARGB_8888_Config); in beginLayerClippedToImage() 302 m_state->m_imageBufferClip = *bitmap; in beginLayerClippedToImage() 310 bool haveLayerOutstanding = m_state->m_antiAliasClipPaths.size(); in clipPathAntiAliased() 313 m_state->m_antiAliasClipPaths.append(clipPath); in clipPathAntiAliased() 326 if (!m_state->m_imageBufferClip.empty()) { in restore() [all …]
|
/external/stlport/test/unit/ |
D | stack_allocator.h | 69 : m_state(beg, end) {} in StackAllocator() 71 const State& getState() const { return m_state; } in getState() 75 : m_state(other.getState()) {} in StackAllocator() 78 : m_state(state) {} in StackAllocator() 92 ++(*m_state.m_sharedNbAlloc); 94 if (*m_state.m_sharedCur + (n * sizeof(_Tp)) < m_state.m_end) { 95 char *ret = *m_state.m_sharedCur; 96 *m_state.m_sharedCur += n * sizeof(_Tp); 123 --(*m_state.m_sharedNbAlloc); in deallocate() 125 if ((char*)p == (*m_state.m_sharedCur - n * sizeof(_Tp))) { in deallocate() [all …]
|
/external/webkit/Source/WebCore/html/parser/ |
D | CSSPreloadScanner.cpp | 40 : m_state(Initial) in CSSPreloadScanner() 47 m_state = Initial; in reset() 57 …r::const_iterator iter = characters.begin(); iter != characters.end() && m_state != DoneParsingImp… in scan() 65 switch (m_state) { in tokenize() 70 m_state = RuleStart; in tokenize() 72 m_state = MaybeComment; in tokenize() 74 m_state = DoneParsingImportRules; in tokenize() 78 m_state = Comment; in tokenize() 80 m_state = Initial; in tokenize() 84 m_state = MaybeCommentEnd; in tokenize() [all …]
|
D | XSSFilter.cpp | 132 , m_state(Uninitialized) in XSSFilter() 148 ASSERT(m_state == Uninitialized); in init() 149 m_state = Initial; in init() 194 if (m_state == Uninitialized) { in filterToken() 196 ASSERT(m_state == Initial); in filterToken() 204 switch (m_state) { in filterToken() 213 ASSERT(m_state == Initial); in filterToken() 233 ASSERT(m_state == Initial); in filterTokenInitial() 264 ASSERT(m_state == AfterScriptStartTag); in filterTokenAfterScriptStartTag() 265 m_state = Initial; in filterTokenAfterScriptStartTag() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
D | Tile.cpp | 62 , m_state(Unpainted) in Tile() 110 m_state = Unpainted; in reserveTexture() 114 if (m_state == UpToDate) { in reserveTexture() 117 m_state = Unpainted; in reserveTexture() 128 if (m_state == UpToDate) { in removeTexture() 130 m_state = Unpainted; in removeTexture() 136 m_state = Unpainted; in removeTexture() 187 if (m_state == UpToDate) { in markAsDirtyInternal() 191 m_state = Unpainted; in markAsDirtyInternal() 192 } else if (m_state != Unpainted) { in markAsDirtyInternal() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | GraphicsContext.cpp | 95 m_stack.append(m_state); in save() 109 m_state = m_stack.last(); in restore() 117 m_state.strokeThickness = thickness; in setStrokeThickness() 123 m_state.strokeStyle = style; in setStrokeStyle() 129 m_state.strokeColor = color; in setStrokeColor() 130 m_state.strokeColorSpace = colorSpace; in setStrokeColor() 131 m_state.strokeGradient.clear(); in setStrokeColor() 132 m_state.strokePattern.clear(); in setStrokeColor() 138 m_state.shadowOffset = offset; in setShadow() 139 m_state.shadowBlur = blur; in setShadow() [all …]
|
/external/webkit/Source/WebCore/storage/ |
D | IDBTransactionBackendImpl.cpp | 46 , m_state(Unused) in IDBTransactionBackendImpl() 60 ASSERT(m_state == Finished); in ~IDBTransactionBackendImpl() 65 if (m_state == Finished) { in objectStore() 90 if (m_state == Finished) in scheduleTask() 97 if (m_state == Unused) in scheduleTask() 105 if (m_state == Finished) in abort() 113 m_state = Finished; in abort() 133 if (m_state == Finished) in didCompleteTaskEvents() 136 ASSERT(m_state == Running); in didCompleteTaskEvents() 146 ASSERT(m_state == StartPending || m_state == Running); in run() [all …]
|
/external/webkit/Source/WebCore/platform/mac/ |
D | PurgeableBufferMac.cpp | 46 , m_state(NonVolatile) in PurgeableBuffer() 81 if (m_state != NonVolatile) in makePurgeable() 98 m_state = Purged; in makePurgeable() 102 m_state = Volatile; in makePurgeable() 106 if (m_state == NonVolatile) in makePurgeable() 108 if (m_state == Purged) in makePurgeable() 116 m_state = Purged; in makePurgeable() 120 m_state = state & VM_PURGABLE_EMPTY ? Purged : NonVolatile; in makePurgeable() 121 return m_state == NonVolatile; in makePurgeable() 126 if (m_state == NonVolatile) in wasPurged() [all …]
|
/external/webkit/Source/WebCore/loader/ |
D | FrameLoaderStateMachine.cpp | 38 : m_state(Uninitialized) in FrameLoaderStateMachine() 44 return m_state == DisplayingInitialEmptyDocument; in committingFirstRealLoad() 49 return m_state >= DisplayingInitialEmptyDocumentPostCommit; in committedFirstRealDocumentLoad() 54 return m_state == CreatingInitialEmptyDocument; in creatingInitialEmptyDocument() 59 …return m_state == DisplayingInitialEmptyDocument || m_state == DisplayingInitialEmptyDocumentPostC… in isDisplayingInitialEmptyDocument() 64 return m_state == FirstLayoutDone; in firstLayoutDone() 69 ASSERT(State(m_state + 1) == state || (firstLayoutDone() && state == CommittedFirstRealLoad)); in advanceTo() 70 m_state = state; in advanceTo()
|
/external/webkit/Source/WebCore/websockets/ |
D | WebSocket.cpp | 97 , m_state(CONNECTING) in WebSocket() 121 m_state = CLOSED; in connect() 128 m_state = CLOSED; in connect() 134 m_state = CLOSED; in connect() 140 m_state = CLOSED; in connect() 146 m_state = CLOSED; in connect() 159 if (m_state == CONNECTING) { in send() 164 if (m_state == CLOSED) { in send() 176 if (m_state == CLOSED) in close() 178 m_state = CLOSED; in close() [all …]
|
/external/webkit/Source/WebCore/fileapi/ |
D | FileReader.cpp | 52 , m_state(None) in FileReader() 65 return (m_state != None && m_state != Completed) || ActiveDOMObject::hasPendingActivity(); in hasPendingActivity() 128 if (m_state != None && m_state != Starting) in readInternal() 131 if (m_state == None) in readInternal() 136 m_state = Starting; in readInternal() 148 if (m_state == Aborting) in abort() 150 m_state = Aborting; in abort() 173 m_state = Completed; in terminate() 178 m_state = Opening; in start() 188 m_state = Reading; in didStartLoading() [all …]
|
/external/webkit/Source/WebKit/chromium/src/ |
D | ResourceHandle.cpp | 61 , m_state(ConnectionStateNew) in ResourceHandleInternal() 98 ConnectionState m_state; member in WebCore::ResourceHandleInternal 103 if (m_state != ConnectionStateNew) in start() 105 m_state = ConnectionStateStarted; in start() 117 m_state = ConnectionStateCanceled; in cancel() 155 …bool isValidStateTransition = (m_state == ConnectionStateStarted || m_state == ConnectionStateRece… in didReceiveResponse() 159 m_state = ConnectionStateReceivedResponse; in didReceiveResponse() 166 if (m_state != ConnectionStateReceivedResponse && m_state != ConnectionStateReceivingData) in didReceiveData() 168 m_state = ConnectionStateReceivingData; in didReceiveData() 176 if (m_state != ConnectionStateReceivedResponse && m_state != ConnectionStateReceivingData) in didReceiveCachedMetadata() [all …]
|
/external/webkit/Source/WebCore/notifications/ |
D | Notification.cpp | 52 , m_state(Idle) in Notification() 73 , m_state(Idle) in Notification() 90 if (m_state == Loading) { in ~Notification() 112 if (m_state == Idle) { in show() 113 m_state = Showing; in show() 121 …if (m_state == Idle && m_notificationCenter->presenter() && m_notificationCenter->presenter()->sho… in show() 122 m_state = Showing; in show() 128 switch (m_state) { in cancel() 132 m_state = Cancelled; in cancel() 163 if (m_state != Idle) in startLoading() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | GraphicsContextCG.cpp | 458 …RetainPtr<CGPatternRef> platformPattern(AdoptCF, m_state.strokePattern->createPlatformPattern(getC… in applyStrokePattern() 473 …RetainPtr<CGPatternRef> platformPattern(AdoptCF, m_state.fillPattern->createPlatformPattern(getCTM… in applyFillPattern() 517 const GraphicsContextState& state = m_state; in drawPath() 555 if (m_state.fillGradient) { in fillPath() 564 CGContextConcatCTM(layerContext, m_state.fillGradient->gradientSpaceTransform()); in fillPath() 571 m_state.fillGradient->paint(layerContext); in fillPath() 578 CGContextConcatCTM(context, m_state.fillGradient->gradientSpaceTransform()); in fillPath() 585 m_state.fillGradient->paint(this); in fillPath() 595 if (m_state.fillPattern) in fillPath() 610 if (m_state.strokeGradient) { in strokePath() [all …]
|
/external/webkit/Source/JavaScriptCore/qt/api/ |
D | qscriptvalue_p.h | 170 } m_state; variable 218 : m_state(Invalid) in QScriptValuePrivate() 223 : m_state(CString) in QScriptValuePrivate() 229 : m_state(CBool) in QScriptValuePrivate() 235 : m_state(CNumber) in QScriptValuePrivate() 241 : m_state(CNumber) in QScriptValuePrivate() 247 : m_state(CNumber) in QScriptValuePrivate() 253 : m_state(value == QScriptValue::NullValue ? CNull : CUndefined) in QScriptValuePrivate() 258 : m_state(JSPrimitive) in QScriptValuePrivate() 267 : m_state(JSPrimitive) in QScriptValuePrivate() [all …]
|
/external/webkit/Source/WebCore/dom/ |
D | DocumentParser.cpp | 34 : m_state(ParsingState) in DocumentParser() 51 m_state = ParsingState; in startParsing() 56 ASSERT(m_state == ParsingState); in prepareToStopParsing() 57 m_state = StoppingState; in prepareToStopParsing() 62 m_state = StoppedState; in stopParsing() 67 m_state = DetachedState; in detach()
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | GLES2Canvas.cpp | 201 , m_state(0) in GLES2Canvas() 209 m_state = &m_stateStack.last(); in GLES2Canvas() 228 if (m_state->m_ctm.isIdentity() && !m_state->clippingEnabled()) { in clearRect() 241 m_context->applyCompositeOperator(m_state->m_compositeOp); in applyState() 242 applyClipping(m_state->clippingEnabled()); in applyState() 260 if (m_state->shadowActive()) { in fillPath() 262 fillPathInternal(path, m_state->m_shadowColor); in fillPath() 267 fillPathInternal(path, m_state->applyAlpha(m_state->m_fillColor)); in fillPath() 272 if (m_state->shadowActive()) { in fillRect() 274 fillRectInternal(rect, m_state->m_shadowColor); in fillRect() [all …]
|
/external/webkit/Source/WebCore/platform/network/ |
D | SocketStreamHandleBase.cpp | 44 , m_state(Connecting) in SocketStreamHandleBase() 50 return m_state; in state() 55 if (m_state == Connecting) in send() 66 if (m_state == Open) in send() 84 m_state = Closed; in close() 89 ASSERT(!client || (!m_client && m_state == Connecting)); in setClient() 95 if (m_state != Open) in sendPendingData()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | ToSAXHandler.java | 86 protected TransformStateSetter m_state = null; field in ToSAXHandler 199 if (m_state != null) { in startElement() 200 m_state.resetState(getTransformer()); in startElement() 300 this.m_state = ts; in setTransformState() 316 if (m_state != null) { in startElement() 317 m_state.resetState(getTransformer()); in startElement() 333 if (m_state != null) { in startElement() 334 m_state.resetState(getTransformer()); in startElement() 351 if (m_state != null) in characters() 353 m_state.setCurrentNode(node); in characters() [all …]
|
/external/webkit/Source/WebCore/page/ |
D | EventSource.cpp | 62 , m_state(CONNECTING) in EventSource() 133 if (m_state != CLOSED) in endRequest() 141 m_state = CONNECTING; in scheduleReconnect() 157 return m_state; in readyState() 162 if (m_state == CLOSED) in close() 170 m_state = CLOSED; in close() 211 m_state = OPEN; in didReceiveResponse() 215 m_state = CLOSED; in didReceiveResponse() 232 m_state = CONNECTING; in didFinishLoading() 239 if (((m_state == CONNECTING) && !canceled) || ((m_state == OPEN) && canceled)) in didFail() [all …]
|
/external/quake/quake/src/QW/client/ |
D | menu.c | 26 …elp, m_quit, m_serialconfig, m_modemconfig, m_lanconfig, m_gameoptions, m_search, m_slist} m_state; variable 251 if (m_state != m_main) in M_ToggleMenu_f() 257 m_state = m_none; in M_ToggleMenu_f() 286 m_state = m_main; in M_Menu_Main_f() 313 m_state = m_none; in M_Main_Key() 372 m_state = m_options; in M_Menu_Options_f() 581 m_state = m_none; in M_Options_Key() 674 m_state = m_keys; in M_Menu_Keys_f() 841 m_state = m_video; in M_Menu_Video_f() 867 m_state = m_help; in M_Menu_Help_f() [all …]
|
/external/webkit/Source/WebCore/xml/ |
D | XMLHttpRequest.cpp | 177 , m_state(UNSENT) in XMLHttpRequest() 223 return m_state; in readyState() 242 if (m_state != DONE) in responseXML() 281 if (m_state != DONE) in responseArrayBuffer() 297 if (m_state != OPENED || m_loader) { in setResponseType() 344 if (m_state != newState) { in changeState() 345 m_state = newState; in changeState() 357 if (m_async || (m_state <= OPENED || m_state == DONE)) in callReadyStateChangeListener() 358 …XMLHttpRequestProgressEvent::create(eventNames().readystatechangeEvent), m_state == DONE ? FlushPr… in callReadyStateChangeListener() 362 if (m_state == DONE && !m_error) { in callReadyStateChangeListener() [all …]
|