Home
last modified time | relevance | path

Searched refs:locations_ (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/handles/
Dglobal-handles.h349 : locations_(StrongRootBlockAllocator(heap)) {} in GlobalHandleVector()
351 Handle<T> operator[](size_t i) { return Handle<T>(&locations_[i]); }
353 size_t size() const { return locations_.size(); } in size()
354 bool empty() const { return locations_.empty(); } in empty()
356 void Push(T val) { locations_.push_back(val.ptr()); } in Push()
360 T obj = T::cast(Object(locations_.back())); in Pop()
361 locations_.pop_back(); in Pop()
365 Iterator begin() { return Iterator(locations_.begin()); } in begin()
366 Iterator end() { return Iterator(locations_.end()); } in end()
369 std::vector<Address, StrongRootBlockAllocator> locations_;
/external/bcc/src/cc/usdt/
Dusdt.cc150 for (Location &location : locations_) { in largest_arg_type()
169 const size_t arg_count = locations_[0].arguments_.size(); in usdt_getarg()
184 if (locations_.size() == 1) { in usdt_getarg()
185 Location &location = locations_.front(); in usdt_getarg()
193 for (Location &location : locations_) { in usdt_getarg()
215 locations_.emplace_back(addr, bin_path, fmt); in add_location()
219 std::sort(locations_.begin(), locations_.end(), in finalize_locations()
223 auto last = std::unique(locations_.begin(), locations_.end(), in finalize_locations()
227 locations_.erase(last, locations_.end()); in finalize_locations()
338 for (Location &loc : p->locations_) { in each_uprobe()
/external/v8/src/parsing/
Dexpression-scope.h608 locations_[index] = Scanner::Location::invalid(); in clear()
610 bool is_valid(int index) const { return !locations_[index].IsValid(); } in is_valid()
616 locations_[index] = loc; in Record()
624 ExpressionScopeT::Report(locations_[index], messages_[index]); in Report()
644 Scanner::Location locations_[kNumberOfErrors]; variable
682 if (!locations_[i].IsValid()) copy(i); in Accumulate()
714 locations_[entry] = scope_->locations_[entry]; in copy()
718 if (!locations_[entry].IsValid()) return; in copy_back()
720 scope_->locations_[entry] = locations_[entry]; in copy_back()
725 Scanner::Location locations_[2]; variable
/external/perfetto/tools/protoprofile/
Dmain.cc121 std::map<std::string, int> locations_; member in perfetto::protoprofile::__anon4f3817010111::SizeProfileComputer
151 if (locations_.count(s)) { in InternLocation()
152 return locations_[s]; in InternLocation()
154 int id = static_cast<int>(locations_.size()) + 1; in InternLocation()
155 locations_[s] = id; in InternLocation()
243 for (const auto& location_id : locations_) { in Compute()
250 for (const auto& location_id : locations_) { in Compute()
/external/bcc/src/cc/
Dusdt.h189 std::vector<Location> locations_; variable
210 size_t num_locations() const { return locations_.size(); } in num_locations()
211 size_t num_arguments() const { return locations_.front().arguments_.size(); } in num_arguments()
214 uint64_t address(size_t n = 0) const { return locations_[n].address_; }
215 const char *location_bin_path(size_t n = 0) const { return locations_[n].bin_path_.c_str(); }
216 const Location &location(size_t n) const { return locations_[n]; } in location()
/external/bcc/src/cc/includes/
Dusdt.h189 std::vector<Location> locations_; variable
210 size_t num_locations() const { return locations_.size(); } in num_locations()
211 size_t num_arguments() const { return locations_.front().arguments_.size(); } in num_arguments()
214 uint64_t address(size_t n = 0) const { return locations_[n].address_; }
215 const char *location_bin_path(size_t n = 0) const { return locations_[n].bin_path_.c_str(); }
216 const Location &location(size_t n) const { return locations_[n]; } in location()
/external/bcc/src/cc/api/
DBPF.cc238 for (const auto& loc : probe.locations_) { in attach_usdt()
253 detach_uprobe(probe.locations_[i].bin_path_, std::string(), in attach_usdt()
254 probe.locations_[i].address_, BPF_PROBE_ENTRY, pid); in attach_usdt()
420 for (const auto& loc : probe.locations_) { in detach_usdt()
/external/v8/src/profiler/
Dheap-snapshot-generator.h204 const std::vector<SourceLocation>& locations() const { return locations_; } in locations()
242 std::vector<SourceLocation> locations_; variable
Dheap-snapshot-generator.cc245 locations_.emplace_back(entry->index(), scriptId, line, col); in AddLocation()
/external/protobuf/src/google/protobuf/
Dtext_format.h502 LocationMap locations_; variable
Dtext_format.cc142 locations_[field].push_back(location); in RecordLocation()
177 FindOrNull(locations_, field); in GetLocation()