Home
last modified time | relevance | path

Searched refs:float_map (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/cmds/statsd/src/logd/
DLogEvent.h101 const std::map<int32_t, float>& float_map);
156 const std::map<int32_t, float>& float_map);
DLogEvent.cpp139 const std::map<int32_t, float>& float_map) { in LogEvent() argument
176 for (const auto&itr : float_map) { in LogEvent()
308 const std::map<int32_t, float>& float_map) { in writeKeyValuePairs() argument
347 for (const auto& itr : float_map) { in writeKeyValuePairs()
/frameworks/base/cmds/statsd/tests/
DLogEvent_test.cpp103 std::map<int32_t, float> float_map; in TEST() local
114 float_map[111] = 2.2f; in TEST()
115 float_map[222] = 1.1f; in TEST()
121 float_map)); in TEST()
287 std::map<int32_t, float> float_map; in TEST() local
298 float_map[111] = 2.2f; in TEST()
299 float_map[222] = 1.1f; in TEST()
301 LogEvent event1(83, 2000, 2001, 10001, int_map, long_map, string_map, float_map); in TEST()