Lines Matching defs:dataLevel
190 void HiViewAdapter::CopyTimeConsumingCount(int dataLevel, int timeLevel)
192 if (static_cast<int>(copyTimeConsumingStat_.size()) <= dataLevel) {
195 auto it = copyTimeConsumingStat_[dataLevel].find(timeLevel);
196 if (it != copyTimeConsumingStat_[dataLevel].end()) {
204 void HiViewAdapter::PasteTimeConsumingCount(int dataLevel, int timeLevel)
206 if (static_cast<int>(pasteTimeConsumingStat_.size()) <= dataLevel) {
209 auto it = pasteTimeConsumingStat_[dataLevel].find(timeLevel);
210 if (it != pasteTimeConsumingStat_[dataLevel].end()) {
218 void HiViewAdapter::RemotePasteTimeConsumingCount(int dataLevel, int timeLevel)
220 if (static_cast<int>(remotePasteTimeConsumingStat_.size()) <= dataLevel) {
223 auto it = remotePasteTimeConsumingStat_[dataLevel].find(timeLevel);
224 if (it != remotePasteTimeConsumingStat_[dataLevel].end()) {
287 const char *HiViewAdapter::GetDataLevel(int dataLevel)
290 switch (dataLevel) {