HomeSort by relevance Sort by last modified time
    Searched refs:Sample (Results 51 - 75 of 124) sorted by null

1 23 4 5

  /external/chromium_org/third_party/libjingle/source/talk/base/
bandwidthsmoother.cc 51 bool BandwidthSmoother::Sample(uint32 sample_time, int bandwidth) {
  /external/javassist/src/main/javassist/tools/reflect/
Sample.java 21 public class Sample {
  /external/chromium_org/chrome/test/base/
uma_histogram_helper.cc 33 base::HistogramBase::Sample sample,
42 CheckBucketCount(name, sample, expected_count, *samples);
67 base::HistogramBase::Sample sample,
70 EXPECT_EQ(expected_count, samples.GetCount(sample))
73 << ") in the expected bucket (" << sample << ")."; local
  /external/chromium/base/metrics/
histogram.cc 77 Sample minimum,
78 Sample maximum,
131 void Histogram::AddSampleSet(const SampleSet& sample) {
132 sample_.Add(sample);
244 SampleSet sample; local
254 !sample.Histogram::SampleSet::Deserialize(&iter, pickle)) {
298 render_histogram->AddSampleSet(sample);
305 // Methods for the validating a sample and a related histogram.
311 Sample previous_range = -1; // Bottom range is always 0.
331 // we'll catch a redundant count that doesn't match the sample count. W
    [all...]
  /frameworks/av/media/libmedia/
SoundPool.cpp 206 sp<Sample> sample = new Sample(++mNextSampleID, path); local
207 mSamples.add(sample->sampleID(), sample);
208 doLoad(sample);
209 return sample->sampleID();
217 sp<Sample> sample = new Sample(++mNextSampleID, fd, offset, length) local
242 sp<Sample> sample; local
652 sp<Sample> sample; local
707 sp<Sample> sample = mSample; local
    [all...]
SoundPoolThread.cpp 106 sp <Sample> sample = mSoundPool->findSample(sampleID); local
108 if (sample != 0) {
109 status = sample->doLoad();
ToneGenerator.cpp     [all...]
  /external/chromium/chrome/browser/
process_info_snapshot_mac_unittest.cc 23 // Sample process with PID 1, which should exist and presumably belong to
28 ASSERT_TRUE(snapshot.Sample(pid_list));
58 // Sample this process and its parent.
69 ASSERT_TRUE(snapshot.Sample(pid_list));
125 ASSERT_TRUE(snapshot.Sample(pid_list));
  /external/chromium_org/base/metrics/
histogram_base.cc 75 const HistogramBase::Sample HistogramBase::kSampleType_MAX = INT_MAX;
92 Add(static_cast<Sample>(time.InMilliseconds()));
146 Sample sample) const {
149 StringAppendF(&result, "%#x", sample);
151 StringAppendF(&result, "%d", sample);
sample_vector_unittest.cc 191 HistogramBase::Sample min;
192 HistogramBase::Sample max;
249 HistogramBase::Sample min;
250 HistogramBase::Sample max;
statistics_recorder_unittest.cc 36 HistogramBase::Sample min,
37 HistogramBase::Sample max,
  /external/chromium_org/chrome/browser/
process_info_snapshot_mac_unittest.cc 25 // Sample process with PID 1, which should exist and presumably belong to
30 ASSERT_TRUE(snapshot.Sample(pid_list));
60 // Sample this process and its parent.
71 ASSERT_TRUE(snapshot.Sample(pid_list));
129 ASSERT_TRUE(snapshot.Sample(pid_list));
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 22 import dalvik.system.profiler.HprofData.Sample;
181 Set<Sample> samples = hprofData.getSamples();
185 Sample sample = samples.iterator().next(); local
186 assertNotNull(sample);
187 assertEquals(stackTrace, sample.stackTrace);
188 assertEquals(sampleCount, sample.count);
191 // confirm we can mutate the sample count, but that its not
192 // visible in the current sample, but it will be visible in a
195 assertEquals(sampleCount, sample.count)
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprofWriter.java 66 Set<HprofData.Sample> samples = data.getSamples();
68 for (HprofData.Sample sample : samples) {
69 total += sample.count;
70 writeStackTrace(sample.stackTrace);
177 private void writeCpuSamples(int totalSamples, Set<HprofData.Sample> samples)
186 for (HprofData.Sample sample : samples) {
187 out.writeInt(sample.count);
188 out.writeInt(sample.stackTrace.stackTraceId)
    [all...]
  /build/tools/droiddoc/templates-ds/
sampleindex.cs 14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a> >
  /build/tools/droiddoc/templates-pdk/
sampleindex.cs 14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a> >
  /build/tools/droiddoc/templates-sac/
sampleindex.cs 14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a> >
  /external/chromium_org/chrome/browser/translate/
translate_browser_metrics_unittest.cc 78 HistogramBase::Count GetCount(HistogramBase::Sample value) {
91 HistogramBase::Count GetCountWithoutSnapshot(HistogramBase::Sample value) {
  /external/chromium_org/chrome/common/metrics/
metrics_log_base.cc 161 HistogramBase::Sample min;
162 HistogramBase::Sample max;
  /external/icu4c/samples/
defs.mk 2 # Sample code makefile definitions
  /external/chromium_org/base/win/
sampling_profiler_unittest.cc 62 TEST_F(SamplingProfilerTest, Sample) {
86 // Sample every 0.5 millisecs.
  /external/chromium_org/chrome/common/translate/
translate_common_metrics_unittest.cc 123 HistogramBase::Sample min;
124 HistogramBase::Sample max;
133 HistogramBase::Count GetCount(HistogramBase::Sample value) {
146 HistogramBase::Count GetCountWithoutSnapshot(HistogramBase::Sample value) {
  /external/chromium_org/ppapi/proxy/
gamepad_resource.cc 65 void GamepadResource::Sample(PP_Instance /* instance */,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
fakeaudiocapturemodule.cc 35 // Audio sample value that is high enough that it doesn't occur naturally when
36 // frames are being faked. E.g. NetEq will not generate this large sample value
37 // unless it has received an audio frame containing a sample of this value.
38 // Even simpler buffers would likely just contain audio sample values of 0.
612 // remote side unless a packet containing a sample of that magnitude has been
621 Sample* buffer_ptr = reinterpret_cast<Sample*>(send_buffer_);
634 const Sample* buffer_ptr = reinterpret_cast<const Sample*>(rec_buffer_);
691 // distortion due to the audio pipeline). If one sample is detected t
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
profiler.py 57 'mac': [IProfiler, Sample, GooglePProf],
176 class Sample(SingleFileOutputProfiler):
177 name = 'sample'
180 super(Sample, self).__init__(host, executable_path, output_dir, "txt", identifier)
184 cmd = ["sample", pid, "-mayDie", "-file", self._output_path]

Completed in 1449 milliseconds

1 23 4 5