HomeSort by relevance Sort by last modified time
    Searched full:word (Results 1 - 25 of 2584) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/res/res/xml-en/
autotext.xml 20 <word src="abouta">about a</word>
21 <word src="aboutit">about it</word>
22 <word src="aboutthe">about the</word>
23 <word src="acheive">achieve</word>
24 <word src="acheived">achieved</word>
    [all...]
  /external/kernel-headers/original/asm-generic/bitops/
__ffs.h 7 * __ffs - find first bit in word.
8 * @word: The word to search
12 static inline unsigned long __ffs(unsigned long word)
17 if ((word & 0xffffffff) == 0) {
19 word >>= 32;
22 if ((word & 0xffff) == 0) {
24 word >>= 16;
26 if ((word & 0xff) == 0) {
28 word >>= 8
    [all...]
ffz.h 5 * ffz - find first zero in word.
6 * @word: The word to search
  /external/e2fsprogs/
wordwrap.pl 3 # wordwrap.pl --- does word wrap
6 if (/^#/) { # don't word wrap comments
13 while (defined($word = shift @_)) {
14 $word =~ s#\$\(srcdir\)/\.\./version.h#\$\(top_srcdir\)/version.h#;
15 $word =~ s#\$\(srcdir\)/.\.\/\.\./version.h#\$\(top_srcdir\)/version.h#;
16 $word =~ s#\$\(srcdir\)/.\.\/et/com_err.h#\$\(top_srcdir\)/lib/et/com_err.h#;
20 $len = length($word) + 1;
26 printf("%s", $word);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnWord.java 20 * The container class of a word.
25 /** The word's Id */
27 /** The string of this word. */
29 /** The reading of this word. */
31 /** The score of this word. */
33 /** The part of speech this word. */
35 /** The attribute of this word when it is assumed a candidate. */
48 * @param candidate The string of word
49 * @param stroke The reading of word
58 * @param candidate The string of word
    [all...]
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;
WnnEngine.java 57 * @param minLen The minimum length of a word to predict (0 : no limit)
58 * @param maxLen The maximum length of a word to predict (-1 : no limit)
89 * @param word A word to search
92 public int searchWords(WnnWord word);
111 * @return {@code null} if no word is registered; the array of {@link WnnWord} if some words is registered.
116 * Learn a word.
118 * This method is used to register the word selected from
120 * of the word.
122 * @param word The selected wor
    [all...]
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/fastwc/
wc3.l 5 word {ws}*{nonws}+
6 words {word}{ws}+
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word}{ws}* cc += yyleng; wc += 2;
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
wc5.l 5 word {ws}*{nonws}+
6 words {word}{ws}+
11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word} cc += yyleng; wc += 2; /* oops */
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
wc4.l 5 word {ws}*{nonws}+
6 words {word}{ws}+
11 {word}{ws}* ++wc; cc += yyleng;
12 {word}{ws}*\n ++wc; cc += yyleng; ++lc;
13 {words}{word}{ws}* wc += 2; cc += yyleng;
14 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc;
15 {words}{2}{word}{ws}* wc += 3; cc += yyleng;
16 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc;
17 {words}{3}{word}{ws}* wc += 4; cc += yyleng;
18 {words}{3}{word}{ws}*\n wc += 4; cc += yyleng; ++lc
    [all...]
wc2.l 5 word {ws}*{nonws}+
10 {word}{ws}* cc += yyleng; ++wc;
11 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
  /dalvik/vm/mterp/armv5te/
OP_LONG_TO_INT.S 2 /* we ignore the high word, making this equivalent to a 32-bit reg move */
  /dalvik/vm/mterp/x86/
OP_LONG_TO_INT.S 2 /* we ignore the high word, making this equivalent to a 32-bit reg move */
  /external/elfutils/libelf/
abstract.h 25 TYPE_NAME (ElfW2(Bits, Ext##Word), e_version) \
29 TYPE_NAME (ElfW2(Bits, Ext##Word), e_flags) \
47 TYPE_NAME (ElfW2(32, Ext##Word), p_type) \
51 TYPE_NAME (ElfW2(32, Ext##Word), p_filesz) \
52 TYPE_NAME (ElfW2(32, Ext##Word), p_memsz) \
53 TYPE_NAME (ElfW2(32, Ext##Word), p_flags) \
54 TYPE_NAME (ElfW2(32, Ext##Word), p_align) \
58 TYPE_NAME (ElfW2(64, Ext##Word), p_type) \
59 TYPE_NAME (ElfW2(64, Ext##Word), p_flags) \
72 TYPE_NAME (ElfW2(32, Ext##Word), sh_name)
    [all...]
  /external/clearsilver/util/test/
hash_test.c 28 char *word; local
51 word = strdup(buf);
52 err = ne_hash_insert(hash, word, word);
54 word = ne_hash_lookup(hash, buf);
55 if (word == NULL)
57 err = nerr_raise(NERR_ASSERT, "Unable to find word %s in hash", buf);
60 if (strcmp(word, buf))
62 err = nerr_raise(NERR_ASSERT, "Lookup returned wrong word: %s != %s", buf, word);
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 26 * Whether or not to replicate the typed word in the suggested list, even if it's valid.
31 * The weight to give to a word if it's length is the same as the number of typed characters.
41 * Adds a word to a list of suggestions. The word is expected to be ordered based on
43 * @param word the character array containing the word
44 * @param wordOffset starting offset of the word in the character array
48 * @return true if the word was added, false if no more words are required
50 boolean addWord(char[] word, int wordOffset, int wordLength, int frequency);
59 * word so far. For instance, "bracke" can be followed by "t", so array['t'] will hav
    [all...]
UserDictionary.java 30 Words.WORD,
74 * Adds a word to the dictionary and makes it persistent.
75 * @param word the word to add. If the word is capitalized, then the dictionary will
76 * recognize it as a capitalized word when searched.
77 * @param frequency the frequency of occurrence of the word. A frequency of 255 is considered
82 public synchronized void addWord(String word, int frequency) {
86 if (word.length() >= getMaxWordLength()) return;
88 super.addWord(word, frequency)
119 String word = cursor.getString(INDEX_WORD); local
    [all...]
  /external/kernel-headers/original/linux/
bitops.h 37 * @word: value to rotate
40 static inline __u32 rol32(__u32 word, unsigned int shift)
42 return (word << shift) | (word >> (32 - shift));
48 * @word: value to rotate
51 static inline __u32 ror32(__u32 word, unsigned int shift)
53 return (word >> shift) | (word << (32 - shift));
  /external/proguard/src/proguard/io/
DataEntryRewriter.java 75 StringBuffer word = new StringBuffer(); local
85 // Is the character part of a word?
91 // Collect the characters in this word.
92 word.append(c);
96 // Write out the updated word, if any.
97 writeUpdatedWord(writer, word.toString());
98 word.setLength(0);
105 // Write out the final word.
106 writeUpdatedWord(writer, word.toString());
113 * Writes the given word to the given writer, after having adapted it
    [all...]
  /dalvik/vm/mterp/arm-vfp/
README.txt 5 and later. It assumes that word alignment is sufficient for double-word
  /external/webkit/WebCore/manual-tests/
word-spacing-highlight.html 5 <title>Highlighting with word spacing</title>
8 <p style="word-spacing:5em;">
  /development/simulator/wrapsim/
BitVector.c 63 int word, bit; local
66 for (word = 0; word < pBits->storageSize; word++) {
67 if (pBits->storage[word] != 0) {
69 * There are unallocated bits in this word. Return the first.
71 bit = ffs(pBits->storage[word]) -1;
73 pBits->storage[word] &= ~(1 << bit);
74 return (word << 5) | bit;
  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 51 UserDictionary.Words._ID, UserDictionary.Words.WORD
54 // Either the locale is empty (means the word is applicable to all locales)
55 // or the word equals our current locale
59 private static final String DELETE_SELECTION = UserDictionary.Words.WORD + "=?";
61 private static final String EXTRA_WORD = "word";
70 /** The word being edited in the dialog (null means the user is adding a word). */
102 String word = getIntent().getStringExtra(EXTRA_WORD); local
104 if (word != null) {
105 showAddOrEditDialog(word);
161 String word = getWord(adapterMenuInfo.position); local
    [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/openssl/crypto/0.9.9-dev/aes/
aes-armv4.s 7 .word 0xc66363a5, 0xf87c7c84, 0xee777799, 0xf67b7b8d
8 .word 0xfff2f20d, 0xd66b6bbd, 0xde6f6fb1, 0x91c5c554
9 .word 0x60303050, 0x02010103, 0xce6767a9, 0x562b2b7d
10 .word 0xe7fefe19, 0xb5d7d762, 0x4dababe6, 0xec76769a
11 .word 0x8fcaca45, 0x1f82829d, 0x89c9c940, 0xfa7d7d87
12 .word 0xeffafa15, 0xb25959eb, 0x8e4747c9, 0xfbf0f00b
13 .word 0x41adadec, 0xb3d4d467, 0x5fa2a2fd, 0x45afafea
14 .word 0x239c9cbf, 0x53a4a4f7, 0xe4727296, 0x9bc0c05b
15 .word 0x75b7b7c2, 0xe1fdfd1c, 0x3d9393ae, 0x4c26266a
16 .word 0x6c36365a, 0x7e3f3f41, 0xf5f7f702, 0x83cccc4
    [all...]

Completed in 54 milliseconds

1 2 3 4 5 6 7 8 91011>>