OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bam_index
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/base/test/
trace_event_analyzer_unittest.cc
789
size_t
bam_index
= num_events/2;
local
790
events[
bam_index
].name = "bam";
791
Query query_bam = Query::EventName() == Query::String(events[
bam_index
].name);
800
EXPECT_FALSE(FindFirstOf(event_ptrs, query_bam,
bam_index
+ 1, &index));
802
EXPECT_EQ(
bam_index
, index);
803
EXPECT_TRUE(FindFirstOf(event_ptrs, query_bam,
bam_index
, &index));
804
EXPECT_EQ(
bam_index
, index);
814
EXPECT_FALSE(FindLastOf(event_ptrs, query_bam,
bam_index
- 1, &index));
816
EXPECT_EQ(
bam_index
, index);
817
EXPECT_TRUE(FindLastOf(event_ptrs, query_bam,
bam_index
, &index))
[
all
...]
Completed in 42 milliseconds