Searched refs:m_source (Results 1 - 25 of 58) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/platform/mediastream/
H A DMediaStreamTrackPrivate.cpp59 : m_source(nullptr)
73 if (m_source)
74 m_source->removeObserver(this);
79 if (m_source)
80 m_source->removeObserver(this);
82 m_source = source;
84 if (!m_source)
87 setMuted(m_source->muted());
88 setReadyState(m_source->readyState());
89 if (m_source)
[all...]
H A DMediaStreamTrackPrivate.h75 MediaStreamSource* source() const { return m_source.get(); }
107 RefPtr<MediaStreamSource> m_source; member in class:WebCore::MediaStreamTrackPrivate
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGJumpReplacement.cpp40 dataLogF("Firing jump replacement watchpoint from %p, to %p.\n", m_source.dataLocation(), m_destination.dataLocation());
41 MacroAssembler::replaceWithJump(m_source, m_destination);
H A DDFGJumpReplacement.h38 : m_source(source)
46 CodeLocationLabel m_source; member in class:JSC::DFG::JumpReplacement
H A DDFGIntegerCheckCombiningPhase.cpp67 result.m_source = edge.sanitized();
76 result.m_source = edge.sanitized();
85 return m_kind + m_source.hash() + PtrHash<Node*>::hash(m_key);
91 && m_source == other.m_source
108 out.print(m_source, ", ", m_key, ")");
112 Edge m_source; member in struct:JSC::DFG::__anon2570::RangeKey
241 data.m_key.m_source, range.m_minBound);
246 data.m_key.m_source, range.m_maxBound);
255 if (!data.m_key.m_source) {
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DTransformSourceLibxslt.cpp36 : m_source(source)
42 xmlFreeDoc((xmlDocPtr)m_source);
H A DTransformSource.h40 PlatformTransformSource platformSource() const { return m_source; }
43 PlatformTransformSource m_source; member in class:WebCore::TransformSource
H A DMessageEvent.cpp55 , m_source(isValidSource(initializer.source.get()) ? initializer.source : 0)
66 , m_source(source)
69 ASSERT(isValidSource(m_source.get()));
78 , m_source(source)
81 ASSERT(isValidSource(m_source.get()));
123 m_source = source;
138 m_source = source;
/macosx-10.10/WTF-7600.1.24/wtf/gobject/
H A DGMainLoopSource.cpp70 if (!m_source)
74 m_source.swap(source);
85 m_source = nullptr;
97 m_source = adoptGRef(g_idle_source_new());
98 g_source_set_name(m_source.get(), name);
100 g_source_set_priority(m_source.get(), priority);
101 g_source_set_callback(m_source.get(), sourceFunction, this, nullptr);
102 g_source_attach(m_source.get(), context);
130 m_source = adoptGRef(g_socket_create_source(socket, condition, m_cancellable.get()));
131 g_source_set_name(m_source
[all...]
/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DWebGLShader.h42 const String& getSource() const { return m_source; }
44 void setSource(const String& source) { m_source = source; }
57 String m_source; member in class:WebCore::WebGLShader
H A DWebGLShader.cpp45 , m_source("")
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DMediaStreamAudioDestinationNode.cpp51 m_source = MediaStreamAudioSource::create();
53 audioSources.append(m_source);
56 m_source->setAudioFormat(numberOfChannels, context->sampleRate());
63 return m_source.get();
74 m_source->consumeAudio(m_mixBus.get(), numberOfFrames);
H A DMediaStreamAudioDestinationNode.h64 RefPtr<MediaStreamAudioSource> m_source; member in class:WebCore::MediaStreamAudioDestinationNode
/macosx-10.10/WebCore-7600.1.25/page/
H A DUserScript.h46 : m_source(source)
55 const String& source() const { return m_source; }
63 String m_source; member in class:WebCore::UserScript
H A DUserStyleSheet.h46 : m_source(source)
55 const String& source() const { return m_source; }
63 String m_source; member in class:WebCore::UserStyleSheet
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DValueRecovery.h102 result.m_source.gpr = gpr;
111 result.m_source.pair.tagGPR = tagGPR;
112 result.m_source.pair.payloadGPR = payloadGPR;
121 result.m_source.fpr = fpr;
158 result.m_source.virtualReg = virtualReg.offset();
166 result.m_source.constant = JSValue::encode(value);
203 return m_source.gpr;
210 return m_source.pair.tagGPR;
216 return m_source.pair.payloadGPR;
223 return m_source
279 } m_source; member in class:JSC::ValueRecovery
[all...]
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGPathParser.h42 void setCurrentSource(SVGPathSource* source) { m_source = source; }
58 SVGPathSource* m_source; member in class:WebCore::SVGPathParser
H A DSVGPathParser.cpp52 if (!m_source->parseMoveToSegment(targetPoint))
71 if (!m_source->parseLineToSegment(targetPoint))
88 if (!m_source->parseLineToHorizontalSegment(toX))
105 if (!m_source->parseLineToVerticalSegment(toY))
124 if (!m_source->parseCurveToCubicSegment(point1, point2, targetPoint))
146 if (!m_source->parseCurveToCubicSmoothSegment(point2, targetPoint))
177 if (!m_source->parseCurveToQuadraticSegment(point1, targetPoint))
206 if (!m_source->parseCurveToQuadraticSmoothSegment(targetPoint))
245 if (!m_source->parseArcToSegment(rx, ry, angle, largeArc, sweep, targetPoint))
286 ASSERT(m_source);
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/mediasource/
H A DSourceBuffer.cpp110 , m_source(source)
128 ASSERT(m_source);
181 m_source->openIfInEndedState();
228 if (isRemoved() || !m_source->isOpen()) {
249 if (start < 0 || (m_source && (std::isnan(m_source->duration()) || start > m_source->duration())) || end <= start) {
265 m_source->openIfInEndedState();
318 m_source = 0;
372 return m_source || m_asyncEventQueu
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DSincResampler.h74 const float* m_source; member in class:WebCore::SincResampler
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DSourceProvider.h88 return m_source;
94 , m_source(source)
98 String m_source; member in class:JSC::StringSourceProvider
/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DBidiContext.h47 BidiEmbeddingSource source() const { return static_cast<BidiEmbeddingSource>(m_source); }
55 , m_source(source)
65 unsigned m_source : 1; // BidiEmbeddingSource
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DBitmapImage.cpp107 m_source.clear(destroyAll, clearBeforeFrame, data(), m_allDataReceived);
168 m_frames[index].m_frame = m_source.createFrameAtIndex(index, &scaleHint);
171 m_frames[index].m_frame = m_source.createFrameAtIndex(index);
176 m_frames[index].m_orientation = m_source.orientationAtIndex(index);
178 m_frames[index].m_isComplete = m_source.frameIsCompleteAtIndex(index);
180 m_frames[index].m_duration = m_source.frameDurationAtIndex(index);
181 m_frames[index].m_hasAlpha = m_source.frameHasAlphaAtIndex(index);
182 m_frames[index].m_frameBytes = m_source.frameBytesAtIndex(index);
184 const IntSize frameSize(index ? m_source.frameSizeAtIndex(index) : m_size);
210 m_frames[index].m_duration = m_source
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DConsoleMessage.h63 MessageSource source() const { return m_source; }
79 MessageSource m_source; member in class:Inspector::ConsoleMessage
/macosx-10.10/WebCore-7600.1.25/loader/
H A DTextResourceDecoder.h64 if (hintDecoder && hintDecoder->m_source == AutoDetectedEncoding)
88 EncodingSource m_source; member in class:WebCore::TextResourceDecoder

Completed in 302 milliseconds

123