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

1234567891011>>

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DTarget.java323 public String getTarget64BitStringFromValue(long word) { argument
327 String digits = Long.toHexString(word);
H A DCSharp3Target.java77 public String getTarget64BitStringFromValue(long word) { argument
78 return "0x" + Long.toHexString(word).toUpperCase();
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebEditingDelegate.idl177 HRESULT ignoreWordInSpellDocument([in] IWebView* view, [in] BSTR word);
178 HRESULT learnWord([in] BSTR word);
182 HRESULT updateSpellingUIWithMisspelledWord([in] BSTR word);
185 HRESULT guessesForWord([in] BSTR word, [out, retval] IEnumSpellingGuesses** guesses);
/external/bison/lib/
H A Dvbitset.c28 length array of words. Any unused bits in the last word must be
180 of the word of interest. */
195 bitset_word word; local
197 word = srcp[windex] << (BITSET_WORD_BITS - 1 - bitcnt);
198 for (; word; bitcnt--)
200 if (word & BITSET_MSB)
209 word <<= 1;
237 bitset_word word; local
251 of the current word. */
265 /* Handle the case where we start within a word
[all...]
/external/srec/srec/Grammar/src/
H A DSR_GrammarImpl.c149 ESR_ReturnCode SR_Grammar_AddWordToSlot(SR_Grammar* self, const LCHAR* slot, const LCHAR* word, argument
168 if ( word != NULL )
170 if ( strlen ( word ) >= MAX_STRING_LEN )
172 PLogError ( "SR_Grammar_AddWordToSlot word : %s too long : Max %d", word, MAX_STRING_LEN - 1 );
205 /* TODO: add this word to the semantic graph with associated script tag */
219 CHKLOG(rc, vocab->getPronunciation(vocab, word, buffer, &len));
233 CHKLOG(logrc, SR_EventLogToken_BASIC(impl->eventLog, impl->logLevel, L("WORD"), word));
242 /* add word to syntax first */
245 * if word alread
274 PLogError(L("%s: Homonym '%s' could not be added"), ESR_rc2str(rc), word); local
685 char copy_of[512], *word; local
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dd3basics.c472 res.word = (UWord)(_str); \
515 res.word = (UWord)(expr[0] - DW_OP_reg0);
524 res.word = (UWord)read_leb128U( &expr );
587 a1 = fbval.word; break; /* use as-is */
589 ok = get_Dwarf_Reg( &a1, fbval.word, regs );
894 res.word = uw1;
899 res.word = uw1;
917 res.word = stack[sp];
949 res.word = (UWord)"no matching range";
1118 res.word
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A Djsilver.sablecc134 {args} word = (alphanumeric | '_')+;
323 [multipart_word.word],
332 [multipart_word.word],
378 multipart_word {->word*}
379 = {bit} word
380 {->[word]}
381 | {m} multipart_word dot word
382 {->[multipart_word.word, word]}
527 = {name} dollar? word
[all...]
/external/arduino/hardware/arduino/cores/arduino/
H A DWProgram.h20 #define word(...) makeWord(__VA_ARGS__) macro
/external/chromium/chrome/browser/autofill/
H A Daddress.h68 // Returns true if |word| is one of the tokens in |line_tokens|.
69 bool IsWordInLine(const string16& word, const LineTokens& line_tokens) const;
/external/clang/tools/driver/
H A DMakefile58 TOOL_INFO_VERSION := $(word 3,$(shell grep "CLANG_VERSION " \
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Denvset.cmd84 if expand > 0 & word(args, i) = '-' then expand = 0
85 else call addval word(args, i)
/external/icu4c/tools/toolutil/
H A Dunewdata.h77 /** @memo Write a 16-bit word to the file. */
79 udata_write16(UNewDataMemory *pData, uint16_t word);
81 /** @memo Write a 32-bit word to the file. */
/external/oprofile/gui/
H A Doprof_start_util.cpp205 string word; local
207 while (oss >> word) {
208 if (line.size() + word.size() > maxlen) {
212 line += word + " ";
/external/quake/quake/src/QW/client/
H A Dd_spr8.asm492 cmp bp,ds:word ptr[ecx]
497 mov ds:word ptr[ecx],bp
506 cmp bp,ds:word ptr[2+ecx]
511 mov ds:word ptr[2+ecx],bp
520 cmp bp,ds:word ptr[4+ecx]
525 mov ds:word ptr[4+ecx],bp
534 cmp bp,ds:word ptr[6+ecx]
539 mov ds:word ptr[6+ecx],bp
548 cmp bp,ds:word ptr[8+ecx]
553 mov ds:word pt
[all...]
/external/srec/srec/Semproc/include/
H A DSR_SemanticGraphImpl.h57 * The word map containing the actual scripts. The index of teh script in the wordmap
83 * ilables are integers which map to words in the word maps
84 * olabels are integers which map to words in the word maps
100 * Free list of arcs for dynamic add word to slot.
138 SREC_SEMPROC_API ESR_ReturnCode SR_SemanticGraph_AddWordToSlot(SR_SemanticGraph* self, const LCHAR* slot, const LCHAR* word, const LCHAR* tag, const ESR_BOOL maybeMultiMeaning);
/external/srec/tools/cmd/
H A Dpht_to_short.pl56 ($word, $pron) = split(/\s*\t\s*/, $_, 2);
61 die "error: unknown lph $lph in $word\n" if(!defined $sph_for_lph{$lph});
65 print OO "$word $sphPron\n";
/external/webkit/Source/WebCore/platform/text/
H A DTextCheckerClient.h72 // identification. Noramlly it's the text surrounding the "word" for which we are getting correction suggestions.
73 virtual void getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) = 0;
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DTextCheckerMac.mm363 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
373 NSArray* stringsArray = [checker guessesForWordRange:NSMakeRange(0, word.length()) inString:word language:language inSpellDocumentWithTag:spellDocumentTag];
375 NSArray* stringsArray = [[NSSpellChecker sharedSpellChecker] guessesForWord:word];
382 void TextChecker::learnWord(int64_t, const String& word)
384 [[NSSpellChecker sharedSpellChecker] learnWord:word];
387 void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word)
389 [[NSSpellChecker sharedSpellChecker] ignoreWord:word inSpellDocumentWithTag:spellDocumentTag];
/external/libvpx/build/make/
H A DMakefile33 TGT_CC:=$(word 3, $(subst -, ,$(TOOLCHAIN)))
71 TGT_ISA:=$(word 1, $(subst -, ,$(TOOLCHAIN)))
72 TGT_OS:=$(word 2, $(subst -, ,$(TOOLCHAIN)))
73 TGT_CC:=$(word 3, $(subst -, ,$(TOOLCHAIN)))
163 $(call $(1),$(word 1,$(2)),$(word 2,$(2)))\
170 find_file1=$(word 1,$(wildcard $(subst //,/,$(addsuffix /$(1),$(2)))))
/external/chromium/chrome/browser/
H A Dspellcheck_host_impl.cc131 void SpellCheckHostImpl::AddWord(const std::string& word) { argument
134 custom_words_.push_back(word);
137 &SpellCheckHostImpl::WriteWordToCustomDictionary, word));
241 void SpellCheckHostImpl::WriteWordToCustomDictionary(const std::string& word) { argument
245 std::string word_to_add(word + "\n");
/external/openssl/crypto/sha/asm/
H A Dsha1-armv4-large.pl238 .LK_00_19: .word 0x5a827999
239 .LK_20_39: .word 0x6ed9eba1
240 .LK_40_59: .word 0x8f1bbcdc
241 .LK_60_79: .word 0xca62c1d6
247 $code =~ s/\bbx\s+lr\b/.word\t0xe12fff1e/gm; # make it possible to compile with -march=armv4
/external/tremolo/Tremolo/
H A DbitwiseARM.s77 @ there must be more in the next word
193 AND r10,r3,#3 @ r10= bytes to backtrk to word align
194 MOV r10,r10,LSL #3 @ r10= bits to backtrk to word align
195 RSB r10,r10,#32 @ r10= bits left in word
196 ADDS r10,r10,r2 @ r10= bits left in word after skip
199 BIC r3,r3,#3 @ r3 = Pointer to start (word)
224 BIC r2,r3,#3 @ r2 = b->headptr (word)
269 @ there must be more in the next word
325 AND r3,r6,#3 @ r3 = bytes used in first word
326 RSB r3,r2,r3,LSL #3 @ r3 = bits used in first word
[all...]
/external/elfutils/libcpu/
H A Di386_data.h697 uint16_t word = read_2ubyte_unaligned_inc (*d->param_start);
698 needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx16, word);
704 int32_t word = read_4sbyte_unaligned_inc (*d->param_start);
708 (int64_t) word);
711 needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx32, word);
730 uint_fast8_t word = *(*d->param_start)++;
731 int needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIxFAST8, word);
754 uint64_t word = read_8ubyte_unaligned_inc (*d->param_start);
755 needed = snprintf (&d->bufp[*bufcntp], avail, "$0x%" PRIx64, word);
761 int32_t word
[all...]
/external/srec/srec/crec/
H A Dsrec_results.c251 if (parp && parp->word == rec->context->beg_silence_word)
255 id = parp->word;
307 if (rec->context->olabels->words[wtoken->word])
308 p = rec->context->olabels->words[wtoken->word];
377 if (wtoken->word == rec->context->beg_silence_word)
385 rec->word_token_array[ parp->next->token_index].word == rec->context->end_silence_word)
416 /* this is the best cost, unconstrained by word sequence */
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp378 void WebEditorClient::ignoreWordInSpellDocument(const String& word) argument
380 m_page->send(Messages::WebPageProxy::IgnoreWord(word));
383 void WebEditorClient::learnWord(const String& word) argument
385 m_page->send(Messages::WebPageProxy::LearnWord(word));
438 void WebEditorClient::getGuessesForWord(const String& word, const String& context, Vector<String>& guesses) argument
440 m_page->sendSync(Messages::WebPageProxy::GetGuessesForWord(word, context), Messages::WebPageProxy::GetGuessesForWord::Reply(guesses));

Completed in 712 milliseconds

1234567891011>>