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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/frame/
ImageBitmapTest.cpp 64 m_globalMemoryCache = replaceMemoryCacheForTesting(MemoryCache::create());
84 RefPtrWillBeRawPtr<HTMLImageElement> imageElement = HTMLImageElement::create(*Document::create().get());
85 imageElement->setImageResource(new ImageResource(BitmapImage::create(NativeImageSkia::create(m_bitmap)).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()));
104 RefPtrWillBePersistent<HTMLImageElement> imageNoCrop = HTMLImageElement::create(*Document::create().get())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeEffectModelTest.cpp 48 return AnimatableUnknown::create(CSSPrimitiveValue::create(n, CSSPrimitiveValue::CSS_UNKNOWN).get());
53 return AnimatableLength::create(Length(n, Fixed), 1);
59 keyframes[0] = AnimatableValueKeyframe::create();
62 keyframes[1] = AnimatableValueKeyframe::create();
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)
    [all...]
LengthStyleInterpolationTest.cpp 41 OwnPtrWillBeRawPtr<InterpolableList> list = InterpolableList::create(10);
42 list->set(0, InterpolableNumber::create(a));
43 list->set(1, InterpolableNumber::create(b));
44 list->set(2, InterpolableNumber::create(c));
45 list->set(3, InterpolableNumber::create(d));
46 list->set(4, InterpolableNumber::create(e));
47 list->set(5, InterpolableNumber::create(f));
48 list->set(6, InterpolableNumber::create(g));
49 list->set(7, InterpolableNumber::create(h));
50 list->set(8, InterpolableNumber::create(i))
    [all...]
InterpolableValue.cpp 16 return create(m_value);
18 return create(toNumber.m_value);
19 return create(m_value * (1 - progress) + toNumber.m_value * progress);
36 return create(*this);
39 return InterpolableList::create(toList);
42 OwnPtrWillBeRawPtr<InterpolableList> result = create(m_size);
63 return create(m_value);
65 return create(otherValue.m_value);
66 return create(AnimatableValue::interpolate(m_value.get(), otherValue.m_value.get(), percentage));
AnimationStackTest.cpp 22 document = Document::create();
24 timeline = AnimationTimeline::create(document.get());
50 keyframes[0] = AnimatableValueKeyframe::create();
53 keyframes[1] = AnimatableValueKeyframe::create();
56 return AnimatableValueKeyframeEffectModel::create(keyframes);
63 return InertAnimation::create(effect, timing, false);
71 return Animation::create(element.get(), effect, timing);
86 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(1))).get(), 10);
87 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(2))).get(), 15);
88 play(makeAnimation(makeAnimationEffect(CSSPropertyFontSize, AnimatableDouble::create(3))).get(), 5)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedIntegerOptionalInteger.cpp 39 SVGIntegerOptionalInteger::create(SVGInteger::create(initialFirstValue), SVGInteger::create(initialSecondValue)))
40 , m_firstInteger(SVGAnimatedInteger::create(contextElement, attributeName, baseValue()->firstInteger()))
41 , m_secondInteger(SVGAnimatedInteger::create(contextElement, attributeName, baseValue()->secondInteger()))
SVGAnimatedNumberOptionalNumber.cpp 28 SVGNumberOptionalNumber::create(SVGNumber::create(initialFirstValue), SVGNumber::create(initialSecondValue)))
29 , m_firstNumber(SVGAnimatedNumber::create(contextElement, attributeName, baseValue()->firstNumber()))
30 , m_secondNumber(SVGAnimatedNumber::create(contextElement, attributeName, baseValue()->secondNumber()))
SVGComponentTransferFunctionElement.cpp 47 , m_tableValues(SVGAnimatedNumberList::create(this, SVGNames::tableValuesAttr, SVGNumberList::create()))
48 , m_slope(SVGAnimatedNumber::create(this, SVGNames::slopeAttr, SVGNumber::create(1)))
49 , m_intercept(SVGAnimatedNumber::create(this, SVGNames::interceptAttr, SVGNumber::create()))
50 , m_amplitude(SVGAnimatedNumber::create(this, SVGNames::amplitudeAttr, SVGNumber::create(1)))
51 , m_exponent(SVGAnimatedNumber::create(this, SVGNames::exponentAttr, SVGNumber::create(1))
    [all...]
SVGRectElement.cpp 33 , m_x(SVGAnimatedLength::create(this, SVGNames::xAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
34 , m_y(SVGAnimatedLength::create(this, SVGNames::yAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
35 , m_width(SVGAnimatedLength::create(this, SVGNames::widthAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
36 , m_height(SVGAnimatedLength::create(this, SVGNames::heightAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
37 , m_rx(SVGAnimatedLength::create(this, SVGNames::rxAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
DragImageTest.cpp 56 static PassRefPtr<TestImage> create(const IntSize& size) function in class:__anon15860::TestImage
67 m_nativeImage = NativeImageSkia::create(bitmap);
106 EXPECT_FALSE(DragImage::create(0));
108 RefPtr<TestImage> nullTestImage(TestImage::create(IntSize()));
109 EXPECT_FALSE(DragImage::create(nullTestImage.get()));
114 RefPtr<TestImage> testImage(TestImage::create(IntSize(2, 2)));
115 OwnPtr<DragImage> dragImage = DragImage::create(testImage.get());
131 RefPtr<TestImage> testImage(TestImage::create(IntSize()));
132 EXPECT_FALSE(DragImage::create(testImage.get()));
137 RefPtr<TestImage> testImage(TestImage::create(IntSize(1, 1)))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MainThreadTaskRunnerTest.cpp 46 static PassOwnPtr<MarkingBooleanTask> create(bool* toBeMarked) function in class:__anon15674::FINAL
68 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get());
71 runner->postTask(MarkingBooleanTask::create(&isMarked));
80 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get());
84 runner->postTask(MarkingBooleanTask::create(&isMarked));
98 OwnPtr<MainThreadTaskRunner> runner = MainThreadTaskRunner::create(context.get());
102 runner->postTask(MarkingBooleanTask::create(&isMarked));
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
Request.h 30 static Request* create(ExecutionContext*, const String&, ExceptionState&);
31 static Request* create(ExecutionContext*, const String&, const Dictionary&, ExceptionState&);
32 static Request* create(ExecutionContext*, Request*, ExceptionState&);
33 static Request* create(ExecutionContext*, Request*, const Dictionary&, ExceptionState&);
34 static Request* create(ExecutionContext*, FetchRequestData*);
35 static Request* create(ExecutionContext*, const WebServiceWorkerRequest&);
38 static Request* create(const Request&);
Response.cpp 25 response = FetchResponseData::create();
37 Headers* headers = Headers::create();
49 Response* Response::create(ExecutionContext* context, Blob* body, const Dictionary& responseInit, ExceptionState& exceptionState) function in class:blink::Response
51 return create(context, body, ResponseInit(responseInit), exceptionState);
54 Response* Response::create(ExecutionContext* context, const String& body, const Dictionary& responseInit, ExceptionState& exceptionState) function in class:blink::Response
56 OwnPtr<BlobData> blobData = BlobData::create();
61 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), length));
62 return create(context, blob.get(), ResponseInit(responseInit), exceptionState);
65 Response* Response::create(ExecutionContext* context, const ArrayBuffer* body, const Dictionary& responseInit, ExceptionState (…) function in class:blink::Response
74 Response* Response::create(ExecutionContext* context, const ArrayBufferView* body, const Dictionary& responseInit, ExceptionState& exceptionState) function in class:blink::Response
83 Response* Response::create(ExecutionContext* context, Blob* body, const ResponseInit& responseInit, ExceptionState& exceptionState) function in class:blink::Response
143 Response* Response::create(ExecutionContext* context, FetchResponseData* response) function in class:blink::Response
150 Response* Response::create(ExecutionContext* context, const WebServiceWorkerResponse& webResponse) function in class:blink::Response
157 Response* Response::create(const Response& copyFrom) function in class:blink::Response
    [all...]
  /external/clang/lib/CodeGen/
CGOpenCLRuntime.cpp 44 return llvm::PointerType::get(llvm::StructType::create(
47 return llvm::PointerType::get(llvm::StructType::create(
50 return llvm::PointerType::get(llvm::StructType::create(
53 return llvm::PointerType::get(llvm::StructType::create(
56 return llvm::PointerType::get(llvm::StructType::create(
59 return llvm::PointerType::get(llvm::StructType::create(
64 return llvm::PointerType::get(llvm::StructType::create(
  /external/chromium_org/third_party/WebKit/Source/wtf/
Float32Array.h 37 static inline PassRefPtr<Float32Array> create(unsigned length);
38 static inline PassRefPtr<Float32Array> create(const float* array, unsigned length);
39 static inline PassRefPtr<Float32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
70 PassRefPtr<Float32Array> Float32Array::create(unsigned length) function in class:WTF::Float32Array
72 return TypedArrayBase<float>::create<Float32Array>(length);
75 PassRefPtr<Float32Array> Float32Array::create(const float* array, unsigned length) function in class:WTF::Float32Array
77 return TypedArrayBase<float>::create<Float32Array>(array, length);
80 PassRefPtr<Float32Array> Float32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WTF::Float32Array
82 return TypedArrayBase<float>::create<Float32Array>(buffer, byteOffset, length);
Float64Array.h 37 static inline PassRefPtr<Float64Array> create(unsigned length);
38 static inline PassRefPtr<Float64Array> create(const double* array, unsigned length);
39 static inline PassRefPtr<Float64Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
70 PassRefPtr<Float64Array> Float64Array::create(unsigned length) function in class:WTF::Float64Array
72 return TypedArrayBase<double>::create<Float64Array>(length);
75 PassRefPtr<Float64Array> Float64Array::create(const double* array, unsigned length) function in class:WTF::Float64Array
77 return TypedArrayBase<double>::create<Float64Array>(array, length);
80 PassRefPtr<Float64Array> Float64Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WTF::Float64Array
82 return TypedArrayBase<double>::create<Float64Array>(buffer, byteOffset, length);
Uint8ClampedArray.h 38 static inline PassRefPtr<Uint8ClampedArray> create(unsigned length);
39 static inline PassRefPtr<Uint8ClampedArray> create(const unsigned char* array, unsigned length);
40 static inline PassRefPtr<Uint8ClampedArray> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
70 PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(unsigned length) function in class:WTF::Uint8ClampedArray
72 return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(length);
75 PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(const unsigned char* array, unsigned length) function in class:WTF::Uint8ClampedArray
77 return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(array, length);
80 PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WTF::Uint8ClampedArray
82 return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(buffer, byteOffset, length);
  /external/chromium_org/third_party/WebKit/Source/core/events/
PageTransitionEvent.h 42 static PassRefPtrWillBeRawPtr<PageTransitionEvent> create() function in class:blink::FINAL
46 static PassRefPtrWillBeRawPtr<PageTransitionEvent> create(const AtomicString& type, bool persisted) function in class:blink::FINAL
50 static PassRefPtrWillBeRawPtr<PageTransitionEvent> create(const AtomicString& type, const PageTransitionEventInit& initializer) function in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
QuotesData.h 34 static PassRefPtr<QuotesData> create() { return adoptRef(new QuotesData()); } function in class:blink::QuotesData
35 static PassRefPtr<QuotesData> create(const String open, const String close);
36 static PassRefPtr<QuotesData> create(UChar open1, UChar close1, UChar open2, UChar close2);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathValue.h 41 static PassRefPtrWillBeRawPtr<ValueData> create() { return adoptRefWillBeNoop(new ValueData); } function in class:blink::XPath::ValueData
42 static PassRefPtrWillBeRawPtr<ValueData> create(const NodeSet& nodeSet) { return adoptRefWillBeNoop(new ValueData(nodeSet)); } function in class:blink::XPath::ValueData
43 static PassRefPtrWillBeRawPtr<ValueData> create(PassOwnPtrWillBeRawPtr<NodeSet> nodeSet) { return adoptRefWillBeNoop(new ValueData(nodeSet)); } function in class:blink::XPath::ValueData
44 static PassRefPtrWillBeRawPtr<ValueData> create(const String& string) { return adoptRefWillBeNoop(new ValueData(string)); } function in class:blink::XPath::ValueData
51 ValueData() : m_nodeSet(NodeSet::create()) { }
52 explicit ValueData(const NodeSet& nodeSet) : m_nodeSet(NodeSet::create(nodeSet)) { }
54 explicit ValueData(const String& string) : m_string(string), m_nodeSet(NodeSet::create()) { }
69 Value(const char* value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
70 Value(const String& value) : m_type(StringValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) { }
71 Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationData.h 37 static DeviceOrientationData* create();
38 static DeviceOrientationData* create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute = false, bool absolute = false);
39 static DeviceOrientationData* create(const WebDeviceOrientationData&);
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStreamEvent.h 45 static PassRefPtrWillBeRawPtr<MediaStreamEvent> create();
46 static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(const AtomicString& type, bool canBubble, bool cancelable, MediaStream*);
47 static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(const AtomicString& type, const MediaStreamEventInit& initializer);
RTCDTMFToneChangeEvent.h 43 static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create();
44 static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(const String& tone);
45 static PassRefPtrWillBeRawPtr<RTCDTMFToneChangeEvent> create(const AtomicString& type, const RTCDTMFToneChangeEventInit& initializer);
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
StorageQuotaCallbacksImpl.cpp 51 m_resolver->resolve(StorageInfo::create(usageInBytes, quotaInBytes));
56 m_resolver->resolve(StorageInfo::create(usageInBytes, grantedQuotaInBytes));
61 m_resolver->reject(DOMError::create(static_cast<ExceptionCode>(error)).get());
  /external/chromium_org/third_party/WebKit/Source/modules/webmidi/
MIDIConnectionEvent.h 51 static PassRefPtrWillBeRawPtr<MIDIConnectionEvent> create();
52 static PassRefPtrWillBeRawPtr<MIDIConnectionEvent> create(const AtomicString&, MIDIPort*);
53 static PassRefPtrWillBeRawPtr<MIDIConnectionEvent> create(const AtomicString&, const MIDIConnectionEventInit&);

Completed in 358 milliseconds

1 23 4 5 6 7 8 91011>>