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

1 2 3 4 5 6 7

  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
PendingAttribute.java 28 public PendingAttribute(final int frequency, final int address) {
29 mFrequency = frequency;
CharGroupInfo.java 35 final int[] characters, final int frequency, final int childrenAddress,
41 mFrequency = frequency;
Word.java 24 * Utility class for a word with a frequency.
33 public Word(String word, int frequency, ArrayList<WeightedString> bigrams) {
35 mFrequency = frequency;
42 * A Word x is greater than a word y if x has a higher frequency. If they have the same
43 * frequency, they are sorted in lexicographic order.
55 * Words are equal if they have the same frequency, the same spellings, and the same
FusionDictionary.java 57 * A string with a frequency.
64 public WeightedString(String word, int frequency) {
66 mFrequency = frequency;
71 * A group of characters, with a frequency, shortcuts, bigrams, and children.
78 * in the frequency, where NOT_A_TERMINAL (= -1) means this is not a terminal and any other
79 * value is the frequency of this terminal. A terminal may have non-null shortcuts and/or
93 final ArrayList<WeightedString> bigrams, final int frequency) {
95 mFrequency = frequency;
101 final ArrayList<WeightedString> bigrams, final int frequency, final Node children) {
103 mFrequency = frequency;
179 add(getCodePoints(word), frequency, bigrams); local
    [all...]
  /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.12/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
  /frameworks/base/core/java/android/provider/
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.
99 public static final String DEFAULT_SORT_ORDER = FREQUENCY + " DESC";
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
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
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) {
61 this.frequency = frequency;
78 append(", frequency: ").
79 append(frequency);
95 dest.writeInt(frequency);
  /external/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 117 AtomicInteger frequency = backingMap.get(getElement()); local
118 if (frequency != null) {
119 count = frequency.get();
144 for (AtomicInteger frequency : backingMap.values()) {
145 frequency.set(0);
163 AtomicInteger frequency = backingMap.remove(entry.getElement());
164 int numberRemoved = frequency.getAndSet(0);
214 int frequency = currentEntry.getValue().get();
215 if (frequency <= 0) {
227 AtomicInteger frequency = backingMap.get(element)
    [all...]
  /external/bluetooth/bluez/audio/
a2dp-codecs.h 74 uint8_t frequency:4; member in struct:__anon1517
86 uint8_t frequency:6; member in struct:__anon1518
95 uint8_t frequency:4; member in struct:__anon1519
110 uint8_t frequency:6; member in struct:__anon1520
a2dp.h 75 uint8_t frequency:4; member in struct:sbc_codec_cap
88 uint8_t frequency:6; member in struct:mpeg_codec_cap
98 uint8_t frequency:4; member in struct:sbc_codec_cap
114 uint8_t frequency:6; member in struct:mpeg_codec_cap
  /packages/inputmethods/LatinIME/native/src/
bigram_dictionary.cpp 43 bool BigramDictionary::addWordBigram(unsigned short *word, int length, int frequency) {
49 LOGI("Bigram: Found word = %s, freq = %d :", s, frequency);
56 if (frequency > mBigramFreq[insertAt] || (mBigramFreq[insertAt] == frequency
69 mBigramFreq[insertAt] = frequency;
138 const int frequency = UnigramDictionary::MASK_ATTRIBUTE_FREQUENCY & bigramFlags; local
139 addWordBigram(bigramBuffer, length, frequency);
bigram_dictionary.h 32 bool addWordBigram(unsigned short *word, int length, int frequency);
35 void searchForTerminalNode(int addressLookingFor, int frequency);
  /system/media/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;
  /external/skia/bench/
BenchSysTimer_windows.cpp 49 LARGE_INTEGER frequency; local
50 if (0 == ::QueryPerformanceFrequency(&frequency)) {
53 return (double)ticks_elapsed.QuadPart / frequency.QuadPart * 1000;
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio.c 89 /* Add a new frequency/clock/predivisor to the current list */
90 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock,
99 /* Search where to insert the frequency (highest first) */
101 if (frequency > MINTAUDIO_frequencies[p].frequency) {
114 MINTAUDIO_frequencies[p].frequency = frequency;
122 /* Search for the nearest frequency */
134 if (desired_freq >= ((MINTAUDIO_frequencies[i].frequency+
135 MINTAUDIO_frequencies[i+1].frequency)>>1))
    [all...]
SDL_mintaudio.h 43 Uint32 frequency; member in struct:__anon9608
52 int numfreq; /* Number of selected frequency */
136 void SDL_MintAudio_AddFrequency(_THIS, Uint32 frequency, Uint32 clock,
  /external/bluetooth/bluez/sbc/
sbcdec.c 54 int format = AFMT_S16_BE, frequency, channels; local
106 switch (sbc.frequency) {
108 frequency = 16000;
112 frequency = 32000;
116 frequency = 44100;
120 frequency = 48000;
123 frequency = 0;
129 filename, frequency, sbc.subbands * 4 + 4, sbc.bitpool,
143 au_hdr.sample_rate = BE_INT(frequency);
164 if (ioctl(ad, SNDCTL_DSP_SPEED, &frequency) < 0)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 43 UserDictionary.Words.FREQUENCY,
80 int frequency = 1; local
81 UserDictionary.Words.addWord(getContext(), word, frequency, local
90 assertEquals(frequency, cursor.getInt(FREQUENCY_INDEX));
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_wave.h 50 Uint32 frequency; /* One of 11025, 22050, or 44100 Hz */ member in struct:WaveFMT
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
IncrementalSAXSource_Filter.java 84 private int frequency=5; field in class:IncrementalSAXSource_Filter
134 eventcounter=frequency;
199 frequency=eventcounter=events;
227 eventcounter=frequency;
249 eventcounter=frequency;
260 eventcounter=frequency;
271 eventcounter=frequency;
282 eventcounter=frequency;
293 eventcounter=frequency;
304 eventcounter=frequency;
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 28 /** Score(frequency value) of word in the learning dictionary */
30 /** Score(frequency value) of word in the user dictionary */
178 if (sentence[idx].frequency > sentence[start-1].frequency + CLAUSE_COST + FREQ_LEARN) {
183 if (sentence[idx].frequency > CLAUSE_COST + FREQ_LEARN) {
213 ws.frequency += CLAUSE_COST;
216 if (sentence[idx] == null || (sentence[idx].frequency < ws.frequency)) {
295 if (all || stem.frequency > max) {
301 max = stem.frequency;
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
testing.h 107 LARGE_INTEGER frequency;
108 QueryPerformanceFrequency(&frequency); // counts per second
109 usecs_per_count_ = 1000000.0 / static_cast<double>(frequency.QuadPart);

Completed in 499 milliseconds

1 2 3 4 5 6 7