HomeSort by relevance Sort by last modified time
    Searched refs:word (Results 251 - 275 of 1200) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/public/web/
WebSpellCheckClient.h 47 // text contains a misspelled word, then upon return misspelledOffset
48 // will point to the start of the misspelled word, and misspelledLength
70 // Computes an auto-corrected replacement for a misspelled word. If no
80 // Update the spelling UI with the given word.
81 virtual void updateSpellingUIWithMisspelledWord(const WebString& word) { }
  /external/freetype/src/gzip/
inftrees.h 26 } word; /* 16-bit, 8 bytes for 32-bit int's) */ member in struct:inflate_huft_s
  /external/srec/srec/Semproc/include/
SR_SemanticGraph.h 56 * @param ilabels Input word labels to be used when building the graph (The should be the same as
57 * the output word labels from the recognition graph/context.)
81 * Adds a word to the semantic graph at the specified slot. Tag may be defined or NULL.
85 * @param word Word to add.
86 * @param word Semantic Tag for the word.
87 * @param maybeMultiMeaning Indicates that we MAY be adding alternate multiple meanings a previously added word
89 ESR_ReturnCode(*addWordToSlot)(struct SR_SemanticGraph_t* self, const LCHAR* slot, const LCHAR* word, const LCHAR* tag, const ESR_BOOL maybeMultiMeaning);
  /external/valgrind/main/exp-bbv/tests/arm-linux/
million.S 27 count: .word 333332
  /external/netperf/
netcpu_pstat.c 65 long word[2]; member in union:overlay_u
77 overlay->word[0] = psp[i].psp_idlecycles.psc_hi;
78 overlay->word[1] = psp[i].psp_idlecycles.psc_lo;
145 long word[2]; member in union:overlay_u
148 overlay->word[0] = psp[j].psp_idlecycles.psc_hi;
149 overlay->word[1] = psp[j].psp_idlecycles.psc_lo;
181 long word[2]; member in union:overlay_u
184 overlay->word[0] = psp[j].psp_idlecycles.psc_hi;
185 overlay->word[1] = psp[j].psp_idlecycles.psc_lo;
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_EditCtrl.cpp 268 FX_WORD word = nChar; local
300 if (m_pEdit->IsSelected() && word == FWL_VKEY_Back)
301 word = FWL_VKEY_Unknown;
305 switch (word)
318 InsertWord(word, this->GetCharSet());
393 CPVT_Word word; local
395 if (pIterator->GetWord(word))
397 ptHead.x = word.ptWord.x + word.fWidth;
398 ptHead.y = word.ptWord.y + word.fAscent;
518 CPVT_Word word; local
546 CPVT_Word word; local
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 316 NJ_INT16 njd_f_get_word(NJ_SEARCH_LOCATION_SET *loctset, NJ_WORD *word)
331 NJ_SET_YLEN_TO_STEM(word, 1);
334 word->stem.loc = loctset->loct;
335 yomilen = njd_f_get_stroke(word, stroke, sizeof(stroke));
339 word->stem.info1 = yomilen;
340 word->stem.info1 |= (NJ_UINT16)(DATA_FHINSI(data) << HINSI_OFFSET);
341 word->stem.info2 = (NJ_UINT16)(DATA_BHINSI(data) << HINSI_OFFSET);
347 word->stem.info2 |= kouholen;
348 word->stem.hindo = CALCULATE_HINDO(DATA_HINDO(data), loctset->dic_freq.base,
352 word->stem.type = 0
    [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 */
259 /* get clauses without ancillary word */
271 /* get clauses with ancillary word */
315 * @param stem Stem of the clause (a independent word)
377 * @param right Right attribute of the preceding word/clause
378 * @param left Left attribute of the following word/clause
427 WnnWord word; local
428 while ((word = dict.getNextWord()) != null) {
429 fzks.add(word);
478 WnnWord word; local
    [all...]
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_provider.cc 133 base::string16 word(text);
136 word.c_str(), word.size(), routing_id(),
140 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check.suggestions", word.size());
142 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check", word.size());
145 Send(new SpellCheckHostMsg_NotifyChecked(routing_id(), word, 0 < length));
180 WebString SpellCheckProvider::autoCorrectWord(const WebString& word) {
183 UMA_HISTOGRAM_COUNTS("SpellCheck.api.autocorrect", word.length());
184 return spellcheck_->GetAutoCorrectionWord(word, routing_id());
201 const WebString& word) {
    [all...]
  /external/chromium_org/third_party/skia/forth/
Forth.cpp 84 // now invoke the word
107 Those last two bits are always 0 for a word, so we set those bits for other
110 00 -- execute this word
182 void FCode::appendWord(ForthWord* word) {
183 SkASSERT((reinterpret_cast<intptr_t>(word) & 3) == 0);
184 *fData.append() = reinterpret_cast<intptr_t>(word);
288 ForthWord* word; local
289 while (iter.next(&word)) {
290 delete word;
447 ForthWord* word = this->find(token, len) local
    [all...]
  /external/e2fsprogs/misc/
e2initrd_helper.c 184 char *word, *next; local
186 word = *buf;
187 if (*word == 0)
190 word = skip_over_blank(word);
191 next = skip_over_word(word);
195 return word;
198 static void parse_escape(char *word)
203 if (!word)
206 for (p = word, q = word; *p; p++, q++)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 70 final String word; local
73 word = suggestedWords.getLabel(SuggestedWords.INDEX_OF_TYPED_WORD);
75 word = suggestedWords.getLabel(index);
78 mWidths[index] = (int)(TypefaceUtils.getStringWidth(word, paint) + padding);
212 final String word; local
216 word = mSuggestedWords.getLabel(SuggestedWords.INDEX_OF_TYPED_WORD);
219 word = mSuggestedWords.getLabel(index);
222 final Key key = new MoreSuggestionKey(word, info, index, params);
240 public MoreSuggestionKey(final String word, final String info, final int index,
242 super(word /* label */, KeyboardIconsSet.ICON_UNDEFINED, Constants.CODE_OUTPUT_TEXT
    [all...]
  /external/jpeg/
jmemdosa.asm 59 mov word ptr [bx],ax ; save the handle
88 mov bx,word ptr [bp+6] ; file handle
120 mov bx,word ptr [bp+6] ; file handle
121 mov dx,word ptr [bp+8] ; LS offset
122 mov cx,word ptr [bp+10] ; MS offset
154 mov bx,word ptr [bp+6] ; file handle
156 mov cx,word ptr [bp+12] ; number of bytes
160 cmp ax,word ptr [bp+12] ; make sure all bytes were read
192 mov bx,word ptr [bp+6] ; file handle
194 mov cx,word ptr [bp+12] ; number of byte
    [all...]
  /external/qemu/distrib/jpeg-6b/
jmemdosa.asm 59 mov word ptr [bx],ax ; save the handle
88 mov bx,word ptr [bp+6] ; file handle
120 mov bx,word ptr [bp+6] ; file handle
121 mov dx,word ptr [bp+8] ; LS offset
122 mov cx,word ptr [bp+10] ; MS offset
154 mov bx,word ptr [bp+6] ; file handle
156 mov cx,word ptr [bp+12] ; number of bytes
160 cmp ax,word ptr [bp+12] ; make sure all bytes were read
192 mov bx,word ptr [bp+6] ; file handle
194 mov cx,word ptr [bp+12] ; number of byte
    [all...]
  /art/runtime/
globals.h 28 typedef intptr_t word; typedef in namespace:art
36 static constexpr size_t kWordSize = sizeof(word);
  /build/core/
distdir.mk 61 $(eval src := $(word 1,$(fw))) \
62 $(eval dst := $(word 2,$(fw))) \
  /external/chromium_org/chrome/browser/resources/translate_internals/
translate_internals.css 72 word-wrap: break-word;
104 word-wrap: break-word;
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
name_utilities.py 83 return ''.join(_upper_first(word) for word in property_name.split('-'))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
resourceView.css 46 word-wrap: break-word;
112 word-wrap: break-word;
  /external/chromium_org/third_party/fips181/
fips181.h 72 extern int gen_pron_pass (char *word, char* hypenated_word,
80 int gen_word (char *word, char *hyphenated_word, USHORT pwlen, unsigned int pass_mode);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/bin/
gas-llabel.asm 28 .word 0xaa55
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
datavis.asm 19 .word 10
  /external/icu/icu4c/source/layout/
DeviceTables.cpp 31 le_uint16 word = SWAPW(deltaValues[sizeIndex / count]); local
34 le_uint16 field = (word >> shift) & fieldMasks[format];
  /external/iproute2/lib/
dnet_pton.c 12 u_int16_t word; member in union:__anon26222
15 u.word = addr;
  /external/javassist/sample/preproc/
Compiler.java 129 int word[] = new int[5]; local
132 word[i] = reader.read();
133 output.write(word[i]);
136 if (word[0] != 'm' || word[1] != 'p' || word[2] != 'o'
137 || word[3] != 'r' || word[4] != 't')

Completed in 948 milliseconds

<<11121314151617181920>>