Searched defs:rate (Results 1 - 8 of 8) sorted by relevance

/openjdk7/langtools/test/com/sun/javadoc/testJavaFX/
H A DC.java61 private DoubleProperty rate; field in class:C
95 private DoubleProperty rate; field in class:C.Inner
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCaret.java148 * Sets the blink rate of the caret. This determines if
152 * @param rate the delay in milliseconds >= 0. If this is
155 public void setBlinkRate(int rate); argument
158 * Gets the blink rate of the caret. This determines if
H A DDefaultCaret.java43 * of the associated JTextComponent. It can blink at the rate specified
989 * Sets the caret blink rate.
991 * @param rate the rate in milliseconds, 0 to stop blinking
994 public void setBlinkRate(int rate) { argument
995 if (rate != 0) {
997 flasher = new Timer(rate, handler);
999 flasher.setDelay(rate);
1010 * Gets the caret blink rate.
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DallocationStats.hpp44 // previous sweep gives us a time rate of demand for blocks
45 // of this size. We compute a padded average of this rate as
46 // our current estimate for the time rate of demand for blocks
88 // The rate estimate is in blocks per second.
117 float rate = ((float)demand)/inter_sweep_current; local
118 _demand_rate_estimate.sample(rate);
125 demand, old_rate, rate, new_rate, old_desired, _desired);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftChorus.java138 public void setRate(double rate) { argument
139 double g = (Math.PI * 2) * (rate / controlrate);
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_PCM.c131 int rate, bitIndex; local
177 // plughw: supports any sample rate
178 rate = -1;
204 -1, -1, rate,
208 minChannels, rate,
212 maxChannels, rate,
218 channels, rate,
337 /* set the stream rate */
H A DPLATFORM_API_LinuxOS_ALSA_PCM.c131 int rate, bitIndex; local
177 // plughw: supports any sample rate
178 rate = -1;
204 -1, -1, rate,
208 minChannels, rate,
212 maxChannels, rate,
218 channels, rate,
337 /* set the stream rate */
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodOop.hpp89 // | rate (tiered) |
136 jlong _prev_time; // Previous time the rate was acquired
330 float rate() const { return _rate; } function in class:methodOopDesc
331 void set_rate(float rate) { _rate = rate; } argument

Completed in 55 milliseconds