Searched refs:word (Results 151 - 175 of 709) sorted by relevance

1234567891011>>

/external/srec/srec/include/
H A Dsrec_context.h43 /* todo: for dynamic vocabs, a word should eventually be replaced
44 not so much "char* word" but "wordblock* head", Jean to merge
124 /* caching for add word, because FST_AddWordToSlot() is often sequentially
137 wordmap *olabels; /* word labels */
140 /* word graph, for a-star */
196 const char* word,
222 int wordmap_whether_in_rule(wordmap* wmap, wordID word, wordID rule);
223 wordID wordmap_find_index(wordmap* wmap, const char* word);
224 wordID wordmap_find_index_in_rule(wordmap* wmap, const char* word, wordID rule);
228 wordID wordmap_add_word(wordmap* wmap, const char* word);
[all...]
H A Dastar.h35 /* an arc_token is used for the word graph, this implementation
75 wordID word; /* quick access to word (wta[token_index].word) */ member in struct:partial_path_t
125 arc_token* get_arc_for_word(arc_token* atoken, wordID word, void* context_void,
128 arc_token* get_arc_for_word_without_slot_annotation(arc_token* atoken, const char* word,
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTScannerTest.cpp193 VTTScanner::Run word = scanner.collectWhile<lowerCaseAlpha>(); local
194 EXPECT_FALSE(scanner.scanRun(word, barString));
195 EXPECT_TRUE(scanner.scanRun(word, fooString));
206 word = scanner.collectWhile<lowerCaseAlpha>();
207 EXPECT_FALSE(scanner.scanRun(word, fooString));
208 EXPECT_TRUE(scanner.scanRun(word, barString));
222 VTTScanner::Run word = scanner.collectWhile<lowerCaseAlpha>(); local
223 String fooString = scanner.extractString(word);
225 EXPECT_TRUE(scanner.isAt(word.end()));
230 word
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DTextUtils.js64 * @param {string} word
67 isWord: function(word)
69 for (var i = 0; i < word.length; ++i) {
70 if (!WebInspector.TextUtils.isWordChar(word.charAt(i)))
/external/f2fs-tools/lib/
H A Dlibf2fs.c145 static inline unsigned long __ffs(unsigned long word) argument
150 if ((word & 0xffffffff) == 0) {
152 word >>= 32;
155 if ((word & 0xffff) == 0) {
157 word >>= 16;
159 if ((word & 0xff) == 0) {
161 word >>= 8;
163 if ((word & 0xf) == 0) {
165 word >>= 4;
167 if ((word
[all...]
/external/fonttools/Lib/fontTools/
H A DafmLib.py11 # every single line starts with a "word"
119 word = line[:pos]
121 if word in self._keywords:
123 if word == "C":
125 elif word == "KPX":
127 elif word == "CC":
130 self.parseattr(word, rest)
155 def parseattr(self, word, rest):
156 if word == "FontBBox":
158 self._attrs[word]
[all...]
/external/fonttools/Tools/fontTools/
H A DafmLib.py11 # every single line starts with a "word"
119 word = line[:pos]
121 if word in self._keywords:
123 if word == "C":
125 elif word == "KPX":
127 elif word == "CC":
130 self.parseattr(word, rest)
155 def parseattr(self, word, rest):
156 if word == "FontBBox":
158 self._attrs[word]
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A Dmath_private.h27 n0 = ((*(int*)&one)>>29)^1; * index of high word *
28 ix0 = *(n0+(int*)&x); * high word of x *
29 ix1 = *((1-n0)+(int*)&x); * low word of x *
137 u_int32_t word; member in union:__anon29590
146 (i) = gf_u.word; \
154 sf_u.word = (i); \
/external/chromium_org/chrome/browser/resources/options/
H A Dreset_profile_settings_overlay.css35 word-wrap: break-word;
H A Dsupervised_user_learn_more.css18 word-wrap: break-word;
/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_host_metrics.h48 void RecordCheckedWordStats(const base::string16& word, bool misspell);
50 // Collects a histogram for misspelled word replacement
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dtwo_client_dictionary_sync_test.cc88 std::string word = "foo"; local
90 ASSERT_TRUE(dictionary_helper::AddWord(0, word));
93 ASSERT_TRUE(dictionary_helper::RemoveWord(0, word));
96 ASSERT_TRUE(dictionary_helper::AddWord(1, word));
/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck_language.h26 // SpellCheck a word.
31 // that the word came from (if the current platform requires it), or 0.
32 // In addition, finds the suggested words for a given word
34 // If the word is spelled correctly, the vector is empty.
53 // Returns whether or not the given word is a contraction of valid words
54 // (e.g. "word:word").
55 bool IsValidContraction(const base::string16& word, int tag);
61 // Represents word iterators used in this spellchecker. The |text_iterator_|
63 // words. The |contraction_iterator_| splits a concatenated word extracte
[all...]
H A Dspellcheck_provider.cc133 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) { argument
183 UMA_HISTOGRAM_COUNTS("SpellCheck.api.autocorrect", word.length());
184 return spellcheck_->GetAutoCorrectionWord(word, routing_id());
201 const WebString& word) {
200 updateSpellingUIWithMisspelledWord( const WebString& word) argument
[all...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_spell_check.h26 const blink::WebString& word,
36 // position of the first invalid word to misspelledOffset, and the length of
37 // the first invalid word to misspelledLength, respectively.
49 // than one word. If it is, append multiple results to the results vector.
/external/freetype/src/gzip/
H A Dinftrees.h26 } word; /* 16-bit, 8 bytes for 32-bit int's) */ member in struct:inflate_huft_s
/external/netperf/
H A Dnetcpu_pstat.c65 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/srec/srec/Semproc/include/
H A DSR_SemanticGraph.h56 * @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/
H A Dmillion.S27 count: .word 333332
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_EditCtrl.cpp268 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
518 CPVT_Word word; local
546 CPVT_Word word; local
591 InsertWord(FX_WORD word, FX_INT32 nCharset) argument
[all...]
/external/chromium_org/third_party/skia/forth/
H A DForth.cpp84 // 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) { argument
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 local
475 addWord(const char name[], ForthWord* word) argument
[all...]
/external/e2fsprogs/misc/
H A De2initrd_helper.c184 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) argument
203 if (!word)
206 for (p = word,
[all...]
/external/jpeg/
H A Djmemdosa.asm59 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 pt
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djmemdosa.asm59 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 pt
[all...]
/external/chromium_org/chrome/browser/resources/translate_internals/
H A Dtranslate_internals.css72 word-wrap: break-word;
104 word-wrap: break-word;

Completed in 533 milliseconds

1234567891011>>