Home | History | Annotate | Download | only in libpp

Lines Matching refs:samples

3  * Internal container for samples
38 return samples.begin();
44 return samples.end();
53 return samples.lower_bound(key);
62 return samples.upper_bound(key);
71 samples_storage::iterator it = samples.find(key);
72 if (it != samples.end()) {
75 samples[key] = sample;
104 samples_iterator it = samples.find(key);
105 if (it != samples.end())
137 samples_iterator cit = samples.begin();
138 samples_iterator end = samples.end();