HomeSort by relevance Sort by last modified time
    Searched refs:OwnPtr (Results 226 - 250 of 614) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PerIsolateData.h 35 #include "wtf/OwnPtr.h"
157 OwnPtr<StringCache> m_stringCache;
162 OwnPtr<V8HiddenPropertyName> m_hiddenPropertyName;
176 OwnPtr<GCEventData> m_gcEventData;
V8PerContextData.h 147 typedef WTF::HashMap<CustomElementDefinition*, OwnPtr<CustomElementBinding> > CustomElementBindingMap;
148 OwnPtr<CustomElementBindingMap> m_customElementBindings;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.h 37 #include "wtf/OwnPtr.h"
91 OwnPtr<RuleSet> m_authorStyle;
92 HashMap<const ShadowRoot*, OwnPtr<RuleSet> > m_atHostRules;
136 HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> > m_authorStyles;
ScopedStyleResolver.cpp 62 HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::iterator it = m_authorStyles.find(scopingNode);
68 HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::AddResult addResult = m_authorStyles.add(scopingNode, nullptr);
107 for (HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::iterator it = m_authorStyles.begin(); it != m_authorStyles.end(); ++it) {
200 for (HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::iterator it = m_authorStyles.begin(); it != m_authorStyles.end(); ++it)
207 for (HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::iterator it = m_authorStyles.begin(); it != m_authorStyles.end(); ++it) {
260 HashMap<const ShadowRoot*, OwnPtr<RuleSet> >::AddResult addResult = m_atHostRules.add(shadowRoot, nullptr);
295 for (HashMap<const ShadowRoot*, OwnPtr<RuleSet> >::iterator it = m_atHostRules.begin(); it != m_atHostRules.end(); ++it)
344 HashMap<const ShadowRoot*, OwnPtr<RuleSet> >::const_iterator it = m_atHostRules.find(shadowRoot);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
File.cpp 57 OwnPtr<BlobData> blobData = BlobData::create();
75 OwnPtr<BlobData> blobData = BlobData::create();
83 OwnPtr<BlobData> blobData = BlobData::create();
Blob.cpp 71 OwnPtr<BlobData> blobData = BlobData::create();
140 OwnPtr<BlobData> blobData = BlobData::create();
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PingLoader.cpp 49 #include "wtf/OwnPtr.h"
68 OwnPtr<PingLoader> pingLoader = adoptPtr(new PingLoader(frame, request));
98 OwnPtr<PingLoader> pingLoader = adoptPtr(new PingLoader(frame, request));
117 OwnPtr<PingLoader> pingLoader = adoptPtr(new PingLoader(frame, request, SecurityOrigin::create(reportURL)->isSameSchemeHostPort(frame->document()->securityOrigin()) ? AllowStoredCredentials : DoNotAllowStoredCredentials));
NavigationScheduler.cpp 112 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
125 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
153 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
178 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
196 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
227 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
250 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
423 OwnPtr<ScheduledNavigation> redirect(m_redirect.release());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ContentData.h 30 #include "wtf/OwnPtr.h"
66 OwnPtr<ContentData> m_next;
145 OwnPtr<CounterContent> counterData = adoptPtr(new CounterContent(*counter()));
156 OwnPtr<CounterContent> m_counter;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedTransformList.cpp 45 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createTransformList(new SVGTransformList);
133 OwnPtr<SVGAnimatedType> from = constructFromString(fromString);
134 OwnPtr<SVGAnimatedType> to = constructFromString(toString);
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
MainThreadWebSocketChannel.h 185 OwnPtr<WebSocketHandshake> m_handshake;
207 Deque<OwnPtr<QueuedFrame> > m_outgoingFrameQueue;
211 OwnPtr<FileReaderLoader> m_blobLoader;
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
HRTFElevation.cpp 39 #include "wtf/OwnPtr.h"
244 OwnPtr<HRTFKernelList> kernelListL = adoptPtr(new HRTFKernelList(NumberOfTotalAzimuths));
245 OwnPtr<HRTFKernelList> kernelListR = adoptPtr(new HRTFKernelList(NumberOfTotalAzimuths));
274 OwnPtr<HRTFElevation> hrtfElevation = adoptPtr(new HRTFElevation(kernelListL.release(), kernelListR.release(), elevation, sampleRate));
286 OwnPtr<HRTFKernelList> kernelListL = adoptPtr(new HRTFKernelList(NumberOfTotalAzimuths));
287 OwnPtr<HRTFKernelList> kernelListR = adoptPtr(new HRTFKernelList(NumberOfTotalAzimuths));
303 OwnPtr<HRTFElevation> hrtfElevation = adoptPtr(new HRTFElevation(kernelListL.release(), kernelListR.release(), static_cast<int>(angle), sampleRate));
HRTFDatabase.cpp 50 OwnPtr<HRTFDatabase> hrtfDatabase = adoptPtr(new HRTFDatabase(sampleRate));
60 OwnPtr<HRTFElevation> hrtfElevation = HRTFElevation::createForSubject("Composite", elevation, sampleRate);
HRTFKernel.cpp 102 OwnPtr<AudioChannel> channel = adoptPtr(new AudioChannel(fftSize()));
130 OwnPtr<FFTFrame> interpolatedFrame = FFTFrame::createInterpolatedFrame(*kernel1->fftFrame(), *kernel2->fftFrame(), x);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRenderingContext.cpp 212 bool SVGRenderingContext::createImageBuffer(const FloatRect& targetRect, const AffineTransform& absoluteTransform, OwnPtr<ImageBuffer>& imageBuffer, RenderingMode renderingMode)
220 OwnPtr<ImageBuffer> image = ImageBuffer::create(clampedSize, 1, renderingMode);
236 bool SVGRenderingContext::createImageBufferForPattern(const FloatRect& absoluteTargetRect, const FloatRect& clampedAbsoluteTargetRect, OwnPtr<ImageBuffer>& imageBuffer, RenderingMode renderingMode)
245 OwnPtr<ImageBuffer> image = ImageBuffer::create(imageSize, 1, renderingMode);
277 void SVGRenderingContext::clipToImageBuffer(GraphicsContext* context, const AffineTransform& absoluteTransform, const FloatRect& targetRect, OwnPtr<ImageBuffer>& imageBuffer, bool safeToClear)
316 bool SVGRenderingContext::bufferForeground(OwnPtr<ImageBuffer>& imageBuffer)
  /external/chromium_org/third_party/WebKit/Source/core/css/
DocumentRuleSets.cpp 46 OwnPtr<RuleSet> ruleSetForScope = RuleSet::create();
79 OwnPtr<RuleSet> tempUserStyle = RuleSet::create();
MediaQueryMatcher.cpp 100 OwnPtr<MediaQueryEvaluator> evaluator(prepareEvaluator());
150 OwnPtr<MediaQueryEvaluator> evaluator = prepareEvaluator();
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLElementStack.h 33 #include "wtf/OwnPtr.h"
75 OwnPtr<ElementRecord> m_next;
172 OwnPtr<ElementRecord> m_top;
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
LocaleICU.cpp 178 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>());
198 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>());
230 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>());
272 OwnPtr<Vector<String> > labels = adoptPtr(new Vector<String>());
301 OwnPtr<Vector<String> > timeAMPMLabels = createLabelVector(m_mediumTimeFormat, UDAT_AM_PMS, UCAL_AM, 2);
388 if (OwnPtr<Vector<String> > labels = createLabelVector(m_shortDateFormat, UDAT_SHORT_MONTHS, UCAL_JANUARY, 12)) {
404 if (OwnPtr<Vector<String> > labels = createLabelVector(m_shortDateFormat, UDAT_STANDALONE_MONTHS, UCAL_JANUARY, 12)) {
418 if (OwnPtr<Vector<String> > labels = createLabelVector(m_shortDateFormat, UDAT_STANDALONE_SHORT_MONTHS, UCAL_JANUARY, 12)) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeInfo.h 38 #include "wtf/OwnPtr.h"
57 typedef HashMap<const KeyType*, OwnPtr<InfoType> > InfoMap;
122 mutable OwnPtr<Shape> m_shape;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.h 32 #include "wtf/OwnPtr.h"
206 Vector<OwnPtr<AudioNodeInput> > m_inputs;
207 Vector<OwnPtr<AudioNodeOutput> > m_outputs;
  /external/chromium_org/third_party/WebKit/Source/web/
AutofillPopupMenuClient.h 136 OwnPtr<WebCore::PopupMenuStyle> m_regularStyle;
137 OwnPtr<WebCore::PopupMenuStyle> m_warningStyle;
WebDataSourceImpl.cpp 44 static OwnPtr<WebPluginLoadObserver>& nextPluginLoadObserver()
46 DEFINE_STATIC_LOCAL(OwnPtr<WebPluginLoadObserver>, nextPluginLoadObserver, ());
WebImageSkia.cpp 41 #include "wtf/OwnPtr.h"
53 OwnPtr<ImageDecoder> decoder(ImageDecoder::create(*buffer.get(), ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileIgnored));
101 OwnPtr<ImageDecoder> decoder(ImageDecoder::create(*buffer.get(), ImageSource::AlphaPremultiplied, ImageSource::GammaAndColorProfileIgnored));
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/webp/
WEBPImageDecoderTest.cpp 41 #include "wtf/OwnPtr.h"
75 OwnPtr<WEBPImageDecoder> decoder = createDecoder();
95 OwnPtr<WEBPImageDecoder> decoder = createDecoder();
126 OwnPtr<WEBPImageDecoder> decoder = createDecoder();
154 OwnPtr<WEBPImageDecoder> decoder = createDecoder();
194 OwnPtr<WEBPImageDecoder> decoder = createDecoder();
245 OwnPtr<WEBPImageDecoder> decoder = createDecoder();
273 OwnPtr<WEBPImageDecoder> decoder = createDecoder();
291 OwnPtr<WEBPImageDecoder> decoder;
336 OwnPtr<WEBPImageDecoder> decoder = createDecoder()
    [all...]

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>