HomeSort by relevance Sort by last modified time
    Searched refs:RefPtrWillBeRawPtr (Results 176 - 200 of 474) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceUriElement.cpp 52 RefPtrWillBeRawPtr<CSSFontFaceSrcValue> src = CSSFontFaceSrcValue::create(getAttribute(XLinkNames::hrefAttr));
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBufferList.cpp 84 RefPtrWillBeRawPtr<Event> event = Event::create(eventName);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSurroundingText.cpp 51 if (RefPtrWillBeRawPtr<Range> range = static_cast<PassRefPtrWillBeRawPtr<Range> >(webRange))
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodController.cpp 98 RefPtrWillBeRawPtr<Range> range = compositionRange();
203 RefPtrWillBeRawPtr<CompositionEvent> event = CompositionEvent::create(EventTypeNames::compositionend, frame().domWindow(), text, underlines);
257 RefPtrWillBeRawPtr<CompositionEvent> event = nullptr;
312 RefPtrWillBeRawPtr<Range> selectedRange = Range::create(baseNode->document(), baseNode, start, baseNode, end);
333 RefPtrWillBeRawPtr<Range> range = PlainTextRange(compositionStart, compositionEnd).createRange(*editable);
370 RefPtrWillBeRawPtr<Range> range = frame().selection().selection().firstRange();
386 RefPtrWillBeRawPtr<Range> range = selectionOffsets.createRange(*rootEditableElement);
Editor.cpp 120 if (RefPtrWillBeRawPtr<Range> range = textFromControlOfTarget->selection())
390 RefPtrWillBeRawPtr<Range> range = selectedRange();
391 RefPtrWillBeRawPtr<DocumentFragment> fragment = nullptr;
478 RefPtrWillBeRawPtr<DataTransfer> dataTransfer = DataTransfer::create(
485 RefPtrWillBeRawPtr<Event> evt = ClipboardEvent::create(eventType, true, true, dataTransfer);
489 RefPtrWillBeRawPtr<DataObject> dataObject = dataTransfer->dataObject();
641 RefPtrWillBeRawPtr<EditingStyle> selectionStyle = EditingStyle::styleAtSelectionStart(frame().selection().selection(),
774 RefPtrWillBeRawPtr<Document> document(selectionStart->document());
830 RefPtrWillBeRawPtr<Range> selection = selectedRange();
    [all...]
InputMethodControllerTest.cpp 102 RefPtrWillBeRawPtr<Range> range = controller().compositionRange();
122 RefPtrWillBeRawPtr<Range> range = controller().compositionRange();
PlainTextRange.cpp 74 RefPtrWillBeRawPtr<Range> resultRange = scope.document().createRange();
175 RefPtrWillBeRawPtr<Range> testRange = Range::create(scope.document(), const_cast<ContainerNode*>(&scope), 0, range.startContainer(), range.startOffset());
  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 72 RefPtrWillBeRawPtr<CSSBasicShape> basicShapeValue = nullptr;
76 RefPtrWillBeRawPtr<CSSBasicShapeCircle> circleValue = CSSBasicShapeCircle::create();
86 RefPtrWillBeRawPtr<CSSBasicShapeEllipse> ellipseValue = CSSBasicShapeEllipse::create();
97 RefPtrWillBeRawPtr<CSSBasicShapePolygon> polygonValue = CSSBasicShapePolygon::create();
109 RefPtrWillBeRawPtr<CSSBasicShapeInset> insetValue = CSSBasicShapeInset::create();
CSSValuePool.cpp 86 RefPtrWillBeRawPtr<CSSPrimitiveValue> dummyValue = nullptr;
145 RefPtrWillBeRawPtr<CSSValue> parsedValue = CSSParser::parseSingleValue(CSSPropertyFontFamily, string);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 90 while (RefPtrWillBeRawPtr<Node> child = oldParent.firstChild()) {
187 RefPtrWillBeRawPtr<Node> protect(this);
212 RefPtrWillBeRawPtr<Node> next = refChild;
306 RefPtrWillBeRawPtr<Node> protect(this);
328 RefPtrWillBeRawPtr<Node> protect(this);
338 RefPtrWillBeRawPtr<Node> child = oldChild;
355 RefPtrWillBeRawPtr<Node> next = child->nextSibling();
500 RefPtrWillBeRawPtr<Node> protect(n); // removedFromDocument may remove all references to this node.
531 RefPtrWillBeRawPtr<Node> protect(this);
542 RefPtrWillBeRawPtr<Node> child = oldChild
    [all...]
ScriptLoader.cpp 257 RefPtrWillBeRawPtr<Document> elementDocument(m_element->document());
305 RefPtrWillBeRawPtr<Document> elementDocument(m_element->document());
306 RefPtrWillBeRawPtr<Document> contextDocument = elementDocument->contextDocument().get();
386 RefPtrWillBeRawPtr<Document> elementDocument(m_element->document());
387 RefPtrWillBeRawPtr<Document> contextDocument = elementDocument->contextDocument().get();
Range.cpp 591 RefPtrWillBeRawPtr<DocumentFragment> fragment = nullptr;
598 RefPtrWillBeRawPtr<Node> commonRoot = commonAncestorContainer();
611 RefPtrWillBeRawPtr<Node> partialStart = highestAncestorUnderCommonRoot(originalStart.container(), commonRoot.get());
612 RefPtrWillBeRawPtr<Node> partialEnd = highestAncestorUnderCommonRoot(originalEnd.container(), commonRoot.get());
634 RefPtrWillBeRawPtr<Node> leftContents = nullptr;
640 RefPtrWillBeRawPtr<Node> rightContents = nullptr;
647 RefPtrWillBeRawPtr<Node> processStart = childOfCommonRootBeforeOffset(originalStart.container(), originalStart.offset(), commonRoot.get());
650 RefPtrWillBeRawPtr<Node> processEnd = childOfCommonRootBeforeOffset(originalEnd.container(), originalEnd.offset(), commonRoot.get());
705 RefPtrWillBeRawPtr<Node> result = nullptr;
712 RefPtrWillBeRawPtr<CharacterData> c = static_pointer_cast<CharacterData>(container->cloneNode(true))
    [all...]
CSSSelectorWatch.cpp 146 const RefPtrWillBeRawPtr<StylePropertySet> callbackPropertySet = ImmutableStylePropertySet::create(nullptr, 0, UASheetMode);
158 RefPtrWillBeRawPtr<StyleRule> rule = StyleRule::create();
StyleElement.cpp 91 RefPtrWillBeRawPtr<StyleSheet> removedSheet = m_sheet.get();
166 RefPtrWillBeRawPtr<MediaQuerySet> mediaQueries = MediaQuerySet::create(media());
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsTest.cpp 127 RefPtrWillBeRawPtr<Keyframe> second = frame->cloneWithOffset(1);
153 RefPtrWillBeRawPtr<AnimatableValueKeyframe> keyframe = AnimatableValueKeyframe::create();
163 RefPtrWillBeRawPtr<AnimatableValue> value = nullptr;
169 RefPtrWillBeRawPtr<AnimatableValueKeyframe> keyframe = createReplaceOpKeyframe(id, value.get(), offset);
188 RefPtrWillBeRawPtr<AnimatableDouble> value = AnimatableDouble::create(values[i]);
199 RefPtrWillBeRawPtr<AnimatableTransform> value = AnimatableTransform::create(values[i]);
207 RefPtrWillBeRawPtr<AnimatableValueKeyframe> from = prpFrom;
208 RefPtrWillBeRawPtr<AnimatableValueKeyframe> to = prpTo;
209 RefPtrWillBeRawPtr<AnimatableValueKeyframe> c = prpC;
210 RefPtrWillBeRawPtr<AnimatableValueKeyframe> d = prpD
    [all...]
InterpolationEffectTest.cpp 33 RefPtrWillBeRawPtr<InterpolationEffect> interpolationEffect = InterpolationEffect::create();
58 RefPtrWillBeRawPtr<InterpolationEffect> interpolationEffect = InterpolationEffect::create();
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControlElements.cpp 234 RefPtrWillBeRawPtr<MediaControlMuteButtonElement> button = adoptRefWillBeNoop(new MediaControlMuteButtonElement(mediaControls));
270 RefPtrWillBeRawPtr<MediaControlPlayButtonElement> button = adoptRefWillBeNoop(new MediaControlPlayButtonElement(mediaControls));
306 RefPtrWillBeRawPtr<MediaControlOverlayPlayButtonElement> button = adoptRefWillBeNoop(new MediaControlOverlayPlayButtonElement(mediaControls));
350 RefPtrWillBeRawPtr<MediaControlToggleClosedCaptionsButtonElement> button = adoptRefWillBeNoop(new MediaControlToggleClosedCaptionsButtonElement(mediaControls));
391 RefPtrWillBeRawPtr<MediaControlTimelineElement> timeline = adoptRefWillBeNoop(new MediaControlTimelineElement(mediaControls));
467 RefPtrWillBeRawPtr<MediaControlVolumeSliderElement> slider = adoptRefWillBeNoop(new MediaControlVolumeSliderElement(mediaControls));
535 RefPtrWillBeRawPtr<MediaControlFullscreenButtonElement> button = adoptRefWillBeNoop(new MediaControlFullscreenButtonElement(mediaControls));
574 RefPtrWillBeRawPtr<MediaControlCastButtonElement> button = adoptRefWillBeNoop(new MediaControlCastButtonElement(mediaControls, isOverlayButton));
665 RefPtrWillBeRawPtr<MediaControlTextTrackContainerElement> element = adoptRefWillBeNoop(new MediaControlTextTrackContainerElement(mediaControls));
DateTimeEditElement.cpp 151 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeDayFieldElement::create(document, m_editElement, m_parameters.placeholderForDay, m_dayRange);
162 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeHour11FieldElement::create(document, m_editElement, m_hour23Range, step);
173 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeHour12FieldElement::create(document, m_editElement, m_hour23Range, step);
184 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeHour23FieldElement::create(document, m_editElement, m_hour23Range, step);
195 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeHour24FieldElement::create(document, m_editElement, m_hour23Range, step);
206 RefPtrWillBeRawPtr<DateTimeNumericFieldElement> field = DateTimeMinuteFieldElement::create(document, m_editElement, m_minuteRange, step);
225 RefPtrWillBeRawPtr<DateTimeFieldElement> field;
247 RefPtrWillBeRawPtr<DateTimeFieldElement> field = DateTimeAMPMFieldElement::create(document, m_editElement, m_parameters.locale.timeAMPMLabels());
258 RefPtrWillBeRawPtr<DateTimeNumericFieldElement> field = DateTimeSecondFieldElement::create(document, m_editElement, m_secondRange, step);
274 RefPtrWillBeRawPtr<DateTimeNumericFieldElement> field = DateTimeMillisecondFieldElement::create(document, m_editEleme (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 148 RefPtrWillBeRawPtr<Element> focusedElement(document->focusedElement());
161 RefPtrWillBeRawPtr<Element> focusedElement(document->focusedElement());
245 RefPtrWillBeRawPtr<LocalFrame> oldFrame = (m_focusedFrame && m_focusedFrame->isLocalFrame()) ? toLocalFrame(m_focusedFrame.get()) : 0;
247 RefPtrWillBeRawPtr<LocalFrame> newFrame = (frame && frame->isLocalFrame()) ? toLocalFrame(frame.get()) : 0;
273 RefPtrWillBeRawPtr<LocalFrame> focusedFrame = (m_focusedFrame && m_focusedFrame->isLocalFrame()) ? toLocalFrame(m_focusedFrame.get()) : 0;
275 RefPtrWillBeRawPtr<Document> document = focusedFrame->document();
287 RefPtrWillBeRawPtr<LocalFrame> newFocusedFrame = (frame && frame->isLocalFrame()) ? toLocalFrame(frame.get()) : 0;
289 RefPtrWillBeRawPtr<Document> document = newFocusedFrame->document();
411 RefPtrWillBeRawPtr<Node> node = findFocusableNodeAcrossFocusScope(type, FocusNavigationScope::focusNavigationScopeOf(currentNode ? currentNode : document), currentNode);
680 RefPtrWillBeRawPtr<LocalFrame> oldFocusedFrame = toLocalFrame(focusedFrame())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ViewportStyleResolver.cpp 123 RefPtrWillBeRawPtr<CSSValue> value = m_propertySet->getPropertyCSSValue(id);
173 RefPtrWillBeRawPtr<CSSValue> value = m_propertySet->getPropertyCSSValue(id);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLEmbedElement.cpp 50 RefPtrWillBeRawPtr<HTMLEmbedElement> element = adoptRefWillBeNoop(new HTMLEmbedElement(document, createdByParser));
144 RefPtrWillBeRawPtr<HTMLEmbedElement> protect(this); // Loading the plugin might remove us from the document.
HTMLFormElement.h 121 void anonymousNamedGetter(const AtomicString& name, RefPtrWillBeRawPtr<RadioNodeList>&, RefPtrWillBeRawPtr<Element>&);
HTMLScriptElement.cpp 75 if (RefPtrWillBeRawPtr<Document> contextDocument = document().contextDocument().get())
112 RefPtrWillBeRawPtr<Node> protectFromMutationEvents(this);
PluginDocument.cpp 93 RefPtrWillBeRawPtr<HTMLHtmlElement> rootElement = HTMLHtmlElement::create(*document());
98 RefPtrWillBeRawPtr<HTMLBodyElement> body = HTMLBodyElement::create(*document());
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImportLoader.cpp 96 RefPtrWillBeRawPtr<DocumentWriter> protectingWriter(m_writer.get());
150 if (RefPtrWillBeRawPtr<DocumentWriter> writer = m_writer.release())

Completed in 918 milliseconds

1 2 3 4 5 6 78 91011>>