Lines Matching defs:data
5 #include "src/builtins/profile-data-reader.h"
31 // std::vector initializes new data to zero when resizing.
45 data;
48 if (initialized) return *data.get();
51 if (filename == nullptr) return *data.get();
73 (*data.get())[builtin_name];
74 // We allow concatenating data from several Isolates, so we might see the
89 (*data.get())[builtin_name];
90 // We allow concatenating data from several Isolates, but expect them all
98 for (const auto& pair : *data.get()) {
102 if (data.get()->size() == 0) {
109 return *data.get();
115 const auto& data = EnsureInitProfileData();
116 auto it = data.find(name);
117 return it == data.end() ? nullptr : &it->second;