OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:query_one
(Results
1 - 1
of
1
) sorted by null
/external/libchrome/base/test/
trace_event_analyzer_unittest.cc
850
Query
query_one
= Query::EventName() == Query::String("one");
local
852
// Only one event matches
query_one
, so two closest can't be found.
853
EXPECT_FALSE(FindClosest(event_ptrs,
query_one
, 0, &index_1, &index_2));
855
EXPECT_TRUE(FindClosest(event_ptrs,
query_one
, 3, &index_1, NULL));
886
Query
query_one
= Query::EventName() == Query::String("one");
local
892
EXPECT_EQ(1u, CountMatches(event_ptrs,
query_one
));
893
EXPECT_EQ(num_events - 1, CountMatches(event_ptrs, !
query_one
));
Completed in 291 milliseconds