Home
last modified time | relevance | path

Searched refs:EventCategory (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/ui/webui/performance_monitor/
Dperformance_monitor_l10n.h25 const EventCategory category);
27 const EventCategory category);
Dperformance_monitor_ui_constants.h12 enum EventCategory { enum
Dperformance_monitor_handler.cc55 std::set<EventType> GetEventSetForCategory(EventCategory category) { in GetEventSetForCategory()
192 scoped_ptr<base::ListValue> GetEventTypesForCategory(EventCategory category) { in GetEventTypesForCategory()
213 scoped_ptr<base::DictionaryValue> GetEventCategory(EventCategory category) { in GetEventCategory()
480 results.Append(GetEventCategory(static_cast<EventCategory>(i)).release()); in HandleGetEventTypes()
Dperformance_monitor_l10n.cc56 const EventCategory category) { in GetLocalizedStringFromEventCategory()
76 const EventCategory category) { in GetLocalizedStringForEventCategoryDescription()
/external/chromium_org/base/test/
Dtrace_event_analyzer_unittest.cc235 analyzer->FindEvents(Query::EventCategory() == Query::String("cat1"), &found); in TEST_F()
246 analyzer->FindEvents(Query::EventCategory() != Query::String("cat1"), &found); in TEST_F()
431 (Query::EventCategory() == Query::String("cat1") || in TEST_F()
432 Query::EventCategory() == Query::String("cat2") || in TEST_F()
433 Query::EventCategory() == Query::String("cat3")), in TEST_F()
471 (Query::EventCategory() == Query::String("cat1") || in TEST_F()
472 Query::EventCategory() == Query::String("cat2") || in TEST_F()
473 Query::EventCategory() == Query::String("cat3")), in TEST_F()
648 analyzer->FindEvents(Query::EventCategory() == Query::String("cat1") && in TEST_F()
653 analyzer->FindEvents(Query::EventCategory() == Query::String("cat1") && in TEST_F()
[all …]
Dtrace_event_analyzer.cc705 Query::EventCategory() == Query::OtherCategory() && in AssociateBeginEndEvents()
723 Query::EventCategory() == Query::OtherCategory() && in AssociateAsyncBeginEndEvents()
Dtrace_event_analyzer.h219 static Query EventCategory() { return Query(EVENT_CATEGORY); } in EventCategory() function