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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeTest.cpp 19 RefPtrWillBeRawPtr<Document> document = Document::create();
22 RefPtrWillBeRawPtr<Element> html = document->createElement("html", nullAtom, ASSERT_NO_EXCEPTION);
24 RefPtrWillBeRawPtr<ShadowRoot> shadowRoot = html->createShadowRoot(ASSERT_NO_EXCEPTION);
34 RefPtrWillBeRawPtr<Document> document = Document::create();
35 RefPtrWillBeRawPtr<Element> html = document->createElement("html", nullAtom, ASSERT_NO_EXCEPTION);
37 RefPtrWillBeRawPtr<ShadowRoot> shadowRoot = html->createShadowRoot(ASSERT_NO_EXCEPTION);
49 RefPtrWillBeRawPtr<Document> document = Document::create();
50 RefPtrWillBeRawPtr<Element> html = document->createElement("html", nullAtom, ASSERT_NO_EXCEPTION);
52 RefPtrWillBeRawPtr<Element> head = document->createElement("head", nullAtom, ASSERT_NO_EXCEPTION);
54 RefPtrWillBeRawPtr<Element> body = document->createElement("body", nullAtom, ASSERT_NO_EXCEPTION)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceLoaderSet.h 46 void add(const RefPtrWillBeRawPtr<ResourceLoader>& loader) { m_set.add(loader); }
47 void remove(const RefPtrWillBeRawPtr<ResourceLoader>& loader) { m_set.remove(loader); }
49 bool contains(const RefPtrWillBeRawPtr<ResourceLoader>& loader) const { return m_set.contains(loader); }
ResourceFetcherTest.cpp 55 RefPtrWillBeRawPtr<HTMLDocument> document = HTMLDocument::create();
56 RefPtrWillBeRawPtr<ResourceFetcher> fetcher(documentLoader->fetcher());
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryListTest.cpp 27 RefPtrWillBeRawPtr<Document> document = Document::create();
28 RefPtrWillBeRawPtr<MediaQueryList> list = MediaQueryList::create(document.get(), MediaQueryMatcher::create(*document), MediaQuerySet::create());
MediaQueryMatcherTest.cpp 19 RefPtrWillBeRawPtr<MediaQueryMatcher> matcher = MediaQueryMatcher::create(pageHolder->document());
20 RefPtrWillBeRawPtr<MediaQuerySet> querySet = MediaQuerySet::create(MediaTypeNames::all);
RGBColor.cpp 41 RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
49 RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
57 RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
65 RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
CSSBorderImage.cpp 28 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createSpaceSeparated();
33 RefPtrWillBeRawPtr<CSSValueList> listSlash = CSSValueList::createSlashSeparated();
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAllCollection.h 40 void namedGetter(const AtomicString& name, RefPtrWillBeRawPtr<NodeList>&, RefPtrWillBeRawPtr<Element>&);
TimeRangesTest.cpp 76 RefPtrWillBeRawPtr<TimeRanges> rangeA = TimeRanges::create();
77 RefPtrWillBeRawPtr<TimeRanges> rangeB = TimeRanges::create();
95 RefPtrWillBeRawPtr<TimeRanges> ranges = TimeRanges::create();
125 RefPtrWillBeRawPtr<TimeRanges> ranges = TimeRanges::create(0, 2);
136 RefPtrWillBeRawPtr<TimeRanges> rangesA = TimeRanges::create(0, 2);
137 RefPtrWillBeRawPtr<TimeRanges> rangesB = rangesA->copy();
150 RefPtrWillBeRawPtr<TimeRanges> rangesA = TimeRanges::create(0, 2);
151 RefPtrWillBeRawPtr<TimeRanges> rangesB = TimeRanges::create();
164 RefPtrWillBeRawPtr<TimeRanges> rangesA = TimeRanges::create();
165 RefPtrWillBeRawPtr<TimeRanges> rangesB = TimeRanges::create()
    [all...]
MediaDocument.cpp 76 RefPtrWillBeRawPtr<HTMLHtmlElement> rootElement = HTMLHtmlElement::create(*document());
83 RefPtrWillBeRawPtr<HTMLHeadElement> head = HTMLHeadElement::create(*document());
84 RefPtrWillBeRawPtr<HTMLMetaElement> meta = HTMLMetaElement::create(*document());
89 RefPtrWillBeRawPtr<HTMLVideoElement> media = HTMLVideoElement::create(*document());
94 RefPtrWillBeRawPtr<HTMLSourceElement> source = HTMLSourceElement::create(*document());
102 RefPtrWillBeRawPtr<HTMLBodyElement> body = HTMLBodyElement::create(*document());
HTMLAudioElement.cpp 43 RefPtrWillBeRawPtr<HTMLAudioElement> audio = adoptRefWillBeNoop(new HTMLAudioElement(document));
51 RefPtrWillBeRawPtr<HTMLAudioElement> audio = adoptRefWillBeNoop(new HTMLAudioElement(document));
HTMLFormControlsCollection.h 50 void namedGetter(const AtomicString& name, RefPtrWillBeRawPtr<RadioNodeList>&, RefPtrWillBeRawPtr<Element>&);
HTMLOptionsCollection.h 49 void namedGetter(const AtomicString& name, RefPtrWillBeRawPtr<NodeList>&, RefPtrWillBeRawPtr<Element>&);
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObjectTest.cpp 34 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->item(0);
37 RefPtrWillBeRawPtr<Blob> blob = item->getAsFile();
39 RefPtrWillBeRawPtr<File> file = toFile(blob.get());
53 RefPtrWillBeRawPtr<DataObjectItem> item = m_dataObject->item(0);
56 RefPtrWillBeRawPtr<Blob> blob = item->getAsFile();
58 RefPtrWillBeRawPtr<File> file = toFile(blob.get());
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
DescendantInvalidationSetTest.cpp 17 RefPtrWillBeRawPtr<DescendantInvalidationSet> set = DescendantInvalidationSet::create();
27 RefPtrWillBeRawPtr<DescendantInvalidationSet> set = DescendantInvalidationSet::create();
37 RefPtrWillBeRawPtr<DescendantInvalidationSet> set1 = DescendantInvalidationSet::create();
38 RefPtrWillBeRawPtr<DescendantInvalidationSet> set2 = DescendantInvalidationSet::create();
52 RefPtrWillBeRawPtr<DescendantInvalidationSet> set1 = DescendantInvalidationSet::create();
53 RefPtrWillBeRawPtr<DescendantInvalidationSet> set2 = DescendantInvalidationSet::create();
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8DocumentCustom.cpp 63 RefPtrWillBeRawPtr<Document> document = V8Document::toImpl(info.Holder());
67 RefPtrWillBeRawPtr<Node> contextNode = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[1]);
70 RefPtrWillBeRawPtr<XPathNSResolver> resolver = toXPathNSResolver(info[resolverArgumentIndex], info.GetIsolate());
78 RefPtrWillBeRawPtr<XPathResult> inResult = V8XPathResult::toImplWithTypeCheck(info.GetIsolate(), info[4]);
79 TONATIVE_VOID(RefPtrWillBeRawPtr<XPathResult>, result, DocumentXPathEvaluator::evaluate(*document, expression, contextNode.get(), resolver.release(), type, inResult.get(), exceptionState));
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLErrors.cpp 93 RefPtrWillBeRawPtr<Element> reportElement = doc->createElement(QualifiedName(nullAtom, "parsererror", xhtmlNamespaceURI), true);
99 RefPtrWillBeRawPtr<Element> h3 = doc->createElement(h3Tag, true);
103 RefPtrWillBeRawPtr<Element> fixed = doc->createElement(divTag, true);
125 RefPtrWillBeRawPtr<Element> documentElement = m_document->documentElement();
127 RefPtrWillBeRawPtr<Element> rootElement = m_document->createElement(htmlTag, true);
128 RefPtrWillBeRawPtr<Element> body = m_document->createElement(bodyTag, true);
133 RefPtrWillBeRawPtr<Element> rootElement = m_document->createElement(htmlTag, true);
134 RefPtrWillBeRawPtr<Element> head = m_document->createElement(headTag, true);
135 RefPtrWillBeRawPtr<Element> style = m_document->createElement(styleTag, true);
140 RefPtrWillBeRawPtr<Element> body = m_document->createElement(bodyTag, true)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CreateLinkCommand.cpp 45 RefPtrWillBeRawPtr<HTMLAnchorElement> anchorElement = HTMLAnchorElement::create(document());
52 RefPtrWillBeRawPtr<Text> textNode = Text::create(document(), m_url);
IndentOutdentCommand.h 52 void indentIntoBlockquote(const Position&, const Position&, RefPtrWillBeRawPtr<HTMLElement>&);
55 virtual void formatRange(const Position& start, const Position& end, const Position& endOfSelection, RefPtrWillBeRawPtr<HTMLElement>& blockquoteForNextIndent) OVERRIDE;
VisibleSelectionTest.cpp 81 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
94 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
105 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
118 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
131 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
142 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
153 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
164 RefPtrWillBeRawPtr<Range> range = selection().firstRange();
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.h 100 bool parseFillImage(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&);
107 void parse2ValuesFillPosition(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&);
109 void parseFillPosition(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&);
110 void parse3ValuesFillPosition(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&, PassRefPtrWillBeRawPtr<CSSPrimitiveValue>, PassRefPtrWillBeRawPtr<CSSPrimitiveValue>);
111 void parse4ValuesFillPosition(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&, PassRefPtrWillBeRawPtr<CSSPrimitiveValue>, PassRefPtrWillBeRawPtr<CSSPrimitiveValue>);
113 void parseFillRepeat(RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
DOMParser.cpp 41 RefPtrWillBeRawPtr<Document> doc = DOMImplementation::createDocument(contentType, 0, KURL(), false);
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableDoubleTest.cpp 61 RefPtrWillBeRawPtr<AnimatableDouble> from10 = AnimatableDouble::create(10);
62 RefPtrWillBeRawPtr<AnimatableDouble> to20 = AnimatableDouble::create(20);
74 RefPtrWillBeRawPtr<AnimatableDouble> first = AnimatableDouble::create(-1.5);
75 RefPtrWillBeRawPtr<AnimatableDouble> second = AnimatableDouble::create(2.25);
76 RefPtrWillBeRawPtr<AnimatableDouble> third = AnimatableDouble::create(3);
AnimatableStrokeDasharrayListTest.cpp 54 RefPtrWillBeRawPtr<AnimatableStrokeDasharrayList> listA = AnimatableStrokeDasharrayList::create(svgListA);
55 RefPtrWillBeRawPtr<AnimatableStrokeDasharrayList> listB = AnimatableStrokeDasharrayList::create(svgListB);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceSrcElement.cpp 46 RefPtrWillBeRawPtr<CSSValueList> list = CSSValueList::createCommaSeparated();
48 RefPtrWillBeRawPtr<CSSFontFaceSrcValue> srcValue = nullptr;

Completed in 491 milliseconds

1 2 3 4 5 6 7 8 91011>>