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

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/chrome/browser/resources/options/
manage_profile_overlay.css 21 #create-profile-name-input-container,
26 #create-profile-name-input-container {
30 #create-profile-name,
35 #create-profile-name:invalid,
53 #create-profile-error-bubble,
68 html[dir='ltr'] #create-profile-error-bubble {
73 html[dir='rtl'] #create-profile-error-bubble {
78 #create-profile-error-bubble[hidden],
85 #create-profile-icon-grid,
91 :-webkit-any(#create-profile-content, #manage-profile-content)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceMotionData.cpp 32 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/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-var.cpp 43 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/
RGBColor.cpp 33 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/html/shadow/
TextControlInnerElements.h 37 static PassRefPtrWillBeRawPtr<TextControlInnerContainer> create(Document&);
46 static PassRefPtrWillBeRawPtr<EditingViewPortElement> create(Document&);
58 static PassRefPtrWillBeRawPtr<TextControlInnerEditorElement> create(Document&);
71 static PassRefPtrWillBeRawPtr<SearchFieldDecorationElement> create(Document&);
84 static PassRefPtrWillBeRawPtr<SearchFieldCancelButtonElement> create(Document&);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ThreadableLoader.cpp 45 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/
SVGFELightElement.cpp 37 , 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...]
SVGPathSegListBuilder.cpp 63 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_pathElement, targetPoint.x(), targetPoint.y(), point1.x(), point1.y(), point2.x(), point2.y()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
DeprecatedStorageQuota.cpp 61 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/
Headers.h 26 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/
MediaStreamAudioDestinationNode.cpp 38 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/
EnumHashBiMapTest.java 41 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(bimap1)
    [all...]
MultisetCollectionTest.java 69 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(asList(elements)))
    [all...]
MultimapCollectionTest.java 175 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/chromium_org/third_party/WebKit/Source/core/animation/
DefaultStyleInterpolation.h 15 static PassRefPtrWillBeRawPtr<DefaultStyleInterpolation> create(CSSValue* start, CSSValue* end, CSSPropertyID id) function in class:blink::DefaultStyleInterpolation
34 : StyleInterpolation(InterpolableBool::create(false), InterpolableBool::create(true), id)
DeferredLegacyStyleInterpolation.h 22 static PassRefPtrWillBeRawPtr<DeferredLegacyStyleInterpolation> create(PassRefPtrWillBeRawPtr<CSSValue> start, PassRefPtrWillBeRawPtr<CSSValue> end, CSSPropertyID id) function in class:blink::DeferredLegacyStyleInterpolation
41 : StyleInterpolation(InterpolableNumber::create(0), InterpolableNumber::create(1), id)
LegacyStyleInterpolation.h 15 static PassRefPtrWillBeRawPtr<LegacyStyleInterpolation> create(PassRefPtrWillBeRawPtr<AnimatableValue> start, PassRefPtrWillBeRawPtr<AnimatableValue> end, CSSPropertyID id) function in class:blink::LegacyStyleInterpolation
17 return adoptRefWillBeNoop(new LegacyStyleInterpolation(InterpolableAnimatableValue::create(start), InterpolableAnimatableValue::create(end), id));
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableImage.cpp 58 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/
ClientRect.h 43 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/
AnimationPlayerEvent.h 22 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
AutocompleteErrorEvent.h 39 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create() function in class:blink::FINAL
44 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const String& reason) function in class:blink::FINAL
49 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const AtomicString& eventType, const AutocompleteErrorEventInit& initializer) function in class:blink::FINAL
OverflowEvent.h 50 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
PopStateEvent.h 44 static PassRefPtrWillBeRawPtr<PopStateEvent> create();
45 static PassRefPtrWillBeRawPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue>, PassRefPtrWillBeRawPtr<History>);
46 static PassRefPtrWillBeRawPtr<PopStateEvent> create(const AtomicString&, const PopStateEventInit&);
ProgressEvent.h 44 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
RelatedEvent.cpp 18 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

Completed in 350 milliseconds

1 2 3 4 5 6 78 91011>>