Searched defs:frequency (Results 1 - 4 of 4) sorted by relevance
/frameworks/base/wifi/java/android/net/wifi/ |
H A D | ScanResult.java | 44 * The frequency in MHz of the channel over which the client is communicating 47 public int frequency; field in class:ScanResult 56 public ScanResult(String SSID, String BSSID, String caps, int level, int frequency) { argument 61 this.frequency = frequency; 78 append(", frequency: "). 79 append(frequency); 95 dest.writeInt(frequency);
|
/frameworks/base/core/java/android/provider/ |
H A D | UserDictionary.java | 30 * frequency information and locale information. 72 * The frequency column. A value between 1 and 255. Higher values imply higher frequency. 75 public static final String FREQUENCY = "frequency"; 97 * Sort by descending order of frequency. 101 /** Adds a word to the dictionary, with the given frequency and the specified 110 int frequency, int localeType) { 117 if (frequency < 0) frequency = 0; 118 if (frequency > 25 109 addWord(Context context, String word, int frequency, int localeType) argument [all...] |
/frameworks/base/media/java/android/media/audiofx/ |
H A D | Equalizer.java | 33 * An Equalizer is used to alter the frequency response of a particular music source or of the main 37 * precise control of the gain in each frequency band controlled by the equalizer. 68 * Band center frequency. Parameter ID for OnParameterChangeListener 72 * Band frequency range. Parameter ID for 77 * Band for a given frequency. Parameter ID for OnParameterChangeListener 176 * Gets the number of frequency bands supported by the Equalizer engine. 213 * @param band frequency band that will have the new gain. The numbering of the bands starts 235 * @param band frequency band whose gain is requested. The numbering of the bands starts 256 * Gets the center frequency of the given band. 257 * @param band frequency ban 305 getBand(int frequency) argument [all...] |
/frameworks/base/media/libmedia/ |
H A D | ToneGenerator.cpp | 1348 unsigned int frequency = mpToneDesc->segments[segmentIdx].waveFreq[freqIdx]; local 1349 while (frequency) { 1350 // Instantiate a wave generator if ot already done for this frequency 1351 if (mWaveGens.indexOfKey(frequency) == NAME_NOT_FOUND) { 1354 frequency, 1359 mWaveGens.add(frequency, lpWaveGen); 1361 frequency = mpNewToneDesc->segments[segmentIdx].waveFreq[++freqIdx]; 1479 // frequency: Frequency of the sine wave to generate in Hz 1487 unsigned short frequency, float volume) { 1489 double F_div_Fs; // frequency / samplingRat 1486 WaveGenerator(unsigned short samplingRate, unsigned short frequency, float volume) argument [all...] |
Completed in 94 milliseconds