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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderApplet.cpp 25 #include "core/frame/UseCounter.h"
34 UseCounter::count(document(), UseCounter::HTMLAppletElement);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextInputType.cpp 49 countUsageIfVisible(UseCounter::InputTypeText);
51 countUsageIfVisible(UseCounter::InputTypeTextMaxLength);
54 countUsageIfVisible(UseCounter::InputTypeDateTimeFallback);
56 countUsageIfVisible(UseCounter::InputTypeWeekFallback);
TelephoneInputType.cpp 46 countUsageIfVisible(UseCounter::InputTypeTel);
PasswordInputType.cpp 51 countUsageIfVisible(UseCounter::InputTypePassword);
53 countUsageIfVisible(UseCounter::InputTypePasswordMaxLength);
URLInputType.cpp 48 countUsageIfVisible(UseCounter::InputTypeURL);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSwitchElement.cpp 26 #include "core/frame/UseCounter.h"
34 UseCounter::count(document, UseCounter::SVGSwitchElement);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserMode.h 87 class UseCounter;
92 CSSParserContext(CSSParserMode, UseCounter*);
93 // FIXME: We shouldn't need the UseCounter argument as we could infer it from the Document
95 CSSParserContext(const Document&, UseCounter*, const KURL& baseURL = KURL(), const String& charset = emptyString());
96 // FIXME: This constructor shouldn't exist if we properly piped the UseCounter through the CSS
97 // subsystem. Currently the UseCounter life time is too crazy and we need a way to override it.
98 CSSParserContext(const CSSParserContext&, UseCounter*);
123 UseCounter* useCounter() const { return m_useCounter; }
133 UseCounter* m_useCounter
    [all...]
CSSParserMode.cpp 35 CSSParserContext::CSSParserContext(CSSParserMode mode, UseCounter* useCounter)
39 , m_useCounter(useCounter)
43 CSSParserContext::CSSParserContext(const Document& document, UseCounter* useCounter, const KURL& baseURL, const String& charset)
50 , m_useCounter(useCounter)
54 CSSParserContext::CSSParserContext(const CSSParserContext& other, UseCounter* useCounter)
61 , m_useCounter(useCounter)
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventTarget.cpp 42 #include "core/frame/UseCounter.h"
228 UseCounter::Feature unprefixedFeature;
229 UseCounter::Feature prefixedFeature;
230 UseCounter::Feature prefixedAndUnprefixedFeature;
232 prefixedFeature = UseCounter::PrefixedTransitionEndEvent;
233 unprefixedFeature = UseCounter::UnprefixedTransitionEndEvent;
234 prefixedAndUnprefixedFeature = UseCounter::PrefixedAndUnprefixedTransitionEndEvent;
236 prefixedFeature = UseCounter::PrefixedAnimationEndEvent;
237 unprefixedFeature = UseCounter::UnprefixedAnimationEndEvent;
238 prefixedAndUnprefixedFeature = UseCounter::PrefixedAndUnprefixedAnimationEndEvent
    [all...]
Event.cpp 28 #include "core/frame/UseCounter.h"
107 UseCounter::count(executionContext, UseCounter::EventGetReturnValueTrue);
109 UseCounter::count(executionContext, UseCounter::EventGetReturnValueFalse);
116 UseCounter::count(executionContext, UseCounter::EventSetReturnValueTrue);
118 UseCounter::count(executionContext, UseCounter::EventSetReturnValueFalse);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameHost.h 48 class UseCounter;
70 UseCounter& useCounter() const;
UseCounter.cpp 28 #include "core/frame/UseCounter.h"
46 int UseCounter::m_muteCount = 0;
53 int UseCounter::mapCSSPropertyIdToCSSSampleIdForHistogram(int id)
526 void UseCounter::muteForInspector()
528 UseCounter::m_muteCount++;
531 void UseCounter::unmuteForInspector()
533 UseCounter::m_muteCount--;
536 UseCounter::UseCounter()
542 UseCounter::~UseCounter(
    [all...]
SubresourceIntegrity.cpp 11 #include "core/frame/UseCounter.h"
67 UseCounter::count(element.document(), UseCounter::SRIElementWithIntegrityAttributeAndInsecureOrigin);
71 UseCounter::count(element.document(), UseCounter::SRIElementWithIntegrityAttributeAndInsecureResource);
78 UseCounter::count(element.document(), UseCounter::SRIElementWithUnparsableIntegrityAttribute);
94 UseCounter::count(element.document(), UseCounter::SRIElementWithMatchingIntegrityAttribute);
99 UseCounter::count(element.document(), UseCounter::SRIElementWithNonMatchingIntegrityAttribute)
    [all...]
FrameHost.cpp 68 UseCounter& FrameHost::useCounter() const
70 return m_page->useCounter();
UseCounter.h 44 // UseCounter is used for counting the number of times features of
55 class UseCounter {
56 WTF_MAKE_NONCOPYABLE(UseCounter);
58 UseCounter();
59 ~UseCounter();
556 static UseCounter* getFrom(const Document*);
557 static UseCounter* getFrom(const CSSStyleSheet*);
558 static UseCounter* getFrom(const StyleSheetContents*);
570 if (UseCounter::m_muteCount)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDataListElement.cpp 38 #include "core/frame/UseCounter.h"
50 UseCounter::count(document, UseCounter::DataListElement);
HTMLPictureElement.cpp 10 #include "core/frame/UseCounter.h"
34 UseCounter::count(document(), UseCounter::Picture);
HTMLMapElement.cpp 29 #include "core/frame/UseCounter.h"
42 UseCounter::count(document, UseCounter::MapElement);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
DedicatedWorkerGlobalScope.cpp 87 static PassOwnPtr<UseCounterTask> createCount(UseCounter::Feature feature) { return adoptPtr(new UseCounterTask(feature, false)); }
88 static PassOwnPtr<UseCounterTask> createDeprecation(UseCounter::Feature feature) { return adoptPtr(new UseCounterTask(feature, true)); }
91 UseCounterTask(UseCounter::Feature feature, bool isDeprecation)
101 UseCounter::countDeprecation(context, m_feature);
103 UseCounter::count(context, m_feature);
106 UseCounter::Feature m_feature;
110 void DedicatedWorkerGlobalScope::countFeature(UseCounter::Feature feature) const
115 void DedicatedWorkerGlobalScope::countDeprecation(UseCounter::Feature feature) const
DedicatedWorkerGlobalScope.h 52 virtual void countFeature(UseCounter::Feature) const OVERRIDE;
53 virtual void countDeprecation(UseCounter::Feature) const OVERRIDE;
SharedWorker.cpp 41 #include "core/frame/UseCounter.h"
62 UseCounter::count(context, UseCounter::SharedWorkerStart);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Attr.cpp 32 #include "core/frame/UseCounter.h"
134 UseCounter::count(document(), UseCounter::AttrGetValue);
140 UseCounter::count(document(), UseCounter::AttrSetValue);
142 UseCounter::count(document(), UseCounter::AttrSetValueWithElement);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
constants.cpp 8 UseCounter::countDeprecation(callingExecutionContext(info.GetIsolate()), UseCounter::{{constant.deprecate_as}});
11 UseCounter::count(callingExecutionContext(info.GetIsolate()), UseCounter::{{constant.measure_as}});
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImportsController.cpp 37 #include "core/frame/UseCounter.h"
67 UseCounter::count(master, UseCounter::HTMLImports);
95 UseCounter::count(root()->document(), UseCounter::HTMLImportsAsyncAttribute);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8ElementCustom.cpp 42 #include "core/frame/UseCounter.h"
184 UseCounter::count(callingExecutionContext(isolate), UseCounter::ElementAnimateKeyframeListEffectNoTiming);
215 UseCounter::count(callingExecutionContext(isolate), UseCounter::ElementAnimateKeyframeListEffectObjectTiming);
222 UseCounter::count(callingExecutionContext(isolate), UseCounter::ElementAnimateKeyframeListEffectDoubleTiming);

Completed in 259 milliseconds

1 2 3 4 5