HomeSort by relevance Sort by last modified time
    Searched refs:Sample (Results 26 - 50 of 142) sorted by null

12 3 4 5 6

  /external/javassist/src/main/javassist/tools/rmi/
Sample.java 23 public class Sample {
  /developers/build/prebuilts/gradle/DoneBar/Application/src/main/java/com/example/android/donebar/
MainActivity.java 35 private Sample[] mSamples;
43 mSamples = new Sample[]{
44 new Sample(R.string.donebaractivity_title, R.string.donebaractivity_description,
46 new Sample(R.string.donebuttonactivity_title, R.string.donebuttonactivity_description,
92 private class Sample {
97 private Sample(int titleResId, int descriptionResId, Intent intent) {
103 private Sample(int titleResId, int descriptionResId,
  /development/samples/browseable/DoneBar/src/com.example.android.donebar/
MainActivity.java 35 private Sample[] mSamples;
43 mSamples = new Sample[]{
44 new Sample(R.string.donebaractivity_title, R.string.donebaractivity_description,
46 new Sample(R.string.donebuttonactivity_title, R.string.donebuttonactivity_description,
92 private class Sample {
97 private Sample(int titleResId, int descriptionResId, Intent intent) {
103 private Sample(int titleResId, int descriptionResId,
  /external/chromium_org/base/metrics/
sparse_histogram.cc 19 typedef HistogramBase::Sample Sample;
43 Sample expected_minimum,
44 Sample expected_maximum,
50 void SparseHistogram::Add(Sample value) {
127 // Determine which bucket has the largest sample count so that we can
128 // normalize the graphical bar-width relative to that sample count.
130 Sample largest_sample = 0;
134 Sample min;
135 Sample max
    [all...]
sample_vector.cc 15 typedef HistogramBase::Sample Sample;
25 void SampleVector::Accumulate(Sample value, Count count) {
33 Count SampleVector::GetCount(Sample value) const {
58 HistogramBase::Sample min;
59 HistogramBase::Sample max;
68 // Sample matches this bucket!
75 // Sample is larger than current bucket range. Try next.
78 // Sample is smaller than current bucket range. We scan buckets from
79 // smallest to largest, so the sample value must be invalid
    [all...]
histogram_base.h 54 typedef int32_t Sample; // Used for samples.
58 static const Sample kSampleType_MAX; // INT_MAX
113 virtual bool HasConstructionArguments(Sample expected_minimum,
114 Sample expected_maximum,
117 virtual void Add(Sample value) = 0;
119 // 2 convenient functions that call Add(Sample).
135 // Snapshot the current complete set of sample data.
155 // Writes information about the current (non-empty) buckets and their sample
156 // counts to |buckets|, the total sample count to |count| and the total sum
168 const std::string GetSimpleAsciiBucketRange(Sample sample) const
    [all...]
histogram_samples.cc 20 virtual void Get(HistogramBase::Sample* min,
21 HistogramBase::Sample* max,
26 HistogramBase::Sample min_;
27 HistogramBase::Sample max_;
50 void SampleCountPickleIterator::Get(HistogramBase::Sample* min,
51 HistogramBase::Sample* max,
106 HistogramBase::Sample min;
107 HistogramBase::Sample max;
sparse_histogram.h 22 #define UMA_HISTOGRAM_SPARSE_SLOWLY(name, sample) \
26 histogram->Add(sample); \
42 Sample expected_minimum,
43 Sample expected_maximum,
45 virtual void Add(Sample value) OVERRIDE;
histogram.cc 82 typedef HistogramBase::Sample Sample;
88 Sample minimum,
89 Sample maximum,
145 void Histogram::InitializeBucketRanges(Sample minimum,
146 Sample maximum,
152 Sample current = minimum;
162 Sample next;
179 Sample previous_range = -1; // Bottom range is always 0.
209 Sample Histogram::ranges(size_t i) const
817 Sample sample = custom_ranges[i]; local
    [all...]
bucket_ranges.cc 66 // need is a nice hash, that tends to depend on all the bits of the sample, with
69 static uint32 Crc32(uint32 sum, HistogramBase::Sample value) {
75 HistogramBase::Sample range;
76 unsigned char bytes[sizeof(HistogramBase::Sample)];
86 HistogramBase::Sample range;
87 uint16 ints[sizeof(HistogramBase::Sample) / 2];
89 DCHECK_EQ(sizeof(HistogramBase::Sample), sizeof(converter));
104 void BucketRanges::set_range(size_t i, HistogramBase::Sample value) {
histogram_base.cc 61 const HistogramBase::Sample HistogramBase::kSampleType_MAX = INT_MAX;
82 Add(static_cast<Sample>(time.InMilliseconds()));
136 Sample sample) const {
139 StringAppendF(&result, "%#x", sample);
141 StringAppendF(&result, "%d", sample);
sample_map_unittest.cc 66 HistogramBase::Sample min;
67 HistogramBase::Sample max;
107 HistogramBase::Sample min;
108 HistogramBase::Sample max;
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
SimpleTimeLimiterTest.java 121 Sample proxy = service.newProxy(
122 target, Sample.class, ENOUGH_MS, TimeUnit.MILLISECONDS);
131 Sample proxy = service.newProxy(
132 target, Sample.class, NOT_ENOUGH_MS, TimeUnit.MILLISECONDS);
149 Sample proxy = service.newProxy(
150 target, Sample.class, ENOUGH_MS, TimeUnit.MILLISECONDS);
162 Sample proxy = service.newProxy(
163 target, Sample.class, NOT_ENOUGH_MS, TimeUnit.MILLISECONDS);
180 public interface Sample {
188 public static class SampleImpl implements Sample {
    [all...]
  /developers/build/prebuilts/gradle/NavigationDrawer/Application/src/main/java/com/example/android/navigationdrawer/
MainActivity.java 35 private Sample[] mSamples;
43 mSamples = new Sample[]{
44 new Sample(R.string.navigationdraweractivity_title, R.string.navigationdraweractivity_description,
90 private class Sample {
95 private Sample(int titleResId, int descriptionResId, Intent intent) {
101 private Sample(int titleResId, int descriptionResId,
  /development/samples/browseable/NavigationDrawer/src/com.example.android.navigationdrawer/
MainActivity.java 35 private Sample[] mSamples;
43 mSamples = new Sample[]{
44 new Sample(R.string.navigationdraweractivity_title, R.string.navigationdraweractivity_description,
90 private class Sample {
95 private Sample(int titleResId, int descriptionResId, Intent intent) {
101 private Sample(int titleResId, int descriptionResId,
  /external/chromium_org/ppapi/c/
ppb_gamepad.h 103 void (*Sample)(PP_Instance instance, struct PP_GamepadsSampleData* data);
  /external/chromium_org/ppapi/proxy/
gamepad_resource.h 42 virtual void Sample(PP_Instance instance,
  /frameworks/av/include/media/
SoundPool.h 52 class Sample : public RefBase {
55 Sample(int sampleID, const char* url);
56 Sample(int sampleID, int fd, int64_t offset, int64_t length);
57 ~Sample();
99 void set(const sp<Sample>& sample, int channelID, float leftVolume,
101 sp<Sample> sample() { return mSample; } function in class:android::SoundEvent
111 sp<Sample> mSample;
128 void play(const sp<Sample>& sample, int channelID, float leftVolume, float rightVolume
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java 202 public static final class Sample {
207 private Sample(StackTrace stackTrace, int count) {
226 if (!(o instanceof Sample)) {
229 Sample s = (Sample) o;
234 return "Sample[count=" + count + " " + stackTrace + "]";
266 * Map of stack traces to a mutable sample count. The map is
268 * mutable access to the int[] cells that contain the sample
331 * Return a new set containing the current sample data.
333 public Set<Sample> getSamples()
339 Sample sample = new Sample(stackTrace, count); local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 122 struct Sample
142 void analyzeResults (const std::vector<Sample>& samples, const CalibrationParams& calibrationParams);
211 tcu::TestLog& operator<< (tcu::TestLog& log, const FlushFinishCase::Sample& sample)
213 log << TestLog::Message << sample.numDrawCalls << " calls:\t" << sample.waitTime << " us wait,\t" << sample.readPixelsTime << " us read" << TestLog::EndMessage;
329 bool operator() (const FlushFinishCase::Sample& a, const FlushFinishCase::Sample& b) const { return a.numDrawCalls < b.numDrawCalls; }
332 std::vector<Vec2> getPointsFromSamples (const std::vector<FlushFinishCase::Sample>& samples, const deUint64 FlushFinishCase::Sample::*field
    [all...]
  /external/chromium_org/ppapi/api/
ppb_gamepad.idl 94 void Sample(
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11blit.hlsl 52 return tex.Sample(samp, input.texcoord);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11blit.hlsl 52 return tex.Sample(samp, input.texcoord);
  /external/chromium_org/ui/events/gesture_detection/
velocity_tracker_unittest.cc 49 static MockMotionEvent Sample(MotionEvent::Action action,
68 state->AddMovement(Sample(MotionEvent::ACTION_DOWN, p0, t0, v, dt * 0));
70 state->AddMovement(Sample(MotionEvent::ACTION_UP, p0, t0, v, t));
84 state->AddMovement(Sample(MotionEvent::ACTION_MOVE, p0, t0, v, dt * i));
104 // Sample a constant velocity sequence.
159 Sample(MotionEvent::ACTION_DOWN, p0, t0, vFast, base::TimeDelta()));
202 Sample(MotionEvent::ACTION_DOWN, p0, t0, v, base::TimeDelta()));
213 state.AddMovement(Sample(
  /external/chromium_org/chrome/browser/
process_info_snapshot.h 18 // |Sample()| method is called. This information can then be probed by PID.
19 // |Sample()| may take a while to complete, so if calling from the browser
31 // |Sample()| below.
39 bool Sample(std::vector<base::ProcessId> pid_list);

Completed in 566 milliseconds

12 3 4 5 6