/bionic/libm/i387/ |
s_ceilf.S | 16 fstcw -4(%ebp) /* store fpu control word */ 21 fldcw -8(%ebp) /* load modfied control word */ 26 fldcw -4(%ebp) /* restore original control word */
|
s_ceill.S | 14 fstcw -4(%ebp) /* store fpu control word */ 19 fldcw -8(%ebp) /* load modfied control word */ 24 fldcw -4(%ebp) /* restore original control word */
|
s_floorf.S | 16 fstcw -4(%ebp) /* store fpu control word */ 21 fldcw -8(%ebp) /* load modfied control word */ 26 fldcw -4(%ebp) /* restore original control word */
|
s_floorl.S | 14 fstcw -4(%ebp) /* store fpu control word */ 19 fldcw -8(%ebp) /* load modfied control word */ 24 fldcw -4(%ebp) /* restore original control word */
|
s_trunc.S | 14 fstcw -4(%ebp) /* store fpu control word */ 18 fldcw -8(%ebp) /* load modfied control word */ 23 fldcw -4(%ebp) /* restore original control word */
|
s_truncf.S | 14 fstcw -4(%ebp) /* store fpu control word */ 18 fldcw -8(%ebp) /* load modfied control word */ 23 fldcw -4(%ebp) /* restore original control word */
|
s_truncl.S | 14 fstcw -4(%ebp) /* store fpu control word */ 18 fldcw -8(%ebp) /* load modfied control word */ 23 fldcw -4(%ebp) /* restore original control word */
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_macros.h | 247 static inline unsigned ROL(unsigned word, int i) 250 :"=r" (word) 251 :"0" (word),"c" (i)); 252 return word; 255 static inline unsigned ROR(unsigned word, int i) 258 :"=r" (word) 259 :"0" (word),"c" (i)); 260 return word; 265 static inline unsigned ROLc(unsigned word, const int i) 268 :"=r" (word) [all...] |
/external/webkit/WebCore/manual-tests/ |
textarea-caret-position-after-auto-spell-correct.html | 3 <p>Tests bug <a href="https://bugs.webkit.org/show_bug.cgi?id=26200">26200</a> where the caret position jumps off to an incorrect position after auto-correcting a misspelled word.</p>
4 <p>Open this file in Google Chromium (version 3.0 +), in Windows, and enable the --auto-spell-correct flag. Insert the word 'teh' between any two words in the paragraph below.</p>
5 <p>SUCCESS: After hitting space, 'teh' is auto-corrected to 'the', and the caret stays on in the place it is supposed to be in after typing the word and hitting space.</p>
|
bidi-parens.html | 11 <p>Success: parentheses encapsulate word.</p> 12 <p>Failure: parentheses face away from word.</p>
|
drag-move-in-search-field.html | 1 <p>Double-click the word "dolor" to select it, then drag the selection to
|
/packages/inputmethods/LatinIME/dictionaries/ |
sample.xml | 3 The format of the word list is a flat list of word entries. 7 You can have a capitalized and a non-capitalized word as separate entries,
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
AutoDictionary.java | 36 * to accept a word that's not in the main or user dictionary. Using a new word 40 // Weight added to a user picking a new word from the suggestion strip 42 // Weight added to a user typing a new word that doesn't get corrected (or is reverted) 44 // A word that is frequently typed and gets promoted to the user dictionary, uses this 47 // If the user touches a typed word 2 times or more, it will become valid. 49 // If the user touches a typed word 4 times or more, it will be added to the user dict. 66 private static final String COLUMN_WORD = "word"; 101 public boolean isValidWord(CharSequence word) { 102 final int frequency = getWordFrequency(word); 125 String word = cursor.getString(wordIndex); local [all...] |
WordComposer.java | 23 * A place to store the currently composing word with information such as adjacent key codes as well 32 * The word chosen from the candidate list, until it is committed. 43 * Whether the user chose to capitalize the word. 64 * Number of keystrokes in the composing word. 72 * Returns the codes at a particular position in the word. 73 * @param index the position in the word 119 * Returns the word as it was typed, without any correction applied. 120 * @return the word that was typed so far 144 * Whether or not the user typed a capital letter as the first letter in the word 152 * Stores the user's selected word, before it is actually committed to the text field [all...] |
/development/samples/WiktionarySimple/ |
_index.html | 4 installation menu. The word of the day is downloaded from Wiktionary and 6 load the word's Wiktionary entry.</p>
|
/external/icu4c/common/ |
dictbe.cpp | 100 // Helper class for improving readability of the Thai word break 109 // list of word candidate lengths, in increasing length order 112 int32_t prefix; // The longest match with a dictionary word 131 // Return the longest prefix this candidate location shares with a dictionary word 154 // Dictionary leaves text after longest prefix, not longest word. Back up. 195 // Will not combine a non-word with a preceding dictionary word longer than this 198 // Will not combine a non-word that shares at least this much prefix with a 199 // dictionary word, with a preceding word [all...] |
/external/tcpdump/ |
decnet.h | 33 typedef u_int8_t word[2]; /* 2 byte field */ typedef 67 word sh_dst; /* destination node address */ 68 word sh_src; /* source node address */ 156 word inIII_src; /* source node address */ 158 word inIII_blksize; /* maximum data link block size */ 168 word in_src; /* source node address */ 170 word in_blksize; /* maximum data link block size */ 174 word in_hello; /* hello timer */ 181 word ve_src; /* source node address */ 188 word te_src; /* source node address * [all...] |
/frameworks/base/core/java/android/provider/ |
UserDictionary.java | 59 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single word. 66 * The word column. 69 public static final String WORD = "word"; 78 * The locale that this word belongs to. Null if it pertains to all 85 * The uid of the application that inserted the word. 90 /** The locale type to specify that the word is common to all locales. */ 93 /** The locale type to specify that the word is for the current locale. */ 101 /** Adds a word to the dictionary, with the given frequency and the specified 104 * @param word the word to add to the dictionary. This should not be null o [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
UserDictionaryToolsEdit.java | 37 * The abstract class for user dictionary's word editor. 49 /** The operation mode (Add the word) */ 51 /** The operation mode (Edit the word) */ 54 /** Maximum length of a word's string */ 57 /** The error code (Already registered the same word) */ 70 /** The word information which contains the previous information */ 72 /** The instance of word list activity */ 75 /** The constant for notifying dialog (Already exists the specified word) */ 138 /* add a word */ 142 /* edit a word */ [all...] |
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/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...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
OpenWnnEngineJAJP.java | 72 /** Score(frequency value) of word in the learning dictionary */ 74 /** Score(frequency value) of word in the user dictionary */ 85 /** Word list */ 88 /** HashMap for checking duplicate word */ 106 /** Previously selected word */ 198 WnnWord word; local 211 if ((word = mDictionaryJP.getNextWord()) == null) { 215 if (!mExactMatchMode || mInputHiragana.equals(word.stroke)) { 216 addCandidate(word); 263 * This method adds a word to the result buffer if there is no 482 WnnWord word = getCandidate(mOutputNum); local [all...] |
/external/opencore/codecs_v2/video/m4v_h263/dec/src/ |
idct_vca.cpp | 433 uint32 word; local 442 word = (tmp << 8) | tmp; 443 word = (word << 16) | word; 445 *((uint32*)(comp += offset)) = word; 446 *((uint32*)(comp + 4)) = word; 461 int32 word; local 481 word = ((x0 + x4) >> 14); 482 CLIP_RESULT(word) 518 int32 word; local 591 int32 word; local [all...] |
/frameworks/base/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...] |
/dalvik/vm/compiler/template/armv5te/ |
footer.S | 66 .word 0xdeadf00d 78 .word dvmAsmInstructionStart 80 .word dvmJitToInterpTraceSelectNoChain 82 .word dvmJitToInterpNoChain 84 .word dvmMterpStdBail 86 .word dvmMterpCommonExceptionThrown 88 .word dvmLockObject 91 .word dvmSelfVerificationMemOpDecode 94 .word __aeabi_cdcmple 96 .word __aeabi_cfcmpl [all...] |