Searched refs:create (Results 176 - 200 of 4414) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionData.cpp32 DeviceMotionData::Acceleration* DeviceMotionData::Acceleration::create( function in class:blink::DeviceMotionData::Acceleration
49 DeviceMotionData::RotationRate* DeviceMotionData::RotationRate::create( function in class:blink::DeviceMotionData::RotationRate
65 DeviceMotionData* DeviceMotionData::create() function in class:blink::DeviceMotionData
70 DeviceMotionData* DeviceMotionData::create( function in class:blink::DeviceMotionData
80 DeviceMotionData* DeviceMotionData::create(const WebDeviceMotionData& data) function in class:blink::DeviceMotionData
82 return DeviceMotionData::create(
83 DeviceMotionData::Acceleration::create(
87 DeviceMotionData::Acceleration::create(
91 DeviceMotionData::RotationRate::create(
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dproxies-hash.js34 test(construct, handler, Proxy.create)
47 function TestSet2(construct, fix, create) {
49 var p1 = create(handler)
50 var p2 = create(handler)
51 var p3 = create(handler)
84 function TestMap2(construct, fix, create) {
86 var p1 = create(handler)
87 var p2 = create(handler)
88 var p3 = create(handler)
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-var.cpp43 template<typename T> T create();
114 const Base &br1 = create<Base>();
115 const Base &br2 = create<Derived>();
116 const Derived &dr1 = create<Base>(); // expected-error{{no viable conversion}}
118 const Base &br3 = create<const Base>();
119 const Base &br4 = create<const Derived>();
121 const Base &br5 = create<const volatile Base>(); // expected-error{{binding of reference to type 'const Base' to a value of type 'const volatile Base' drops qualifiers}}
122 const Base &br6 = create<const volatile Derived>(); // expected-error{{binding of reference to type 'const Base' to a value of type 'const volatile Derived' drops qualifiers}}
124 const int &ir = create<int>();
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRGBColor.cpp33 PassRefPtrWillBeRawPtr<RGBColor> RGBColor::create(unsigned rgbColor) function in class:blink::RGBColor
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);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DThreadableLoader.cpp45 PassRefPtr<ThreadableLoader> ThreadableLoader::create(ExecutionContext& context, ThreadableLoaderClient* client, const ResourceRequest& request, const ThreadableLoaderOptions& options, const ResourceLoaderOptions& resourceLoaderOptions) function in class:blink::ThreadableLoader
51 RefPtr<ThreadableLoaderClientWrapper> clientWrapper(ThreadableLoaderClientWrapper::create(client));
52 OwnPtr<ThreadableLoaderClient> clientBridge(WorkerLoaderClientBridge::create(clientWrapper, workerGlobalScope.thread()->workerLoaderProxy()));
53 return WorkerThreadableLoader::create(workerGlobalScope, clientWrapper, clientBridge.release(), request, options, resourceLoaderOptions);
56 return DocumentThreadableLoader::create(toDocument(context), client, request, options, resourceLoaderOptions);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFELightElement.cpp37 , m_azimuth(SVGAnimatedNumber::create(this, SVGNames::azimuthAttr, SVGNumber::create()))
38 , m_elevation(SVGAnimatedNumber::create(this, SVGNames::elevationAttr, SVGNumber::create()))
39 , m_x(SVGAnimatedNumber::create(this, SVGNames::xAttr, SVGNumber::create()))
40 , m_y(SVGAnimatedNumber::create(this, SVGNames::yAttr, SVGNumber::create()))
41 , m_z(SVGAnimatedNumber::create(this, SVGNames::zAttr, SVGNumber::create()))
[all...]
H A DSVGPathSegListBuilder.cpp63 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoAbs::create(m_pathElement, targetPoint.x(), targetPoint.y()));
65 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoRel::create(m_pathElement, targetPoint.x(), targetPoint.y()));
73 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoAbs::create(m_pathElement, targetPoint.x(), targetPoint.y()));
75 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoRel::create(m_pathElement, targetPoint.x(), targetPoint.y()));
83 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalAbs::create(m_pathElement, x));
85 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoHorizontalRel::create(m_pathElement, x));
93 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoVerticalAbs::create(m_pathElement, y));
95 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoVerticalRel::create(m_pathElement, y));
103 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicAbs::create(m_pathElement, targetPoint.x(), targetPoint.y(), point1.x(), point1.y(), point2.x(), point2.y()));
105 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegCurvetoCubicRel::create(m_pathElemen
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DDeprecatedStorageQuota.cpp61 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
67 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
72 OwnPtrWillBeRawPtr<StorageQuotaCallbacks> callbacks = DeprecatedStorageQuotaCallbacksImpl::create(successCallback, errorCallback);
83 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
89 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DHeaders.h26 static Headers* create();
27 static Headers* create(ExceptionState&);
28 static Headers* create(const Headers*, ExceptionState&);
29 static Headers* create(const Dictionary&, ExceptionState&);
32 static Headers* create(FetchHeaderList*);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DMediaStreamAudioDestinationNode.cpp38 MediaStreamAudioDestinationNode* MediaStreamAudioDestinationNode::create(AudioContext* context, size_t numberOfChannels) function in class:blink::MediaStreamAudioDestinationNode
45 , m_mixBus(AudioBus::create(numberOfChannels, ProcessingSizeInFrames))
49 m_source = MediaStreamSource::create("WebAudio-" + createCanonicalUUIDString(), MediaStreamSource::TypeAudio, "MediaStreamAudioDestinationNode", MediaStreamSource::ReadyStateLive, true);
53 m_stream = MediaStream::create(context->executionContext(), MediaStreamDescriptor::create(audioSources, videoSources));
/external/guava/guava-tests/test/com/google/common/collect/
H A DEnumHashBiMapTest.java41 EnumHashBiMap.create(Currency.class);
44 assertEquals(HashBiMap.create(), bimap);
57 = EnumHashBiMap.create(map);
63 EnumHashBiMap.create(
69 Map<Currency, String> emptyBimap = EnumHashBiMap.create(Currency.class);
70 bimap = EnumHashBiMap.create(emptyBimap);
75 EnumBiMap.create(Currency.class, Country.class);
77 = EnumHashBiMap.create(emptyBimap2);
84 EnumHashBiMap.create(Currency.class);
87 EnumHashBiMap.create(bimap
[all...]
H A DMultisetCollectionTest.java69 protected Multiset<String> create(String[] elements) {
70 return TreeMultiset.create(Arrays.asList(elements));
88 protected Multiset<String> create(String[] elements) {
89 Multiset<String> result = TreeMultiset.create(Ordering.natural().nullsFirst());
148 @Override protected Multiset<String> create(String[] elements) {
149 return HashMultiset.create(asList(elements));
156 @Override protected Multiset<String> create(String[] elements) {
158 TreeMultiset.create(asList(elements)));
169 @Override protected Multiset<String> create(String[] elements) {
171 TreeMultiset.create(asLis
[all...]
H A DMultimapCollectionTest.java175 static <K, V> PopulatableMapAsMultimap<K, V> create() { method in class:MultimapCollectionTest.PopulatableMapAsMultimap
221 public Collection<Entry<String, Integer>> create(Object... elements) { method in class:MultimapCollectionTest.TestEntriesGenerator
249 @Override public List<Entry<String, Integer>> create(Object... elements) { method in class:MultimapCollectionTest.TestEntriesListGenerator
250 return (List<Entry<String, Integer>>) super.create(elements);
258 @Override public Set<Entry<String, Integer>> create(Object... elements) { method in class:MultimapCollectionTest.TestEntrySetGenerator
259 return (Set<Entry<String, Integer>>) super.create(elements);
281 @Override protected Set<String> create(String[] elements) {
282 SetMultimap<Integer, String> multimap = HashMultimap.create();
292 @Override protected Set<String> create(String[] elements) {
294 = LinkedHashMultimap.create();
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPairTest.java24 Pair<String, String> p = Pair.create("Foo", "Bar");
31 assertThat(Pair.create("1", 2), equalTo(Pair.create("1", 2)));
36 assertThat(Pair.create("1", 2).hashCode(), equalTo(Pair.create("1", 2).hashCode()));
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DDefaultStyleInterpolation.h15 static PassRefPtrWillBeRawPtr<DefaultStyleInterpolation> create(CSSValue* start, CSSValue* end, CSSPropertyID id) function in class:blink::DefaultStyleInterpolation
34 : StyleInterpolation(InterpolableBool::create(false), InterpolableBool::create(true), id)
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableImage.cpp58 RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue, toValue);
59 crossfadeValue->setPercentage(CSSPrimitiveValue::create(fraction, CSSPrimitiveValue::CSS_NUMBER));
60 return create(crossfadeValue);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClientRect.h43 static PassRefPtrWillBeRawPtr<ClientRect> create() function in class:blink::FINAL
47 static PassRefPtrWillBeRawPtr<ClientRect> create(const IntRect& rect) function in class:blink::FINAL
51 static PassRefPtrWillBeRawPtr<ClientRect> create(const FloatRect& rect) function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DAnimationPlayerEvent.h22 static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create() function in class:blink::FINAL
26 static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create(const AtomicString& type, double currentTime, double timelineTime) function in class:blink::FINAL
30 static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create(const AtomicString& type, const AnimationPlayerEventInit& initializer) function in class:blink::FINAL
H A DOverflowEvent.h50 static PassRefPtrWillBeRawPtr<OverflowEvent> create() function in class:blink::FINAL
54 static PassRefPtrWillBeRawPtr<OverflowEvent> create(bool horizontalOverflowChanged, bool horizontalOverflow, bool verticalOverflowChanged, bool verticalOverflow) function in class:blink::FINAL
58 static PassRefPtrWillBeRawPtr<OverflowEvent> create(const AtomicString& type, const OverflowEventInit& initializer) function in class:blink::FINAL
H A DPageTransitionEvent.h42 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
H A DPopStateEvent.h44 static PassRefPtrWillBeRawPtr<PopStateEvent> create();
45 static PassRefPtrWillBeRawPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue>, PassRefPtrWillBeRawPtr<History>);
46 static PassRefPtrWillBeRawPtr<PopStateEvent> create(const AtomicString&, const PopStateEventInit&);
H A DProgressEvent.h44 static PassRefPtrWillBeRawPtr<ProgressEvent> create() function in class:blink::ProgressEvent
48 static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total) function in class:blink::ProgressEvent
52 static PassRefPtrWillBeRawPtr<ProgressEvent> create(const AtomicString& type, const ProgressEventInit& initializer) function in class:blink::ProgressEvent
H A DRelatedEvent.cpp18 PassRefPtrWillBeRawPtr<RelatedEvent> RelatedEvent::create() function in class:blink::RelatedEvent
23 PassRefPtrWillBeRawPtr<RelatedEvent> RelatedEvent::create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget) function in class:blink::RelatedEvent
28 PassRefPtrWillBeRawPtr<RelatedEvent> RelatedEvent::create(const AtomicString& type, const RelatedEventInit& initializer) function in class:blink::RelatedEvent
H A DRelatedEvent.h20 static PassRefPtrWillBeRawPtr<RelatedEvent> create();
21 static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& type, bool canBubble, bool cancelable, EventTarget* relatedTarget);
22 static PassRefPtrWillBeRawPtr<RelatedEvent> create(const AtomicString& eventType, const RelatedEventInit&);
H A DWebKitAnimationEvent.h46 static PassRefPtrWillBeRawPtr<WebKitAnimationEvent> create() function in class:blink::FINAL
50 static PassRefPtrWillBeRawPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime) function in class:blink::FINAL
54 static PassRefPtrWillBeRawPtr<WebKitAnimationEvent> create(const AtomicString& type, const WebKitAnimationEventInit& initializer) function in class:blink::FINAL

Completed in 9381 milliseconds

1234567891011>>