Searched refs:create (Results 126 - 150 of 4414) sorted by relevance

1234567891011>>

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedHashMultiset.java43 public static <E> LinkedHashMultiset<E> create() { method in class:LinkedHashMultiset
54 public static <E> LinkedHashMultiset<E> create(int distinctElements) { method in class:LinkedHashMultiset
66 public static <E> LinkedHashMultiset<E> create( method in class:LinkedHashMultiset
69 create(Multisets.inferDistinctElements(elements));
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestListGenerator.java30 List<E> create(Object... elements); method in interface:TestListGenerator
H A DTestQueueGenerator.java30 Queue<E> create(Object... elements); method in interface:TestQueueGenerator
H A DTestSetGenerator.java30 Set<E> create(Object... elements); method in interface:TestSetGenerator
H A DReserializingTestSetGenerator.java41 @Override public Set<E> create(Object... elements) { method in class:ReserializingTestSetGenerator
42 return (Set<E>) super.create(elements);
/external/guava/guava-tests/test/com/google/common/collect/
H A DArrayListMultimapTest.java36 @Override protected ListMultimap<String, Integer> create() { method in class:ArrayListMultimapTest
37 return ArrayListMultimap.create();
44 Multimap<String, Integer> multimap = create();
55 Multimap<String, Integer> multimap = create();
66 Multimap<String, Integer> multimap = create();
80 ListMultimap<String, Integer> multimap = create();
100 = ArrayListMultimap.create(multimap);
106 = ArrayListMultimap.create();
112 = ArrayListMultimap.create(15, 20);
118 ArrayListMultimap.create(1
[all...]
H A DConstrainedSetMultimapTest.java30 @Override protected SetMultimap<String, Integer> create() { method in class:ConstrainedSetMultimapTest
32 HashMultimap.<String, Integer>create(),
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableTransform.cpp36 PassRefPtrWillBeRawPtr<AnimatableTransform> AnimatableTransform::create(const TransformOperations& transform) function in class:blink::AnimatableTransform
44 return AnimatableTransform::create(transform->m_transform.blend(m_transform, fraction));
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCDATASection.cpp34 PassRefPtrWillBeRawPtr<CDATASection> CDATASection::create(Document& document, const String& data) function in class:blink::CDATASection
51 return create(document(), data);
H A DComment.cpp34 PassRefPtrWillBeRawPtr<Comment> Comment::create(Document& document, const String& text) function in class:blink::Comment
51 return create(document(), data());
H A DDOMPoint.cpp11 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
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DSinkDocument.cpp35 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/
H A DSVGAnimatedRect.h41 static PassRefPtr<SVGAnimatedRect> create(SVGElement* contextElement, const QualifiedName& attributeName) function in class:blink::SVGAnimatedRect
48 : SVGAnimatedProperty<SVGRect>(contextElement, attributeName, SVGRect::create(SVGRect::InvalidSVGRectTag()))
H A DSVGEllipseElement.cpp33 , 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))
H A DSVGFontFaceSource.cpp24 return SimpleFontData::create(
25 SVGFontData::create(m_svgFontFaceElement.get()),
H A DSVGLineElement.cpp32 , 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/
H A DBatteryStatus.cpp12 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
H A DBatteryStatus.h16 static BatteryStatus* create();
17 static BatteryStatus* create(bool charging, double chargingTime, double dischargingTime, double level);
/external/chromium_org/third_party/WebKit/Source/modules/credentialmanager/
H A DLocalCredential.h21 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/
H A DEntrySync.cpp46 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);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DUserMediaController.cpp42 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/speech/
H A DSpeechGrammar.cpp34 SpeechGrammar* SpeechGrammar::create() function in class:blink::SpeechGrammar
39 SpeechGrammar* SpeechGrammar::create(const KURL& src, double weight) function in class:blink::SpeechGrammar
H A DSpeechRecognitionController.cpp46 PassOwnPtrWillBeRawPtr<SpeechRecognitionController> SpeechRecognitionController::create(PassOwnPtr<SpeechRecognitionClient> client) function in class:blink::SpeechRecognitionController
53 SpeechRecognitionController::provideTo(page, SpeechRecognitionController::supplementName(), SpeechRecognitionController::create(client));
H A DSpeechSynthesisEvent.cpp31 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/web/
H A DWebIDBDatabaseError.cpp46 m_private = DOMError::create(code);
51 m_private = DOMError::create(code, message);

Completed in 6327 milliseconds

1234567891011>>