OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:allocations_
(Results
1 - 1
of
1
) sorted by null
/external/protobuf/src/google/protobuf/
descriptor.cc
400
vector<void*>
allocations_
; // All other memory allocated in the pool.
member in class:google::protobuf::DescriptorPool::Tables
488
// messages may refer to objects in
allocations_
.
490
for (int i = 0; i <
allocations_
.size(); i++) {
491
operator delete(
allocations_
[i]);
506
allocations_before_checkpoint_ =
allocations_
.size();
534
for (int i = allocations_before_checkpoint_; i <
allocations_
.size(); i++) {
535
operator delete(
allocations_
[i]);
541
allocations_
.resize(allocations_before_checkpoint_);
742
allocations_
.push_back(result);
[
all
...]
Completed in 559 milliseconds