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

1 2 3 4 5 6 7 8 91011>>

  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Client.java 20 @Override HttpClient create() { method
26 @Override HttpClient create() { method
32 @Override HttpClient create() { method
38 @Override HttpClient create() { method
44 @Override HttpClient create() { method
49 abstract HttpClient create(); method in class:Client
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemFlags.h 40 : create(false)
43 DictionaryHelper::get(options, "create", create);
47 bool create; member in struct:blink::FileSystemFlags
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
MediaConstraintsImpl.h 43 WebMediaConstraints create();
44 WebMediaConstraints create(const Dictionary&, ExceptionState&);
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetWithChmTest.java 28 @Override protected <E> Multiset<E> create() { method in class:ConcurrentHashMultisetWithChmTest
29 return ConcurrentHashMultiset.create();
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableLengthTest.cpp 17 PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, double zoom = 1) function in namespace:blink::__anon15626
19 return AnimatableLength::create(length, zoom);
26 EXPECT_EQ(Length(0, Fixed), create(Length(0, Fixed))->length(1, ValueRangeAll));
27 EXPECT_EQ(Length(0, Percent), create(Length(0, Percent))->length(1, ValueRangeAll));
28 EXPECT_EQ(Length(10, Fixed), create(Length(10, Fixed))->length(1, ValueRangeAll));
29 EXPECT_EQ(Length(10, Percent), create(Length(10, Percent))->length(1, ValueRangeAll));
30 EXPECT_EQ(Length(-10, Fixed), create(Length(-10, Fixed))->length(1, ValueRangeAll));
31 EXPECT_EQ(Length(-10, Percent), create(Length(-10, Percent))->length(1, ValueRangeAll));
32 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), ValueRangeAll));
33 EXPECT_EQ(calc, create(calc)->length(1, ValueRangeAll))
    [all...]
AnimatableValueTestHelperTest.cpp 62 PrintToString(AnimatableClipPathOperation::create(ShapeClipPathOperation::create(BasicShapeCircle::create().get()).get())),
68 PrintToString(AnimatableColor::create(Color(0x000000FF), Color(0xFFFF0000))));
74 RefPtr<SVGLength> length1cm = SVGLength::create(LengthModeOther);
75 RefPtr<SVGLength> length2cm = SVGLength::create(LengthModeOther);
81 PrintToString(AnimatableSVGLength::create(length1cm)));
84 PrintToString(AnimatableShapeValue::create(ShapeValue::createShapeValue(BasicShapeCircle::create().get(), ContentBox).get())),
87 RefPtr<SVGLengthList> l2 = SVGLengthList::create();
    [all...]
AnimatableDoubleTest.cpp 40 TEST(AnimationAnimatableDoubleTest, Create)
42 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(5).get()));
43 EXPECT_TRUE(static_cast<bool>(AnimatableDouble::create(10).get()));
48 EXPECT_TRUE(AnimatableDouble::create(10)->equals(AnimatableDouble::create(10).get()));
49 EXPECT_FALSE(AnimatableDouble::create(5)->equals(AnimatableDouble::create(10).get()));
54 EXPECT_EQ(5.9, AnimatableDouble::create(5.9)->toDouble());
55 EXPECT_EQ(-10, AnimatableDouble::create(-10)->toDouble());
61 RefPtrWillBeRawPtr<AnimatableDouble> from10 = AnimatableDouble::create(10)
    [all...]
AnimatableStrokeDasharrayListTest.cpp 44 RefPtr<SVGLengthList> list = SVGLengthList::create();
46 list->append(SVGLength::create());
54 RefPtrWillBeRawPtr<AnimatableStrokeDasharrayList> listA = AnimatableStrokeDasharrayList::create(svgListA);
55 RefPtrWillBeRawPtr<AnimatableStrokeDasharrayList> listB = AnimatableStrokeDasharrayList::create(svgListB);
60 listB = AnimatableStrokeDasharrayList::create(svgListB);
64 listB = AnimatableStrokeDasharrayList::create(svgListB);
  /external/chromium_org/third_party/skia/src/ports/
SkDiscardableMemory_none.cpp 11 SkDiscardableMemory* SkDiscardableMemory::Create(size_t bytes) {
12 return SkGetGlobalDiscardableMemoryPool()->create(bytes);
  /external/libsepol/tests/policies/test-deps/
modreq-obj-global.conf 4 class sem { create destroy };
12 allow mod_foo_t mod_bar_t : sem { create destroy };
modreq-obj-opt.conf 14 class sem { create destroy };
19 allow mod_foo_t mod_bar_t : sem { create destroy };
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerError.cpp 46 return DOMException::create(NotSupportedError, "Service Worker support is disabled.");
48 return DOMException::create(AbortError, "The Service Worker operation was aborted.");
50 return DOMException::create(SecurityError, "The Service Worker security policy prevented an action.");
53 return DOMException::create(AbortError, "The Service Worker installation failed.");
57 return DOMException::create(AbortError, "The Service Worker activation failed.");
59 return DOMException::create(NetworkError, "The Service Worker failed by network.");
61 return DOMException::create(NotFoundError, "The specified Service Worker resource was not found.");
63 return DOMException::create(UnknownError, "An unknown error occurred within Service Worker.");
66 return DOMException::create(UnknownError);
  /external/chromium_org/third_party/WebKit/Source/modules/
EventModulesFactory.h 19 static PassOwnPtr<EventModulesFactory> create() function in class:blink::FINAL
24 virtual PassRefPtrWillBeRawPtr<Event> create(const String& eventType) OVERRIDE;
  /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/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
  /dalvik/dx/tests/113-old-style-inner-class/
Blort.java 22 public Runnable create() { method in class:Blort
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryListTest.cpp 27 RefPtrWillBeRawPtr<Document> document = Document::create();
28 RefPtrWillBeRawPtr<MediaQueryList> list = MediaQueryList::create(document.get(), MediaQueryMatcher::create(*document), MediaQuerySet::create());
BinaryDataFontFaceSource.cpp 16 : m_customPlatformData(FontCustomPlatformData::create(data))
31 return SimpleFontData::create(
34 fontDescription.orientation(), fontDescription.widthVariant()), CustomFontData::create());
MediaQueryMatcherTest.cpp 18 OwnPtr<DummyPageHolder> pageHolder = DummyPageHolder::create(IntSize(500, 500));
19 RefPtrWillBeRawPtr<MediaQueryMatcher> matcher = MediaQueryMatcher::create(pageHolder->document());
20 RefPtrWillBeRawPtr<MediaQuerySet> querySet = MediaQuerySet::create(MediaTypeNames::all);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FlowThreadController.cpp 36 PassOwnPtr<FlowThreadController> FlowThreadController::create() function in class:blink::FlowThreadController
  /external/chromium_org/third_party/WebKit/Source/modules/gamepad/
GamepadButton.cpp 10 GamepadButton* GamepadButton::create() function in class:blink::GamepadButton
  /external/chromium_org/third_party/WebKit/public/web/
WebPopupMenu.h 43 BLINK_EXPORT static WebPopupMenu* create(WebWidgetClient*);
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventFactory.h 39 virtual PassRefPtrWillBeRawPtr<Event> create(const String& eventType) = 0;
48 static PassOwnPtr<EventFactory> create() function in class:blink::FINAL
53 virtual PassRefPtrWillBeRawPtr<Event> create(const String& eventType) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
InterpolableValueTest.cpp 23 RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(InterpolableNumber::create(a), InterpolableNumber::create(b));
30 RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(InterpolableBool::create(a), InterpolableBool::create(b));
37 RefPtrWillBeRawPtr<Interpolation> i = Interpolation::create(listA, listB);
65 OwnPtrWillBeRawPtr<InterpolableList> listA = InterpolableList::create(3);
66 listA->set(0, InterpolableNumber::create(0));
67 listA->set(1, InterpolableNumber::create(42))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGZoomEvent.cpp 38 RefPtr<SVGRectTearOff> rectTearOff = SVGRectTearOff::create(SVGRect::create(), 0, PropertyIsNotAnimVal);
50 RefPtr<SVGPointTearOff> pointTearOff = SVGPointTearOff::create(SVGPoint::create(m_previousTranslate), 0, PropertyIsNotAnimVal);
62 RefPtr<SVGPointTearOff> pointTearOff = SVGPointTearOff::create(SVGPoint::create(m_newTranslate), 0, PropertyIsNotAnimVal);

Completed in 813 milliseconds

1 2 3 4 5 6 7 8 91011>>