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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMPoint.cpp 11 DOMPoint* DOMPoint::create(const DOMPointInit& point) function in class:blink::DOMPoint
16 DOMPoint* DOMPoint::create(double x, double y, double z, double w) function in class:blink::DOMPoint
DOMPoint.h 16 static DOMPoint* create(const DOMPointInit&);
17 static DOMPoint* create(double x, double y, double z = 0, double w = 1);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
SinkDocument.cpp 35 static PassRefPtrWillBeRawPtr<SinkDocumentParser> create(SinkDocument* document) function in class:blink::SinkDocumentParser
59 return SinkDocumentParser::create(this);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGEllipseElement.cpp 33 , m_cx(SVGAnimatedLength::create(this, SVGNames::cxAttr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
34 , m_cy(SVGAnimatedLength::create(this, SVGNames::cyAttr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
35 , m_rx(SVGAnimatedLength::create(this, SVGNames::rxAttr, SVGLength::create(LengthModeWidth), ForbidNegativeLengths))
36 , m_ry(SVGAnimatedLength::create(this, SVGNames::ryAttr, SVGLength::create(LengthModeHeight), ForbidNegativeLengths))
SVGFontFaceSource.cpp 24 return SimpleFontData::create(
25 SVGFontData::create(m_svgFontFaceElement.get()),
SVGLineElement.cpp 32 , m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
33 , m_y1(SVGAnimatedLength::create(this, SVGNames::y1Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
34 , m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
35 , m_y2(SVGAnimatedLength::create(this, SVGNames::y2Attr, SVGLength::create(LengthModeHeight), AllowNegativeLengths))
  /external/chromium_org/third_party/WebKit/Source/modules/battery/
BatteryStatus.cpp 12 BatteryStatus* BatteryStatus::create() function in class:blink::BatteryStatus
17 BatteryStatus* BatteryStatus::create(bool charging, double chargingTime, double dischargingTime, double level) function in class:blink::BatteryStatus
BatteryStatus.h 16 static BatteryStatus* create();
17 static BatteryStatus* create(bool charging, double chargingTime, double dischargingTime, double level);
  /external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
LocalCredential.h 21 static LocalCredential* create(WebLocalCredential*);
22 static LocalCredential* create(const String& id, const String& name, const String& avatar, const String& password, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
EntrySync.cpp 46 EntrySync* EntrySync::create(EntryBase* entry) function in class:blink::EntrySync
49 return FileEntrySync::create(entry->m_fileSystem, entry->m_fullPath);
50 return DirectoryEntrySync::create(entry->m_fileSystem, entry->m_fullPath);
55 MetadataSyncCallbackHelper* helper = MetadataSyncCallbackHelper::create();
62 EntrySyncCallbackHelper* helper = EntrySyncCallbackHelper::create();
69 EntrySyncCallbackHelper* helper = EntrySyncCallbackHelper::create();
76 VoidSyncCallbackHelper* helper = VoidSyncCallbackHelper::create();
85 return DirectoryEntrySync::create(m_fileSystem, parentPath);
Metadata.h 43 static Metadata* create(const FileMetadata& platformMetadata) function in class:blink::Metadata
48 static Metadata* create(Metadata* metadata) function in class:blink::Metadata
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaStreamTrackEvent.h 40 static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create();
41 static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack*);
RTCDataChannelEvent.h 39 static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create();
40 static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
RTCIceCandidate.h 46 static RTCIceCandidate* create(const Dictionary&, ExceptionState&);
47 static RTCIceCandidate* create(WebRTCICECandidate);
RTCIceCandidateEvent.h 39 static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create();
40 static PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> create(bool canBubble, bool cancelable, RTCIceCandidate*);
RTCSessionDescription.h 46 static RTCSessionDescription* create(const Dictionary&, ExceptionState&);
47 static RTCSessionDescription* create(WebRTCSessionDescription);
UserMediaController.cpp 42 PassOwnPtrWillBeRawPtr<UserMediaController> UserMediaController::create(UserMediaClient* client) function in class:blink::UserMediaController
49 UserMediaController::provideTo(frame, UserMediaController::supplementName(), UserMediaController::create(client));
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ExtendableEvent.h 44 static PassRefPtrWillBeRawPtr<ExtendableEvent> create();
45 static PassRefPtrWillBeRawPtr<ExtendableEvent> create(const AtomicString& type, const EventInit&, WaitUntilObserver*);
InstallEvent.h 45 static PassRefPtrWillBeRawPtr<InstallEvent> create();
46 static PassRefPtrWillBeRawPtr<InstallEvent> create(const AtomicString& type, const EventInit&, WaitUntilObserver*);
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammar.cpp 34 SpeechGrammar* SpeechGrammar::create() function in class:blink::SpeechGrammar
39 SpeechGrammar* SpeechGrammar::create(const KURL& src, double weight) function in class:blink::SpeechGrammar
SpeechRecognitionController.cpp 46 PassOwnPtrWillBeRawPtr<SpeechRecognitionController> SpeechRecognitionController::create(PassOwnPtr<SpeechRecognitionClient> client) function in class:blink::SpeechRecognitionController
53 SpeechRecognitionController::provideTo(page, SpeechRecognitionController::supplementName(), SpeechRecognitionController::create(client));
SpeechSynthesisEvent.cpp 31 PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create() function in class:blink::SpeechSynthesisEvent
36 PassRefPtrWillBeRawPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name) function in class:blink::SpeechSynthesisEvent
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
OfflineAudioCompletionEvent.h 40 static PassRefPtrWillBeRawPtr<OfflineAudioCompletionEvent> create();
41 static PassRefPtrWillBeRawPtr<OfflineAudioCompletionEvent> create(AudioBuffer* renderedBuffer);
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBDatabaseError.cpp 46 m_private = DOMError::create(code);
51 m_private = DOMError::create(code, message);
  /external/clang/bindings/python/tests/cindex/
test_index.py 7 index = Index.create()
12 index = Index.create()

Completed in 107 milliseconds

1 2 3 4 56 7 8 91011>>