HomeSort by relevance Sort by last modified time
    Searched refs:stepSize (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
probability_utils.h 44 const float stepSize = static_cast<float>(MAX_PROBABILITY - unigramProbability)
47 + static_cast<int>(static_cast<float>(bigramProbability + 1) * stepSize);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRatingBar.java 24 final float stepSize = attributeSet.getAttributeFloatValue("android", "stepSize", -1);
30 if (stepSize >= 0) {
31 setStepSize(stepSize);
77 public void setStepSize(float stepSize) {
78 if (stepSize <= 0) {
82 final float newMax = mNumStars / stepSize;
  /frameworks/base/core/java/android/widget/
RatingBar.java 97 final float stepSize = a.getFloat(R.styleable.RatingBar_stepSize, -1);
104 if (stepSize >= 0) {
105 setStepSize(stepSize);
213 * @param stepSize The step size of this rating bar. For example, if
216 public void setStepSize(float stepSize) {
217 if (stepSize <= 0) {
221 final float newMax = mNumStars / stepSize;
  /external/chromium_org/third_party/webrtc/modules/audio_device/linux/
audio_mixer_manager_alsa_linux.h 33 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const;
49 int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const;
audio_mixer_manager_pulse_linux.h 40 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const;
58 int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const;
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.h 31 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const;
49 int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const;
  /external/sonivox/arm-fm-22k/lib_src/
eas_imaadpcm.c 228 EAS_INT stepSize;
230 /* get stepsize from table */
231 stepSize = imaStepSizeTable[pState->step];
236 delta += stepSize;
240 delta += stepSize >> 1;
244 delta += stepSize >> 2;
247 delta += stepSize >> 3;
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_imaadpcm.c 228 EAS_INT stepSize;
230 /* get stepsize from table */
231 stepSize = imaStepSizeTable[pState->step];
236 delta += stepSize;
240 delta += stepSize >> 1;
244 delta += stepSize >> 2;
247 delta += stepSize >> 3;
  /external/sonivox/arm-wt-22k/lib_src/
eas_imaadpcm.c 228 EAS_INT stepSize;
230 /* get stepsize from table */
231 stepSize = imaStepSizeTable[pState->step];
236 delta += stepSize;
240 delta += stepSize >> 1;
244 delta += stepSize >> 2;
247 delta += stepSize >> 3;
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java 400 int stepSize = HOUR_VALUE_TO_DEGREES_STEP_SIZE;
401 int floor = (degrees / stepSize) * stepSize;
402 int ceiling = floor + stepSize;
407 floor -= stepSize;
440 int stepSize;
451 stepSize = HOUR_VALUE_TO_DEGREES_STEP_SIZE;
454 stepSize = MINUTE_VALUE_TO_DEGREES_STEP_SIZE;
474 int value = degrees / stepSize;
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_data_series.js 76 * points, starting at |startTime|, and |stepSize| milliseconds apart.
80 getValues: function(startTime, stepSize, count) {
83 this.cacheStepSize_ == stepSize &&
89 this.cacheValues_ = this.getValuesInternal_(startTime, stepSize, count);
91 this.cacheStepSize_ = stepSize;
105 getValuesInternal_: function(startTime, stepSize, count) {
117 time += stepSize;
269 getValuesInternal_: function(startTime, stepSize, count) {
270 // Find the first DataPoint after |startTime| - |stepSize|.
273 this.dataPoints_[nextPoint].time < startTime - stepSize) {
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
audio_device_template.h 219 uint16_t& stepSize) const { // NOLINT
220 return output_.SpeakerVolumeStepSize(stepSize);
248 uint16_t& stepSize) const { // NOLINT
249 return input_.MicrophoneVolumeStepSize(stepSize);
audio_record_jni.h 82 uint16_t& stepSize) const; // NOLINT
audio_track_jni.h 74 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const; // NOLINT
opensles_input.h 93 uint16_t& stepSize) const; // NOLINT
opensles_output.h 86 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const; // NOLINT
  /external/chromium_org/third_party/webrtc/modules/audio_device/
audio_device_generic.h 91 uint16_t& stepSize) const = 0;
102 uint16_t& stepSize) const = 0;
  /external/chromium_org/third_party/webrtc/modules/audio_device/dummy/
audio_device_dummy.cc 118 int32_t AudioDeviceDummy::SpeakerVolumeStepSize(uint16_t& stepSize) const {
140 int32_t AudioDeviceDummy::MicrophoneVolumeStepSize(uint16_t& stepSize) const {
audio_device_dummy.h 90 virtual int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const OVERRIDE;
98 virtual int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const OVERRIDE;
  /external/chromium_org/third_party/webrtc/modules/audio_device/include/
audio_device.h 121 virtual int32_t SpeakerVolumeStepSize(uint16_t* stepSize) const = 0;
129 virtual int32_t MicrophoneVolumeStepSize(uint16_t* stepSize) const = 0;
fake_audio_device.h 84 virtual int32_t SpeakerVolumeStepSize(uint16_t* stepSize) const { return 0; }
90 virtual int32_t MicrophoneVolumeStepSize(uint16_t* stepSize) const {
  /external/chromium_org/third_party/webrtc/modules/audio_device/win/
audio_mixer_manager_win.h 60 int32_t SpeakerVolumeStepSize(uint16_t& stepSize) const;
76 int32_t MicrophoneVolumeStepSize(uint16_t& stepSize) const;
  /frameworks/wilhelm/src/itf/
IPlaybackRate.c 166 SLpermille stepSize = thiz->mStepSize;
170 *pStepSize = stepSize;
  /external/aac/libSBRenc/src/
ton_corr.h 119 INT stepSize; /*!< Stride for the lpc estimate. */
  /external/chromium_org/third_party/webrtc/modules/audio_device/test/
audio_device_test_api.cc 905 uint16_t stepSize(0);
    [all...]

Completed in 735 milliseconds

1 2 3 4