/external/chromium_org/third_party/WebKit/Source/core/xml/parser/ |
D | XMLParserInput.h | 41 : m_source(source) in XMLParserInput() 46 if (m_source.isEmpty()) in XMLParserInput() 52 if (m_source.is8Bit()) { in XMLParserInput() 54 m_data = reinterpret_cast<const char*>(m_source.characters8()); in XMLParserInput() 55 m_size = m_source.length() * sizeof(LChar); in XMLParserInput() 58 m_data = reinterpret_cast<const char*>(m_source.characters16()); in XMLParserInput() 59 m_size = m_source.length() * sizeof(UChar); in XMLParserInput() 68 String m_source;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | BitmapImage.cpp | 113 … destroyMetadataAndNotify(m_source.clearCacheExceptFrame(destroyAll ? kNotFound : m_currentFrame)); in destroyDecodedData() 144 m_frames[index].m_frame = m_source.createFrameAtIndex(index); in cacheFrame() 148 m_frames[index].m_orientation = m_source.orientationAtIndex(index); in cacheFrame() 150 m_frames[index].m_isComplete = m_source.frameIsCompleteAtIndex(index); in cacheFrame() 152 m_frames[index].m_duration = m_source.frameDurationAtIndex(index); in cacheFrame() 153 m_frames[index].m_hasAlpha = m_source.frameHasAlphaAtIndex(index); in cacheFrame() 154 m_frames[index].m_frameBytes = m_source.frameBytesAtIndex(index); in cacheFrame() 156 const IntSize frameSize(index ? m_source.frameSizeAtIndex(index) : m_size); in cacheFrame() 173 m_size = m_source.size(); in updateSize() 174 m_sizeRespectingOrientation = m_source.size(RespectImageOrientation); in updateSize() [all …]
|
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/ |
D | WebKitSourceBuffer.cpp | 53 , m_source(source) in WebKitSourceBuffer() 57 ASSERT(m_source); in WebKitSourceBuffer() 97 m_source->openIfInEndedState(); in setTimestampOffset() 133 m_source->openIfInEndedState(); in append() 146 if (isRemoved() || !m_source->isOpen()) { in abort() 161 m_source.clear(); in removedFromMediaSource() 166 return !m_source; in isRemoved()
|
D | SourceBuffer.cpp | 66 , m_source(source) in SourceBuffer() 81 ASSERT(m_source); in SourceBuffer() 126 m_source->openIfInEndedState(); in setTimestampOffset() 256 if (isRemoved() || !m_source->isOpen()) { in abort() 279 …if (start < 0 || (m_source && (std::isnan(m_source->duration()) || start > m_source->duration())) … in remove() 297 m_source->openIfInEndedState(); in remove() 362 m_source = 0; in removedFromMediaSource() 368 return m_source; in hasPendingActivity() 404 return !m_source; in isRemoved() 433 m_source->openIfInEndedState(); in appendBufferInternal() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
D | MessageEvent.cpp | 57 , m_source(isValidSource(initializer.source.get()) ? initializer.source : 0) in MessageEvent() 61 ASSERT(isValidSource(m_source.get())); in MessageEvent() 69 , m_source(source) in MessageEvent() 73 ASSERT(isValidSource(m_source.get())); in MessageEvent() 82 , m_source(source) in MessageEvent() 88 ASSERT(isValidSource(m_source.get())); in MessageEvent() 97 , m_source(source) in MessageEvent() 103 ASSERT(isValidSource(m_source.get())); in MessageEvent() 156 m_source = source; in initMessageEvent() 171 m_source = source; in initMessageEvent()
|
D | MessageEvent.h | 88 EventTarget* source() const { return m_source.get(); } in source() 89 EventTarget* source(bool& isNull) const { isNull = !m_source; return m_source.get(); } in source() 134 RefPtr<EventTarget> m_source; variable
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | ScriptSourceCode.h | 48 : m_source(source) in m_source() function 60 : m_source(cs->script()) in ScriptSourceCode() 66 bool isEmpty() const { return m_source.isEmpty(); } in isEmpty() 68 const String& source() const { return m_source; } in source() 83 String m_source;
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
D | MediaStreamAudioDestinationNode.cpp | 52 …m_source = MediaStreamSource::create("WebAudio-" + createCanonicalUUIDString(), MediaStreamSource:… in MediaStreamAudioDestinationNode() 54 audioSources.append(m_source); in MediaStreamAudioDestinationNode() 59 m_source->setAudioFormat(numberOfChannels, context->sampleRate()); in MediaStreamAudioDestinationNode() 66 return m_source.get(); in mediaStreamSource() 77 m_source->consumeAudio(m_mixBus.get(), numberOfFrames); in process()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGPathParser.cpp | 52 if (!m_source->parseMoveToSegment(targetPoint)) in parseMoveToSegment() 71 if (!m_source->parseLineToSegment(targetPoint)) in parseLineToSegment() 88 if (!m_source->parseLineToHorizontalSegment(toX)) in parseLineToHorizontalSegment() 105 if (!m_source->parseLineToVerticalSegment(toY)) in parseLineToVerticalSegment() 124 if (!m_source->parseCurveToCubicSegment(point1, point2, targetPoint)) in parseCurveToCubicSegment() 146 if (!m_source->parseCurveToCubicSmoothSegment(point2, targetPoint)) in parseCurveToCubicSmoothSegment() 177 if (!m_source->parseCurveToQuadraticSegment(point1, targetPoint)) in parseCurveToQuadraticSegment() 206 if (!m_source->parseCurveToQuadraticSmoothSegment(targetPoint)) in parseCurveToQuadraticSmoothSegment() 245 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint)) in parseArcToSegment() 286 ASSERT(m_source); in parsePathDataFromSource() [all …]
|
D | SVGPathParser.h | 43 void setCurrentSource(SVGPathSource* source) { m_source = source; } in setCurrentSource() 59 SVGPathSource* m_source; variable
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
D | TextResourceDecoder.cpp | 116 , m_source(DefaultEncoding) in TextResourceDecoder() 148 m_source = source; in setEncoding() 238 if (m_source != DefaultEncoding && m_source != EncodingFromParentFrame) { in checkForCSSCharset() 278 if (m_source != DefaultEncoding && m_source != EncodingFromParentFrame) { in checkForXMLCharset() 329 …if (m_source == UserChosenEncoding || m_source == EncodingFromHTTPHeader || m_source == AutoDetect… in checkForMetaCharset() 360 && (m_source == DefaultEncoding || (m_source == EncodingFromParentFrame && m_hintEncoding)); in shouldAutoDetect()
|
D | TextResourceDecoder.h | 57 return m_source == AutoDetectedEncoding in encodingWasDetectedHeuristically() 58 || m_source == EncodingFromContentSniffing; in encodingWasDetectedHeuristically() 89 EncodingSource m_source; variable
|
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/ |
D | ChromiumDataObjectItem.cpp | 89 : m_source(InternalSource) in ChromiumDataObjectItem() 97 : m_source(PasteboardSource) in ChromiumDataObjectItem() 117 if (m_source == InternalSource) { in getAsFile() 127 ASSERT(m_source == PasteboardSource); in getAsFile() 154 if (m_source == InternalSource) in internalGetAsString() 157 ASSERT(m_source == PasteboardSource); in internalGetAsString()
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | WebGLShader.h | 42 const String& source() const { return m_source; } in source() 44 void setSource(const String& source) { m_source = source; } in setSource() 54 String m_source; variable
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | InjectedStyleSheet.h | 40 : m_source(source) in InjectedStyleSheet() 46 const String& source() const { return m_source; } in source() 51 String m_source;
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBCursor.cpp | 81 , m_source(source) in IDBCursor() 90 …ASSERT(m_source->type() == IDBAny::IDBObjectStoreType || m_source->type() == IDBAny::IDBIndexType); in IDBCursor() 350 return idbAnyToScriptValue(&requestState, m_source); in source() 371 if (m_source->type() == IDBAny::IDBObjectStoreType) in effectiveObjectStore() 372 return m_source->idbObjectStore(); in effectiveObjectStore() 373 RefPtr<IDBIndex> index = m_source->idbIndex(); in effectiveObjectStore() 379 if (m_source->type() == IDBAny::IDBObjectStoreType) in isDeleted() 380 return m_source->idbObjectStore()->isDeleted(); in isDeleted() 381 return m_source->idbIndex()->isDeleted(); in isDeleted()
|
D | IDBRequest.cpp | 61 , m_source(source) in IDBRequest() 101 return idbAnyToScriptValue(&requestState, m_source); in source() 245 … cursor = IDBCursor::create(backend, m_cursorDirection, this, m_source.get(), m_transaction.get()); in onSuccess() 248 …cursor = IDBCursorWithValue::create(backend, m_cursorDirection, this, m_source.get(), m_transactio… in onSuccess() 304 ASSERT(keyPath == effectiveObjectStore(m_source)->metadata().keyPath); in onSuccess()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | ConsoleMessage.cpp | 49 : m_source(source) in ConsoleMessage() 64 : m_source(source) in ConsoleMessage() 79 : m_source(source) in ConsoleMessage() 100 : m_source(source) in ConsoleMessage() 192 .setSource(messageSourceValue(m_source)) in addToFrontend() 202 if (m_source == NetworkMessageSource && !m_requestId.isEmpty()) in addToFrontend() 265 return msg->m_source == m_source in isEqual()
|
D | ConsoleMessage.h | 65 MessageSource source() const { return m_source; } in source() 76 MessageSource m_source; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
D | SincResampler.cpp | 81 , m_source(0) in SincResampler() 152 : m_source(source) in BufferSourceProvider() 160 ASSERT(m_source && bus); in provideInput() 161 if (!m_source || !bus) in provideInput() 168 memcpy(buffer, m_source, sizeof(float) * framesToCopy); in provideInput() 175 m_source += framesToCopy; in provideInput() 179 const float* m_source; member in WebCore::__anon791ca5a10111::BufferSourceProvider
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
D | BidiContext.h | 48 BidiEmbeddingSource source() const { return static_cast<BidiEmbeddingSource>(m_source); } in source() 62 , m_source(source) in BidiContext() 73 unsigned m_source : 1; // BidiEmbeddingSource variable
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | TransformSourceLibxslt.cpp | 35 : m_source(source) in TransformSource() 41 xmlFreeDoc(m_source); in ~TransformSource()
|
D | TransformSource.h | 37 xmlDocPtr platformSource() const { return m_source; } in platformSource() 40 xmlDocPtr m_source;
|
D | AddConsoleMessageTask.h | 47 : m_source(source) in AddConsoleMessageTask() 52 MessageSource m_source; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/mediastream/ |
D | MediaStreamComponent.h | 64 MediaStreamSource* source() const { return m_source.get(); } in source() 109 RefPtr<MediaStreamSource> m_source; variable
|