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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
PluginPlaceholderElement.cpp 21 RefPtrWillBeRawPtr<PluginPlaceholderElement> element = adoptRefWillBeNoop(new PluginPlaceholderElement(document));
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerConsole.cpp 54 if (RefPtrWillBeRawPtr<ScriptCallStack> callStack = consoleMessage->callStack()) {
SharedWorker.cpp 64 RefPtrWillBeRawPtr<SharedWorker> worker = adoptRefWillBeNoop(new SharedWorker(context));
66 RefPtrWillBeRawPtr<MessageChannel> channel = MessageChannel::create(context);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 207 RefPtrWillBeRawPtr<CSSValue> value = style->getPropertyCSSValue(m_propertyID);
245 RefPtrWillBeRawPtr<CSSValue> styleValue = style->getPropertyCSSValue(CSSPropertyWebkitTextDecorationsInEffect);
291 RefPtrWillBeRawPtr<CSSValue> value = attributeValueAsCSSValue(element);
292 RefPtrWillBeRawPtr<CSSValue> styleValue = style->getPropertyCSSValue(m_propertyID);
299 if (RefPtrWillBeRawPtr<CSSValue> value = attributeValueAsCSSValue(element))
310 RefPtrWillBeRawPtr<MutableStylePropertySet> dummyStyle = nullptr;
464 RefPtrWillBeRawPtr<CSSComputedStyleDeclaration> computedStyleAtPosition = CSSComputedStyleDeclaration::create(node);
468 if (RefPtrWillBeRawPtr<CSSValue> value = backgroundColorInEffect(node))
470 if (RefPtrWillBeRawPtr<CSSValue> value = computedStyleAtPosition->getPropertyCSSValue(CSSPropertyWebkitTextDecorationsInEffect))
522 RefPtrWillBeRawPtr<CSSValue> value = m_mutableStyle->getPropertyCSSValue(CSSPropertyWebkitFontSizeDelta)
    [all...]
InsertTextCommand.cpp 52 RefPtrWillBeRawPtr<Text> textNode = document().createEditingTextNode("");
60 RefPtrWillBeRawPtr<Text> textNode = document().createEditingTextNode("");
104 RefPtrWillBeRawPtr<Text> textNode = start.containerText();
198 RefPtrWillBeRawPtr<Text> textNode = startPosition.containerText();
220 if (RefPtrWillBeRawPtr<EditingStyle> typingStyle = document().frame()->selection().typingStyle()) {
241 RefPtrWillBeRawPtr<Text> textNode = toText(node);
247 RefPtrWillBeRawPtr<HTMLSpanElement> spanElement = createTabSpanElement(document());
253 RefPtrWillBeRawPtr<Text> textNode = toText(node);
RemoveNodeCommand.cpp 60 RefPtrWillBeRawPtr<ContainerNode> parent = m_parent.release();
61 RefPtrWillBeRawPtr<Node> refChild = m_refChild.release();
TextInsertionBaseCommand.cpp 66 RefPtrWillBeRawPtr<BeforeTextInsertedEvent> evt = BeforeTextInsertedEvent::create(text);
80 RefPtrWillBeRawPtr<BeforeTextInsertedEvent> event = BeforeTextInsertedEvent::create(String("\n"));
InsertListCommand.cpp 56 RefPtrWillBeRawPtr<HTMLUListElement> listElement = createUnorderedListElement(document());
66 RefPtrWillBeRawPtr<HTMLElement> list = passedList;
78 RefPtrWillBeRawPtr<HTMLElement> nextList = toHTMLElement(nextSibling);
142 RefPtrWillBeRawPtr<Range> currentSelection = endingSelection().firstRange();
143 RefPtrWillBeRawPtr<ContainerNode> scopeForStartOfSelection = nullptr;
144 RefPtrWillBeRawPtr<ContainerNode> scopeForEndOfSelection = nullptr;
213 RefPtrWillBeRawPtr<HTMLElement> listElement = enclosingList(listChildNode);
231 RefPtrWillBeRawPtr<HTMLElement> newList = createHTMLElement(document(), listTag);
289 RefPtrWillBeRawPtr<HTMLBRElement> placeholder = createBreakElement(document());
290 RefPtrWillBeRawPtr<HTMLElement> elementToInsert = placeholder
    [all...]
ApplyStyleCommand.cpp 215 RefPtrWillBeRawPtr<EditingStyle> blockStyle = m_style->extractAndRemoveBlockProperties();
263 RefPtrWillBeRawPtr<Range> startRange = Range::create(document(), firstPositionInNode(&scope), visibleStart.deepEquivalent().parentAnchoredEquivalent());
264 RefPtrWillBeRawPtr<Range> endRange = Range::create(document(), firstPositionInNode(&scope), visibleEnd.deepEquivalent().parentAnchoredEquivalent());
274 RefPtrWillBeRawPtr<Element> block = enclosingBlock(paragraphStart.deepEquivalent().deprecatedNode());
277 RefPtrWillBeRawPtr<HTMLElement> newBlock = moveParagraphContentsToNewBlockIfNecessary(paragraphStartToMove);
392 RefPtrWillBeRawPtr<HTMLElement> element = nullptr;
401 RefPtrWillBeRawPtr<HTMLSpanElement> span = createStyleSpanElement(document());
410 RefPtrWillBeRawPtr<MutableStylePropertySet> inlineStyle = copyStyleOrCreateEmpty(element->inlineStyle());
413 RefPtrWillBeRawPtr<CSSValue> value = inlineStyle->getPropertyCSSValue(CSSPropertyFontSize);
498 RefPtrWillBeRawPtr<Node> currentNode = node
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationTest.cpp 88 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, 0, exceptionState);
115 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, duration, exceptionState);
123 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, exceptionState);
130 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, -2, exceptionState);
232 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, timingInputDictionary, exceptionState);
234 RefPtrWillBeRawPtr<AnimationNodeTiming> specified = animation->timing();
253 RefPtrWillBeRawPtr<Animation> animationWithDuration = createAnimation(element.get(), jsKeyframes, timingInputDictionaryWithDuration, exceptionState);
255 RefPtrWillBeRawPtr<AnimationNodeTiming> specifiedWithDuration = animationWithDuration->timing();
267 RefPtrWillBeRawPtr<Animation> animationNoDuration = createAnimation(element.get(), jsKeyframes, timingInputDictionaryNoDuration, exceptionState);
269 RefPtrWillBeRawPtr<AnimationNodeTiming> specifiedNoDuration = animationNoDuration->timing()
    [all...]
InterpolableValueTest.cpp 23 RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(InterpolableNumber::create(a), InterpolableNumber::create(b));
30 RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(InterpolableBool::create(a), InterpolableBool::create(b));
37 RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(listA, listB);
75 RefPtrWillBeRawPtr<Interpolation> i = interpolateLists(listA.release(), listB.release(), 0.3);
98 RefPtrWillBeRawPtr<Interpolation> i = interpolateLists(listA.release(), listB.release(), 0.5);
LengthStyleInterpolationTest.cpp 32 static void testPrimitiveValue(RefPtrWillBeRawPtr<CSSValue> value, double doubleValue, CSSPrimitiveValue::UnitType unitType)
66 RefPtrWillBeRawPtr<MutableStylePropertySet> propertySet = MutableStylePropertySet::create();
84 RefPtrWillBeRawPtr<CSSValue> value = roundTrip(CSSPrimitiveValue::create(0, CSSPrimitiveValue::CSS_PX));
93 RefPtrWillBeRawPtr<CSSValue> value = roundTrip(CSSPrimitiveValue::create(10, CSSPrimitiveValue::CSS_PX));
105 RefPtrWillBeRawPtr<CSSValue> value = CSSPrimitiveValue::create(-10, CSSPrimitiveValue::CSS_EMS);
AnimationNodeTest.cpp 120 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
173 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
187 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
201 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
215 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
230 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
248 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
267 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
285 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
315 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.cpp 135 RefPtrWillBeRawPtr<CSSValue> val = value.get();
342 RefPtrWillBeRawPtr<CSSValue> imageValue = CSSImageValue::create(rawValue, url);
423 RefPtrWillBeRawPtr<CSSValue> value = prpValue;
486 RefPtrWillBeRawPtr<CSSValue> parsedValue = nullptr;
518 RefPtrWillBeRawPtr<CSSValue> overflowXValue = nullptr;
632 RefPtrWillBeRawPtr<CSSValueList> list = nullptr;
634 RefPtrWillBeRawPtr<CSSValue> image = nullptr;
729 RefPtrWillBeRawPtr<CSSValue> val1 = nullptr;
730 RefPtrWillBeRawPtr<CSSValue> val2 = nullptr;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8BlobCustom.cpp 43 RefPtrWillBeRawPtr<Blob> blob = Blob::create();
75 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize));
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQuerySetTest.cpp 166 RefPtrWillBeRawPtr<MediaQuerySet> oldParserQuerySet = MediaQuerySet::create(testCases[i].input);
167 RefPtrWillBeRawPtr<MediaQuerySet> threadSafeQuerySet = MediaQuerySet::createOffMainThread(testCases[i].input);
CSSComputedStyleDeclaration.cpp 400 RefPtrWillBeRawPtr<CSSPrimitiveValue> top = nullptr;
401 RefPtrWillBeRawPtr<CSSPrimitiveValue> right = nullptr;
402 RefPtrWillBeRawPtr<CSSPrimitiveValue> bottom = nullptr;
403 RefPtrWillBeRawPtr<CSSPrimitiveValue> left = nullptr;
441 RefPtrWillBeRawPtr<Quad> quad = Quad::create();
453 RefPtrWillBeRawPtr<CSSPrimitiveValue> top = nullptr;
454 RefPtrWillBeRawPtr<CSSPrimitiveValue> right = nullptr;
455 RefPtrWillBeRawPtr<CSSPrimitiveValue> bottom = nullptr;
456 RefPtrWillBeRawPtr<CSSPrimitiveValue> left = nullptr;
493 RefPtrWillBeRawPtr<Quad> quad = Quad::create()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAllCollection.cpp 68 void HTMLAllCollection::namedGetter(const AtomicString& name, RefPtrWillBeRawPtr<NodeList>& returnValue0, RefPtrWillBeRawPtr<Element>& returnValue1)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathExpression.cpp 51 RefPtrWillBeRawPtr<XPathExpression> expr = XPathExpression::create();
79 RefPtrWillBeRawPtr<XPathResult> result = XPathResult::create(evaluationContext, m_topExpression->evaluate(evaluationContext));
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseContext.cpp 92 RefPtrWillBeRawPtr<DatabaseContext> self = adoptRefWillBeNoop(new DatabaseContext(context));
131 RefPtrWillBeRawPtr<DatabaseContext> protector(this);
SQLStatement.cpp 99 RefPtrWillBeRawPtr<SQLError> sqlError = SQLError::create(*error);
103 RefPtrWillBeRawPtr<SQLResultSet> resultSet = m_backend->sqlResultSet();
  /external/chromium_org/third_party/WebKit/Source/web/
WebRange.cpp 75 RefPtrWillBeRawPtr<Node> node(m_private->startContainer());
83 RefPtrWillBeRawPtr<Node> node(m_private->endContainer());
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObjectItem.cpp 44 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, type));
51 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(FileKind, file->type()));
58 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, mimeTypeTextURIList));
66 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(StringKind, mimeTypeTextHTML));
74 RefPtrWillBeRawPtr<DataObjectItem> item = adoptRefWillBeNoop(new DataObjectItem(FileKind, String()));
  /external/chromium_org/third_party/WebKit/Source/core/frame/
ImageBitmapTest.cpp 84 RefPtrWillBeRawPtr<HTMLImageElement> imageElement = HTMLImageElement::create(*Document::create().get());
87 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapNoCrop = ImageBitmap::create(imageElement.get(), IntRect(0, 0, m_bitmap.width(), m_bitmap.height()));
88 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapInteriorCrop = ImageBitmap::create(imageElement.get(), IntRect(m_bitmap.width() / 2, m_bitmap.height() / 2, m_bitmap.width() / 2, m_bitmap.height() / 2));
89 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapExteriorCrop = ImageBitmap::create(imageElement.get(), IntRect(-m_bitmap.width() / 2, -m_bitmap.height() / 2, m_bitmap.width(), m_bitmap.height()));
90 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapOutsideCrop = ImageBitmap::create(imageElement.get(), IntRect(-m_bitmap.width(), -m_bitmap.height(), m_bitmap.width(), m_bitmap.height()));
177 RefPtrWillBeRawPtr<HTMLImageElement> image = HTMLImageElement::create(*Document::create().get());
181 RefPtrWillBeRawPtr<ImageBitmap> imageBitmap = ImageBitmap::create(image.get(), IntRect(0, 0, m_bitmap.width(), m_bitmap.height()));
200 RefPtrWillBeRawPtr<HTMLCanvasElement> canvasElement = HTMLCanvasElement::create(*Document::create().get());
203 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapDerived = nullptr;
205 RefPtrWillBeRawPtr<ImageBitmap> imageBitmapFromCanvas = ImageBitmap::create(canvasElement.get(), IntRect(0, 0, canvas (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceLoader.cpp 73 RefPtrWillBeRawPtr<ResourceLoader> loader(adoptRefWillBeNoop(new ResourceLoader(host, resource, options)));
120 RefPtrWillBeRawPtr<ResourceLoader> protector(this);
214 RefPtrWillBeRawPtr<ResourceLoader> protect(this);
270 RefPtrWillBeRawPtr<ResourceLoader> protector(this);
297 RefPtrWillBeRawPtr<ResourceLoader> protect(this);
334 RefPtrWillBeRawPtr<ResourceLoader> protect(this);
375 RefPtrWillBeRawPtr<ResourceLoader> protect(this);
429 RefPtrWillBeRawPtr<ResourceLoader> protect(this);
449 RefPtrWillBeRawPtr<ResourceLoader> protect(this);
470 RefPtrWillBeRawPtr<ResourceLoader> protect(this)
    [all...]

Completed in 257 milliseconds

1 23 4 5 6 7 8 91011>>