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

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
PendingAttribute.java 28 public PendingAttribute(final int frequency, final int address) {
29 mFrequency = frequency;
PtNodeInfo.java 39 final int[] characters, final int frequency, final int parentAddress,
46 mFrequency = frequency;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnWord.java 32 public int frequency; field in class:WnnWord
60 * @param frequency The score of word
62 public WnnWord(String candidate, String stroke, int frequency) {
63 this(0, candidate, stroke, new WnnPOS(), frequency, 0);
83 * @param frequency The score of word
85 public WnnWord(String candidate, String stroke, WnnPOS posTag, int frequency) {
86 this(0, candidate, stroke, posTag, frequency, 0);
96 * @param frequency The score of word
98 public WnnWord(int id, String candidate, String stroke, WnnPOS posTag, int frequency) {
99 this(id, candidate, stroke, posTag, frequency, 0)
    [all...]
WnnClause.java 32 * @param frequency The frequency of the clause
34 public WnnClause(String candidate, String stroke, WnnPOS posTag, int frequency) {
38 frequency);
52 stem.frequency,
68 stem.frequency,
WnnSentence.java 43 this.frequency = 0;
54 this.frequency = headClause.frequency;
69 this.frequency = headClause.frequency;
86 this.frequency = clause.frequency;
104 this.frequency = prev.frequency + clause.frequency;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/sun/
SDL_sunaudio.h 42 int frequency; /* The audio frequency in KHz */ member in struct:SDL_PrivateAudioData
53 #define frequency (this->hidden->frequency) macro
  /external/chromium_org/third_party/WebKit/Source/core/platform/audio/
Biquad.h 54 // frequency is 0 - 1 normalized, resonance and dbGain are in decibels.
56 void setLowpassParams(double frequency, double resonance);
57 void setHighpassParams(double frequency, double resonance);
58 void setBandpassParams(double frequency, double Q);
59 void setLowShelfParams(double frequency, double dbGain);
60 void setHighShelfParams(double frequency, double dbGain);
61 void setPeakingParams(double frequency, double Q, double dbGain);
62 void setAllpassParams(double frequency, double Q);
63 void setNotchParams(double frequency, double Q);
80 const float* frequency,
    [all...]
Biquad.cpp 305 void Biquad::setLowShelfParams(double frequency, double dbGain)
308 frequency = std::max(0.0, std::min(frequency, 1.0));
312 if (frequency == 1) {
316 } else if (frequency > 0) {
317 double w0 = piDouble * frequency;
334 // When frequency is 0, the z-transform is 1.
340 void Biquad::setHighShelfParams(double frequency, double dbGain)
343 frequency = std::max(0.0, std::min(frequency, 1.0))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_time.c 60 static LARGE_INTEGER frequency;
62 if(!frequency.QuadPart)
63 QueryPerformanceFrequency(&frequency);
65 return counter.QuadPart*INT64_C(1000000)/frequency.QuadPart;
  /external/mesa3d/src/gallium/auxiliary/os/
os_time.c 60 static LARGE_INTEGER frequency;
62 if(!frequency.QuadPart)
63 QueryPerformanceFrequency(&frequency);
65 return counter.QuadPart*INT64_C(1000000)/frequency.QuadPart;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
options.js 12 options.frequency.disabled = isDeactivated; // The control manipulability.
19 options.frequency.value = localStorage.frequency;
20 // The display frequency, in minutes.
24 // Set the display activation and frequency.
30 options.frequency.onchange = function() {
31 localStorage.frequency = options.frequency.value;
background.js 25 localStorage.frequency = 1; // The display frequency, in minutes.
31 // While activated, show notifications at the display frequency.
41 localStorage.frequency <= interval
  /frameworks/base/core/java/android/provider/
UserDictionary.java 30 * frequency information and locale information.
75 * The frequency column. A value between 1 and 255. Higher values imply higher frequency.
78 public static final String FREQUENCY = "frequency";
112 * Sort by descending order of frequency.
114 public static final String DEFAULT_SORT_ORDER = FREQUENCY + " DESC";
116 /** Adds a word to the dictionary, with the given frequency and the specified
130 int frequency, int localeType) {
144 addWord(context, word, frequency, null, locale)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SimpleAbstractMultisetTest.java 72 Integer frequency = backingMap.get(element); local
73 if (frequency == null) {
74 frequency = 0;
77 return frequency;
79 checkArgument(occurrences <= Integer.MAX_VALUE - frequency);
80 backingMap.put(element, frequency + occurrences);
81 return frequency;
104 Integer frequency = backingMap.get(getElement()); local
105 return (frequency == null) ? 0 : frequency;
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/fractal/
FractalSum.java 56 private float frequency; field in class:FractalSum
65 this.frequency = 1f;
73 for (float f = this.frequency, a = this.amplitude; f < this.maxFreq; f *= this.lacunarity, a *= this.roughness) {
98 return this.frequency;
102 public Fractal setFrequency(final float frequency) {
103 this.frequency = frequency;
Fractal.java 47 public Fractal setFrequency(final float frequency);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
profiledata.h 91 // Get and set the sample frequency.
92 int frequency() const { function in class:ProfileData::Options
95 void set_frequency(int frequency) {
96 frequency_ = frequency;
100 int frequency_; // Sample frequency.
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profiledata.h 91 // Get and set the sample frequency.
92 int frequency() const { function in class:ProfileData::Options
95 void set_frequency(int frequency) {
96 frequency_ = frequency;
100 int frequency_; // Sample frequency.
  /frameworks/base/wifi/java/android/net/wifi/
ScanResult.java 48 * The frequency in MHz of the channel over which the client is communicating
51 public int frequency; field in class:ScanResult
79 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency,
86 this.frequency = frequency;
93 public ScanResult(WifiSsid wifiSsid, String BSSID, String caps, int level, int frequency,
100 this.frequency = frequency;
114 frequency = source.frequency;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 115 Count frequency = backingMap.get(getElement()); local
116 if (frequency != null) {
117 count = frequency.get();
138 for (Count frequency : backingMap.values()) {
139 frequency.set(0);
195 int frequency = currentEntry.getValue().get();
196 if (frequency <= 0) {
209 Count frequency = backingMap.get(element);
210 return (frequency == null) ? 0 : frequency.get()
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultiset.java 112 Count frequency = backingMap.get(getElement()); local
113 if (frequency != null) {
114 count = frequency.get();
135 for (Count frequency : backingMap.values()) {
136 frequency.set(0);
192 int frequency = currentEntry.getValue().get();
193 if (frequency <= 0) {
206 Count frequency = backingMap.get(element);
207 return (frequency == null) ? 0 : frequency.get()
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowScanResult.java 14 public static ScanResult newInstance(String SSID, String BSSID, String caps, int level, int frequency) {
20 scanResult.frequency = frequency;
31 .append(", frequency: ").append(realObject.frequency)
  /external/chromium_org/native_client_sdk/src/examples/api/audio/
audio.cc 43 // parameter, the frequency. The frequency parameter is encoded as a string
52 // Set the frequency of the sine wave to |frequency|. Posts a message back
53 // to the browser with the new frequency value.
54 void SetFrequency(double frequency);
56 // The frequency property accessor.
57 double frequency() const { return frequency_; } function in class:AudioInstance
64 const double frequency = instance->frequency(); local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_group_add.py 17 print " [-f <frequency>] [-o <group_object_path>] \ "
22 print " -f = frequency"
51 global frequency
64 def __init__(self,interface_name,wpas_dbus_interface,persistent,frequency,
70 self.frequency = frequency
126 if (self.frequency != None):
127 if (int(self.frequency) > 0):
128 self.P2PDictionary.update({'frequency':int(self.frequency)})
160 frequency = None variable
    [all...]
  /frameworks/wilhelm/src/itf/
IVibra.c 55 static SLresult IVibra_SetFrequency(SLVibraItf self, SLmilliHertz frequency)
62 } else if (!(d->minFrequency <= frequency && frequency <= d->maxFrequency)) {
67 thiz->mFrequency = frequency;
85 SLmilliHertz frequency = thiz->mFrequency; local
87 *pFrequency = frequency;

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 91011>>