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

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableSectionElement.cpp 59 RefPtrWillBeRawPtr<HTMLCollection> children = rows();
66 RefPtrWillBeRawPtr<HTMLTableRowElement> row = HTMLTableRowElement::create(document());
76 RefPtrWillBeRawPtr<HTMLCollection> children = rows();
81 RefPtrWillBeRawPtr<Element> row = children->item(index);
HTMLKeygenElement.cpp 54 RefPtrWillBeRawPtr<HTMLKeygenElement> keygen = adoptRefWillBeNoop(new HTMLKeygenElement(document, form));
69 RefPtrWillBeRawPtr<HTMLSelectElement> select = HTMLSelectElement::create(document());
72 RefPtrWillBeRawPtr<HTMLOptionElement> option = HTMLOptionElement::create(document());
HTMLViewSourceDocument.cpp 74 RefPtrWillBeRawPtr<HTMLHtmlElement> html = HTMLHtmlElement::create(*this);
76 RefPtrWillBeRawPtr<HTMLHeadElement> head = HTMLHeadElement::create(*this);
78 RefPtrWillBeRawPtr<HTMLBodyElement> body = HTMLBodyElement::create(*this);
83 RefPtrWillBeRawPtr<HTMLDivElement> div = HTMLDivElement::create(*this);
87 RefPtrWillBeRawPtr<HTMLTableElement> table = HTMLTableElement::create(*this);
192 RefPtrWillBeRawPtr<HTMLSpanElement> span = HTMLSpanElement::create(*this);
201 RefPtrWillBeRawPtr<HTMLTableRowElement> trow = HTMLTableRowElement::create(*this);
205 RefPtrWillBeRawPtr<HTMLTableCellElement> td = HTMLTableCellElement::create(tdTag, *this);
227 RefPtrWillBeRawPtr<HTMLBRElement> br = HTMLBRElement::create(*this);
252 RefPtrWillBeRawPtr<Element> oldElement = m_current
    [all...]
HTMLDetailsElement.cpp 53 RefPtrWillBeRawPtr<HTMLDetailsElement> details = adoptRefWillBeNoop(new HTMLDetailsElement(document));
86 RefPtrWillBeRawPtr<HTMLSummaryElement> defaultSummary = HTMLSummaryElement::create(document());
89 RefPtrWillBeRawPtr<HTMLContentElement> summary = HTMLContentElement::create(document());
95 RefPtrWillBeRawPtr<HTMLDivElement> content = HTMLDivElement::create(document());
HTMLTableRowElement.cpp 118 RefPtrWillBeRawPtr<HTMLCollection> children = cells();
125 RefPtrWillBeRawPtr<HTMLTableCellElement> cell = HTMLTableCellElement::create(tdTag, document());
135 RefPtrWillBeRawPtr<HTMLCollection> children = cells();
140 RefPtrWillBeRawPtr<Element> cell = children->item(index);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderPartTest.cpp 20 RefPtrWillBeRawPtr<Element> element = HTMLElement::create(HTMLNames::divTag, document());
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorkerGlobalScope.cpp 47 RefPtrWillBeRawPtr<MessagePort> port = prpPort;
48 RefPtrWillBeRawPtr<MessageEvent> event = MessageEvent::create(adoptPtrWillBeNoop(new MessagePortArray(1, port)), String(), String(), port);
56 RefPtrWillBeRawPtr<SharedWorkerGlobalScope> context = adoptRefWillBeNoop(new SharedWorkerGlobalScope(name, startupData->m_scriptURL, startupData->m_userAgent, thread, startupData->m_workerClients.release()));
84 RefPtrWillBeRawPtr<ConsoleMessage> consoleMessage = ConsoleMessage::create(JSMessageSource, ErrorMessageLevel, errorMessage, sourceURL, lineNumber);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MainThreadTaskRunnerTest.cpp 67 RefPtrWillBeRawPtr<NullExecutionContext> context = adoptRefWillBeNoop(new NullExecutionContext());
79 RefPtrWillBeRawPtr<NullExecutionContext> context = adoptRefWillBeNoop(new NullExecutionContext());
97 RefPtrWillBeRawPtr<NullExecutionContext> context = adoptRefWillBeNoop(new NullExecutionContext());
RangeTest.cpp 39 RefPtrWillBeRawPtr<HTMLHtmlElement> html = HTMLHtmlElement::create(*m_document);
54 RefPtrWillBeRawPtr<Range> range04 = Range::create(document(), oldText, 0, oldText, 4);
55 RefPtrWillBeRawPtr<Range> range02 = Range::create(document(), oldText, 0, oldText, 2);
56 RefPtrWillBeRawPtr<Range> range22 = Range::create(document(), oldText, 2, oldText, 2);
57 RefPtrWillBeRawPtr<Range> range24 = Range::create(document(), oldText, 2, oldText, 4);
97 RefPtrWillBeRawPtr<Range> rangeOuterOutside = Range::create(document(), outer, 0, outer, 5);
98 RefPtrWillBeRawPtr<Range> rangeOuterInside = Range::create(document(), outer, 1, outer, 4);
99 RefPtrWillBeRawPtr<Range> rangeOuterSurroundingText = Range::create(document(), outer, 2, outer, 3);
100 RefPtrWillBeRawPtr<Range> rangeInnerLeft = Range::create(document(), innerLeft, 0, innerLeft, 1);
101 RefPtrWillBeRawPtr<Range> rangeInnerRight = Range::create(document(), innerRight, 0, innerRight, 1)
    [all...]
ChildListMutationScope.cpp 77 RefPtrWillBeRawPtr<ChildListMutationAccumulator> accumulator;
96 RefPtrWillBeRawPtr<Node> child = prpChild;
119 RefPtrWillBeRawPtr<Node> child = prpChild;
139 RefPtrWillBeRawPtr<StaticNodeList> addedNodes = StaticNodeList::adopt(m_addedNodes);
140 RefPtrWillBeRawPtr<StaticNodeList> removedNodes = StaticNodeList::adopt(m_removedNodes);
141 RefPtrWillBeRawPtr<MutationRecord> record = MutationRecord::createChildList(m_target, addedNodes.release(), removedNodes.release(), m_previousSibling.release(), m_nextSibling.release());
Text.cpp 57 RefPtrWillBeRawPtr<Node> protect(this);
62 RefPtrWillBeRawPtr<Node> nextNode(NodeTraversal::nextPostOrder(*this));
72 RefPtrWillBeRawPtr<Text> nextText = toText(nextSibling);
116 RefPtrWillBeRawPtr<Text> newText = cloneWithData(oldStr.substring(offset));
195 RefPtrWillBeRawPtr<Text> startText = const_cast<Text*>(earliestLogicallyAdjacentTextNode(this));
196 RefPtrWillBeRawPtr<Text> endText = const_cast<Text*>(latestLogicallyAdjacentTextNode(this));
198 RefPtrWillBeRawPtr<Text> protectedThis(this); // Mutation event handlers could cause our last ref to go away
199 RefPtrWillBeRawPtr<ContainerNode> parent = parentNode(); // Protect against mutation handlers moving this node during traversal
200 for (RefPtrWillBeRawPtr<Node> n = startText; n && n != this && n->isTextNode() && n->parentNode() == parent;) {
201 RefPtrWillBeRawPtr<Node> nodeToRemove(n.release())
    [all...]
DocumentMarkerControllerTest.cpp 82 RefPtrWillBeRawPtr<Range> range = rangeOfContents(node.get());
94 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
110 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
124 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
137 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
151 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
165 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
179 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
193 RefPtrWillBeRawPtr<Element> parent = toElement(document().body()->firstChild()->firstChild());
TreeWalker.cpp 59 RefPtrWillBeRawPtr<Node> node = m_current;
75 for (RefPtrWillBeRawPtr<Node> node = m_current->firstChild(); node; ) {
108 for (RefPtrWillBeRawPtr<Node> node = m_current->lastChild(); node; ) {
141 RefPtrWillBeRawPtr<Node> node = m_current;
145 for (RefPtrWillBeRawPtr<Node> sibling = node->previousSibling(); sibling; ) {
178 RefPtrWillBeRawPtr<Node> node = m_current;
182 for (RefPtrWillBeRawPtr<Node> sibling = node->nextSibling(); sibling; ) {
215 RefPtrWillBeRawPtr<Node> node = m_current;
254 RefPtrWillBeRawPtr<Node> node = m_current;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystemBaseTest.cpp 36 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypeExternal, "DOMFileSystemBaseTest.cpp");
48 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypeTemporary, "UserVisibleName.txt");
60 RefPtrWillBeRawPtr<File> file = DOMFileSystemBase::createFile(m_fileMetadata, rootUrl, FileSystemTypePersistent, "UserVisibleName.txt");
  /external/chromium_org/third_party/WebKit/Source/core/editing/
IndentOutdentCommand.cpp 60 RefPtrWillBeRawPtr<Node> lastNodeInSelectedParagraph = start.deprecatedNode();
61 RefPtrWillBeRawPtr<HTMLElement> listElement = enclosingList(lastNodeInSelectedParagraph.get());
66 RefPtrWillBeRawPtr<Element> selectedListItem = enclosingBlock(lastNodeInSelectedParagraph.get());
73 RefPtrWillBeRawPtr<Element> previousList = ElementTraversal::previousSibling(*selectedListItem);
74 RefPtrWillBeRawPtr<Element> nextList = ElementTraversal::nextSibling(*selectedListItem);
79 RefPtrWillBeRawPtr<HTMLElement> newList = toHTMLElement(document().createElement(listElement->tagQName(), false).get());
100 void IndentOutdentCommand::indentIntoBlockquote(const Position& start, const Position& end, RefPtrWillBeRawPtr<HTMLElement>& targetBlockquote)
114 RefPtrWillBeRawPtr<Node> outerBlock = (start.containerNode() == elementToSplitTo) ? start.containerNode() : splitTreeToNode(start.containerNode(), elementToSplitTo).get();
186 RefPtrWillBeRawPtr<Node> splitBlockquoteNode = enclosingElement;
200 RefPtrWillBeRawPtr<HTMLBRElement> placeholder = createBreakElement(document())
    [all...]
BreakBlockquoteCommand.cpp 76 RefPtrWillBeRawPtr<HTMLBRElement> breakElement = createBreakElement(document());
138 RefPtrWillBeRawPtr<Element> clonedBlockquote = topBlockquote->cloneElementWithoutChildren();
145 RefPtrWillBeRawPtr<Element> clonedAncestor = clonedBlockquote;
147 RefPtrWillBeRawPtr<Element> clonedChild = ancestors[i - 1]->cloneElementWithoutChildren();
170 RefPtrWillBeRawPtr<Element> ancestor = nullptr;
171 RefPtrWillBeRawPtr<Element> clonedParent = nullptr;
ApplyBlockElementCommand.h 52 virtual void formatRange(const Position& start, const Position& end, const Position& endOfSelection, RefPtrWillBeRawPtr<HTMLElement>&) = 0;
FormatBlockCommand.h 57 virtual void formatRange(const Position& start, const Position& end, const Position& endOfSelection, RefPtrWillBeRawPtr<HTMLElement>&) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeEffectModelTest.cpp 77 RefPtrWillBeRawPtr<AnimatableValue> value = interpolation->currentValue();
104 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes);
116 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes);
125 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes);
135 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes);
145 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes);
156 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes);
166 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes);
173 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes);
185 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(keyframes)
    [all...]
AnimationTimelineTest.cpp 140 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector());
141 RefPtrWillBeRawPtr<Animation> anim = Animation::create(element.get(), effect, timing);
157 RefPtrWillBeRawPtr<AnimatableValueKeyframeEffectModel> effect = AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector());
159 RefPtrWillBeRawPtr<Animation> anim = Animation::create(element.get(), effect, timing);
193 RefPtrWillBeRawPtr<Animation> anim1 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timing);
194 RefPtrWillBeRawPtr<Animation> anim2 = Animation::create(element.get(), AnimatableValueKeyframeEffectModel::create(AnimatableValueKeyframeVector()), timing);
208 RefPtrWillBeRawPtr<Animation> anim = Animation::create(element.get(), nullptr, timing);
235 RefPtrWillBeRawPtr<Animation> anim = Animation::create(0, nullptr, timing);
242 RefPtrWillBeRawPtr<AnimationPlayer> player = timeline->createAnimationPlayer(0);
ElementAnimation.h 67 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState);
76 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState);
85 RefPtrWillBeRawPtr<AnimationEffect> effect = EffectInput::convert(&element, keyframeDictionaryVector, exceptionState);
112 RefPtrWillBeRawPtr<Animation> animation = Animation::create(&element, effect, timing);
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataTransferItemList.cpp 56 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->item(index);
83 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->add(data, type);
95 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->add(file);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentWriter.cpp 98 RefPtrWillBeRawPtr<DocumentWriter> protectingThis(this);
109 RefPtrWillBeRawPtr<LocalFrame> protect(m_document->frame());
120 RefPtrWillBeRawPtr<DocumentWriter> protectingThis(this);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DetailsMarkerControl.h 55 RefPtrWillBeRawPtr<DetailsMarkerControl> element = adoptRefWillBeNoop(new DetailsMarkerControl(document));
MediaControls.cpp 76 RefPtrWillBeRawPtr<MediaControls> controls = adoptRefWillBeNoop(new MediaControls(mediaElement));
88 RefPtrWillBeRawPtr<MediaControlOverlayEnclosureElement> overlayEnclosure = MediaControlOverlayEnclosureElement::create(*this);
91 RefPtrWillBeRawPtr<MediaControlOverlayPlayButtonElement> overlayPlayButton = MediaControlOverlayPlayButtonElement::create(*this);
98 RefPtrWillBeRawPtr<MediaControlCastButtonElement> overlayCastButton = MediaControlCastButtonElement::create(*this, true);
110 RefPtrWillBeRawPtr<MediaControlPanelEnclosureElement> enclosure = MediaControlPanelEnclosureElement::create(*this);
112 RefPtrWillBeRawPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(*this);
114 RefPtrWillBeRawPtr<MediaControlPlayButtonElement> playButton = MediaControlPlayButtonElement::create(*this);
120 RefPtrWillBeRawPtr<MediaControlTimelineElement> timeline = MediaControlTimelineElement::create(*this);
126 RefPtrWillBeRawPtr<MediaControlCurrentTimeDisplayElement> currentTimeDisplay = MediaControlCurrentTimeDisplayElement::create(*this);
133 RefPtrWillBeRawPtr<MediaControlTimeRemainingDisplayElement> durationDisplay = MediaControlTimeRemainingDisplayElement (…)
    [all...]

Completed in 333 milliseconds

12 3 4 5 6 7 8 91011>>