HomeSort by relevance Sort by last modified time
    Searched defs:create (Results 26 - 50 of 2769) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/audio/
Panner.cpp 41 PassOwnPtr<Panner> Panner::create(PanningModel model, float sampleRate, HRTFDatabaseLoader* databaseLoader) function in class:WebCore::Panner
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/media/
MediaPlayer.cpp 42 PassOwnPtr<MediaPlayer> MediaPlayer::create(MediaPlayerClient* client) function in class:WebCore::MediaPlayer
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
ArchiveResource.cpp 45 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const KURL& url, const AtomicString& mimeType, const AtomicString& textEncoding, const String& frameName, const ResourceResponse& response) function in class:WebCore::ArchiveResource
57 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const KURL& url, const ResourceResponse& response) function in class:WebCore::ArchiveResource
59 return create(data, url, response.mimeType(), response.textEncodingName(), String(), response);
  /external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesisUtterance.cpp 31 PlatformSpeechSynthesisUtterance* PlatformSpeechSynthesisUtterance::create(PlatformSpeechSynthesisUtteranceClient* client) function in class:WebCore::PlatformSpeechSynthesisUtterance
PlatformSpeechSynthesisVoice.cpp 31 PlatformSpeechSynthesisVoice* PlatformSpeechSynthesisVoice::create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault) function in class:WebCore::PlatformSpeechSynthesisVoice
36 PlatformSpeechSynthesisVoice* PlatformSpeechSynthesisVoice::create() function in class:WebCore::PlatformSpeechSynthesisVoice
  /external/chromium_org/ui/base/touch/
touch_editing_controller.cc 13 TouchSelectionController* TouchSelectionController::create( function in class:ui::TouchSelectionController
16 return g_shared_instance->create(client_view);
  /external/chromium_org/ui/views/
views_touch_selection_controller_factory_aura.cc 15 ui::TouchSelectionController* ViewsTouchSelectionControllerFactory::create( function in class:views::ViewsTouchSelectionControllerFactory
views_touch_selection_controller_factory_mac.cc 12 ui::TouchSelectionController* ViewsTouchSelectionControllerFactory::create( function in class:views::ViewsTouchSelectionControllerFactory
  /external/chromium_org/v8/test/mjsunit/regress/
regress-780423.js 29 create: function() {
35 var o1 = Class.create();
36 var o2 = Class.create();
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPoolFactory.java 30 ScopedClassPool create(ClassLoader cl, ClassPool src, method in interface:ScopedClassPoolFactory
36 ScopedClassPool create(ClassPool src, method in interface:ScopedClassPoolFactory
ScopedClassPoolFactoryImpl.java 30 public ScopedClassPool create(ClassLoader cl, ClassPool src, method in class:ScopedClassPoolFactoryImpl
38 public ScopedClassPool create(ClassPool src, method in class:ScopedClassPoolFactoryImpl
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonGOT.cpp 30 HexagonGOTEntry* HexagonGOT::create() function in class:HexagonGOT
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathFactory.java 36 * Create an XPath.
48 XPath create(String exprString, SourceLocator locator, method in interface:XPathFactory
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ErrorHandler.h 45 static PassRefPtr<V8ErrorHandler> create(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState) function in class:WebCore::FINAL
V8EventListener.h 47 static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState) function in class:WebCore::V8EventListener
V8WorkerGlobalScopeEventListener.h 44 static PassRefPtr<V8WorkerGlobalScopeEventListener> create(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState) function in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXMenuListPopup.h 40 static PassRefPtr<AXMenuListPopup> create() { return adoptRef(new AXMenuListPopup); } function in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthTest.cpp 16 PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, double zoom = 1) function in namespace:WebCore::__anon14910
18 return AnimatableLength::create(length, zoom);
25 EXPECT_EQ(Length(0, Fixed), create(Length(0, Fixed))->length(1, ValueRangeAll));
26 EXPECT_EQ(Length(0, Percent), create(Length(0, Percent))->length(1, ValueRangeAll));
27 EXPECT_EQ(Length(10, Fixed), create(Length(10, Fixed))->length(1, ValueRangeAll));
28 EXPECT_EQ(Length(10, Percent), create(Length(10, Percent))->length(1, ValueRangeAll));
29 EXPECT_EQ(Length(-10, Fixed), create(Length(-10, Fixed))->length(1, ValueRangeAll));
30 EXPECT_EQ(Length(-10, Percent), create(Length(-10, Percent))->length(1, ValueRangeAll));
31 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), ValueRangeAll));
32 EXPECT_EQ(calc, create(calc)->length(1, ValueRangeAll))
    [all...]
AnimatableTransform.cpp 36 PassRefPtrWillBeRawPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& transform) function in class:WebCore::AnimatableTransform
44 return AnimatableTransform::create(transform->m_transform.blend(m_transform, fraction));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSArrayFunctionValue.h 40 static PassRefPtrWillBeRawPtr<CSSArrayFunctionValue> create() function in class:WebCore::CSSArrayFunctionValue
CSSGridLineNamesValue.h 41 static PassRefPtrWillBeRawPtr<CSSGridLineNamesValue> create() function in class:WebCore::CSSGridLineNamesValue
StyleMedia.h 41 static PassRefPtrWillBeRawPtr<StyleMedia> create(LocalFrame* frame) { return adoptRefWillBeNoop(new StyleMedia(frame));} function in class:WebCore::StyleMedia
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ClientRectList.h 43 static PassRefPtrWillBeRawPtr<ClientRectList> create() function in class:WebCore::FINAL
47 static PassRefPtrWillBeRawPtr<ClientRectList> create(const Vector<FloatQuad>& quads) function in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementAsyncImportMicrotaskQueue.h 42 static PassRefPtrWillBeRawPtr<CustomElementAsyncImportMicrotaskQueue> create() { return adoptRefWillBeNoop(new CustomElementAsyncImportMicrotaskQueue()); } function in class:WebCore::CustomElementAsyncImportMicrotaskQueue
  /external/chromium_org/third_party/WebKit/Source/core/editing/
BreakBlockquoteCommand.h 35 static PassRefPtrWillBeRawPtr<BreakBlockquoteCommand> create(Document& document) function in class:WebCore::FINAL

Completed in 447 milliseconds

12 3 4 5 6 7 8 91011>>