HomeSort by relevance Sort by last modified time
    Searched refs:word (Results 51 - 75 of 1050) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Text_Suite.py 84 class word(aetools.ComponentItem): class in inherits:aetools.ComponentItem
85 """word - This subdivides the text into words. """
92 words = word
102 'word' : word,
116 'word' : word,
129 'word' : word,
142 'word' : word
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Text_Suite.py 84 class word(aetools.ComponentItem): class in inherits:aetools.ComponentItem
85 """word - This subdivides the text into words. """
92 words = word
102 'word' : word,
116 'word' : word,
129 'word' : word,
142 'word' : word
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
pushnosize.asm 4 push word 0 ; 6A 00 - optimized
7 push strict word 0 ; 68 0000
9 push 128 ; 68 8000 - doesn't fit in byte, equivalent to push word 128
11 push word 128 ; 68 8000
14 push strict word 128 ; 68 8000
20 push word 0 ; 66 6A 00 - optimized
23 push strict word 0 ; 66 68 0000
27 push word 128 ; 66 6A 8000
30 push strict word 128 ; 66 6A 8000
36 push word 0 ; 66 6A 00 - 66h prefix, optimized to byt
    [all...]
addrop.asm 5 idiv byte [word 0] ; 67 F6 3E 00 00
8 a16 idiv byte [word 0] ; 67 67 F6 3E 00 00
18 idiv byte [word 0]
23 idiv word [es:dword edi+5]
24 ;idiv word [es:edi+dword 5]
  /external/libgsm/src/
add.c 23 word gsm_add P2((a,b), word a, word b)
29 word gsm_sub P2((a,b), word a, word b)
35 word gsm_mult P2((a,b), word a, word b)
41 word gsm_mult_r P2((a,b), word a, word b
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
OpenWnnEngineEN.java 35 /** Score(frequency value) of word in the learning dictionary */
37 /** Score(frequency value) of word in the user dictionary */
44 /** Word list */
46 /** HashMap for checking duplicate word */
108 WnnWord word; local
111 while ((word = mDictionary.getNextWord()) != null) {
113 char c = word.candidate.charAt(0);
120 word.candidate = Character.toString(Character.toUpperCase(c)) + word.candidate.substring(1);
124 word.candidate = word.candidate.toUpperCase()
305 WnnWord word = getCandidate(mOutputNum); local
    [all...]
  /external/chromium/chrome/browser/
spellchecker_linux.cc 37 void UpdateSpellingPanelWithMisspelledWord(const string16& word) {}
50 void AddWord(const string16& word) {}
52 void RemoveWord(const string16& word) {}
56 void IgnoreWord(const string16& word) {}
spellchecker_platform_engine.h 39 // Changes the word show in the spelling panel to be |word|. Note that the
41 void UpdateSpellingPanelWithMisspelledWord(const string16& word);
57 // spellchecker. Returns true if the word is spelled correctly.
66 // Adds the given word to the platform dictionary.
67 void AddWord(const string16& word);
69 // Remove a given word from the platform dictionary.
70 void RemoveWord(const string16& word);
75 // Tells the platform spellchecker to ignore a word. This doesn't take a tag
80 void IgnoreWord(const string16& word);
    [all...]
spellchecker_win.cc 37 void UpdateSpellingPanelWithMisspelledWord(const std::wstring& word) {}
50 void AddWord(const string16& word) {}
52 void RemoveWord(const string16& word) {}
56 void IgnoreWord(const string16& word) {}
spellcheck_message_filter.cc 38 void SpellCheckMessageFilter::OnPlatformCheckSpelling(const string16& word,
41 *correct = SpellCheckerPlatform::CheckSpelling(word, tag);
45 const string16& word,
47 SpellCheckerPlatform::FillSuggestionList(word, suggestions);
63 const string16& word) {
64 SpellCheckerPlatform::UpdateSpellingPanelWithMisspelledWord(word);
  /external/chromium/chrome/common/extensions/docs/css/
print.css 17 word-wrap: break-word; /* Internet Explorer 5.5+ */
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_platform_mac.h 46 // Changes the word show in the spelling panel to be |word|. Note that the
48 void UpdateSpellingPanelWithMisspelledWord(const base::string16& word);
60 // spellchecker. Returns true if the word is spelled correctly.
69 // Adds the given word to the platform dictionary.
70 void AddWord(const base::string16& word);
72 // Remove a given word from the platform dictionary.
73 void RemoveWord(const base::string16& word);
78 // Tells the platform spellchecker to ignore a word. This doesn't take a tag
83 void IgnoreWord(const base::string16& word);
    [all...]
  /external/llvm/test/MC/ARM/
arm_word_directive.s 6 .word 3
  /external/llvm/test/MC/X86/
x86_directives.s 6 .word 3
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct_vca.cpp 425 uint32 word; local
434 word = (tmp << 8) | tmp;
435 word = (word << 16) | word;
437 *((uint32*)(comp += offset)) = word;
438 *((uint32*)(comp + 4)) = word;
453 int32 word; local
473 word = ((x0 + x4) >> 14);
474 CLIP_RESULT(word)
510 int32 word; local
583 int32 word; local
    [all...]
  /external/bison/lib/
signbitd.c 42 union { double value; unsigned int word[NWORDS]; } m; member in union:__anon38
44 return (m.word[DBL_SIGNBIT_WORD] >> DBL_SIGNBIT_BIT) & 1;
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_language.cc 46 // report the word as correctly spelled.)
60 base::string16 word;
72 while (text_iterator_.GetNextWord(&word, &word_start, &word_length)) {
73 // Found a word (or a contraction) that the spellchecker can check the
75 if (platform_spelling_engine_->CheckSpelling(word, tag))
78 // If the given word is a concatenated word of two or more valid words
79 // (e.g. "hello:hello"), we should treat it as a valid word.
80 if (IsValidContraction(word, tag))
88 platform_spelling_engine_->FillSuggestionList(word,
112 base::string16 word; local
    [all...]
  /external/llvm/test/MC/AArch64/
mapping-across-sections.s 12 .word 42
mapping-within-section.s 10 .word 4
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
bigram_dictionary.h 30 int getPredictions(const int *word, int length, int *outBigramCodePoints,
38 void addWordBigram(int *word, int length, int probability, int *bigramProbability,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidateFilter.java 36 * Checking whether a specified word is filtered.
38 * @param word A word
39 * @return {@code true} if the word is allowed; {@code false} if the word is denied.
41 public boolean isAllowed(WnnWord word) {
46 String str = word.candidate;
WnnDictionary.java 138 * Searched word's frequency in the dictionary is mapped to the range from {@code base} to {@code high}.
191 * To get the searched word's information, use {@link #getNextWord()}.<br>
192 * If a same word existed in the set of dictionary, the search result may contain some same words.<br>
194 * If approximate patterns were set, the first word in search
195 * results is the highest approximation word which contains best
224 * @return 0 if no word is found; 1 if some words found; minus value if a error occurs.
229 * Search words from dictionaries with specified conditions and previous word.
231 * For using link search function, specify the {@code wnnWord} as previous word and
235 * If the prediction dictionary for reading is set to use, the previous word must contain
237 * for part of speech is set to use, the previous word must contain the {@code partOfSpeech} information
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/
armv4cpuid.S 10 .word 0xf26ee1fe @ vorr q15,q15,q15
11 .word 0xe12fff1e @ bx lr
18 .word 0xe12fff1e @ bx lr
31 .word 0xe12fff1e @ bx lr
53 .word 0xe12fff1e @ bx lr
86 .word 0xe12fff1e @ bx lr
100 .word 0xf3000150 @ veor q0, q0, q0
101 .word 0xf3022152 @ veor q1, q1, q1
102 .word 0xf3044154 @ veor q2, q2, q2
103 .word 0xf3066156 @ veor q3, q3, q
    [all...]
  /external/openssl/crypto/
armv4cpuid.S 10 .word 0xf26ee1fe @ vorr q15,q15,q15
11 .word 0xe12fff1e @ bx lr
18 .word 0xe12fff1e @ bx lr
31 .word 0xe12fff1e @ bx lr
53 .word 0xe12fff1e @ bx lr
86 .word 0xe12fff1e @ bx lr
100 .word 0xf3000150 @ veor q0, q0, q0
101 .word 0xf3022152 @ veor q1, q1, q1
102 .word 0xf3044154 @ veor q2, q2, q2
103 .word 0xf3066156 @ veor q3, q3, q
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/
Makefile 11 mkdir -p hicolor/$(word 1, $(subst /, ,$(@)))/apps/
12 inkscape $(subst .png,.svg, $(word 2, $(subst /, , $(@)))) --without-gui \
13 --export-width=$(word 1, $(subst x, , $(@))) \
14 --export-height=$(word 2, $(subst x, , $(subst /, , $(@)))) \
15 --export-png=hicolor/$(word 1, $(subst /, ,$(@)))/apps/$(word 2, $(subst /, , $@))

Completed in 6570 milliseconds

1 23 4 5 6 7 8 91011>>