HomeSort by relevance Sort by last modified time
    Searched refs:ResultSP (Results 1 - 6 of 6) sorted by null

  /external/lldb/tools/lldb-perf/lib/
Gauge.h 51 Results::ResultSP GetResult (const char *description, T value);
54 Results::ResultSP GetResult (const char *description, double value);
57 Results::ResultSP GetResult (const char *description, uint64_t value);
60 Results::ResultSP GetResult (const char *description, std::string value);
Gauge.cpp 14 lldb_perf::Results::ResultSP
22 return Results::ResultSP (value_dict_ap.release());
24 return Results::ResultSP (new Results::Double (NULL, NULL, value));
28 lldb_perf::Results::ResultSP
36 return Results::ResultSP (value_dict_ap.release());
38 return Results::ResultSP (new Results::Unsigned (NULL, NULL, value));
42 lldb_perf::Results::ResultSP
50 return Results::ResultSP (value_dict_ap.release());
52 return Results::ResultSP (new Results::String (NULL, NULL, value.c_str()));
Results.h 126 typedef std::shared_ptr<Result> ResultSP;
141 ResultSP
142 Append (const ResultSP &result_sp);
145 ForEach (const std::function <bool (const ResultSP &)> &callback);
152 typedef std::vector<ResultSP> collection;
180 ForEach (const std::function <bool (const std::string &, const ResultSP &)> &callback);
182 ResultSP
183 Add (const char *name, const char *description, const ResultSP &result_sp);
185 ResultSP
188 ResultSP
    [all...]
Results.cpp 40 value->ForEach([&array](const Results::ResultSP &value_sp) -> bool
53 value->ForEach([&dict](const std::string &key, const Results::ResultSP &value_sp) -> bool
112 value->ForEach([&array](const Results::ResultSP &value_sp) -> bool
124 value->ForEach([&dict](const std::string &key, const Results::ResultSP &value_sp) -> bool
163 m_results.ForEach([&dict](const std::string &key, const ResultSP &value_sp) -> bool
179 Results::ResultSP
188 m_dictionary[std::string(name)] = ResultSP (value_dict_ap.release());
191 m_dictionary[std::string(name)] = ResultSP (new Unsigned (name, description, value));
195 Results::ResultSP
205 m_dictionary[std::string(name)] = ResultSP (value_dict_ap.release())
    [all...]
MemoryGauge.h 82 Results::ResultSP
139 Results::ResultSP
MemoryGauge.cpp 92 Results::ResultSP
98 return Results::ResultSP(dict_ap.release());
147 Results::ResultSP

Completed in 59 milliseconds