/frameworks/ex/common/tools/ |
make-iana-tld-pattern.py | 32 self.words=[] 36 if (len(self.words) == 0) and (len(self.letters) == 0): 39 self.words.sort() 52 if len(self.words) != 0: 59 for word in self.words: 68 if len(self.words) > 0 and len(self.letters) > 0: 81 if len(self.words) != 0: 99 self.words.append(line)
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_tile_image.c | 45 * Untile a 4x4 block of 32-bit words (all contiguous) to linear layout 46 * at dst, with dst_stride words between rows. 65 * Untile a 4x4 block of 16-bit words (all contiguous) to linear layout 66 * at dst, with dst_stride words between rows. 85 * Convert a 4x4 rect of 32-bit words from a linear layout into tiled 86 * layout (in which all 16 words are contiguous). 105 * Convert a 4x4 rect of 16-bit words from a linear layout into tiled 106 * layout (in which all 16 words are contiguous). 150 dst_stride /= bpp; /* convert from bytes to words */ 159 /* compute offsets in 32-bit words */ [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
BinaryDictionaryTests.java | 322 final ArrayList<String> words = new ArrayList<>(); local 330 words.add(word); 337 final String word0 = words.get(random.nextInt(wordCount)); 338 final String word1 = words.get(random.nextInt(wordCount)); 460 final ArrayList<String> words = new ArrayList<>(); local 468 words.add(word); 475 final String word0 = words.get(random.nextInt(wordCount)); 476 final String word1 = words.get(random.nextInt(wordCount)); 522 final ArrayList<String> words = new ArrayList<>(); local 529 words.add(word) 605 final ArrayList<String> words = new ArrayList<>(); local 647 final ArrayList<String> words = new ArrayList<>(); local 701 final ArrayList<String> words = new ArrayList<>(); local 785 final ArrayList<String> words = new ArrayList<>(); local [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_nan.c | 51 _scan_nan(uint32_t *words, int num_words, const char *s) 54 int bitpos; /* index into words (in bits) */ 56 bzero(words, num_words * sizeof(uint32_t)); 66 /* Scan backwards, filling in the bits in words[] as we go. */ 74 words[bitpos / 32] |= digittoint(s[si]) << (bitpos % 32);
|
/external/v8/test/mjsunit/ |
regexp-results-cache.js | 73 var words = string.split(" "); variable 74 assertEquals("Friends,", words[0]); 75 words[0] = "Enemies,"; 76 words = string.split(" "); 77 assertEquals("Friends,", words[0]);
|
/ndk/sources/android/support/src/msun/ |
s_nan.c | 67 _scan_nan(uint32_t *words, int num_words, const char *s) 70 int bitpos; /* index into words (in bits) */ 72 bzero(words, num_words * sizeof(uint32_t)); 82 /* Scan backwards, filling in the bits in words[] as we go. */ 90 words[bitpos / 32] |= digittoint(s[si]) << (bitpos % 32);
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/ |
typing_scoring.h | 55 // Previously, when both legitimate 0-frequency words (such as distracters) and 56 // offensive words were encoded in the same way, distracters would never show up 57 // when the user blocked offensive words (the default setting, as well as the 60 // When b/11031090 was fixed and a separate encoding was used for offensive words, 61 // 0-frequency words would no longer be blocked when they were an "exact match"
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/ |
GLAPISpec.java | 108 List<String> words = Arrays.asList(line.split(",")); local 110 String retType = words.get(0).trim(); 111 String func = words.get(1).trim(); 112 List<String> argDefinitions = words.subList(2, words.size());
|
/external/tcpdump/ |
print-smb.c | 173 print_trans2(const u_char *words, const u_char *dat, const u_char *buf, const u_char *maxbuf) 178 const u_char *w = words + 1; 182 TCHECK(words[0]); 191 if (words[0] == 0) { 206 if (words[0] == 8) { 207 smb_fdata(words + 1, 212 smb_fdata(words + 1, 214 words + 1 + 14 * 2, unicodestr); 219 smb_fdata(words + 1, 221 words + 1 + 10 * 2, unicodestr) 801 const u_char *words, *maxwords, *data; local [all...] |
/bionic/libc/upstream-openbsd/lib/libc/net/ |
inet_ntop.c | 106 u_int words[IN6ADDRSZ / INT16SZ]; local 115 memset(words, '\0', sizeof words); 117 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); 121 if (words[i] == 0) { 169 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) { 175 advance = snprintf(tp, ep - tp, "%x", words[i]);
|
/external/flac/libFLAC/ia32/ |
bitreader_asm.nasm | 58 ; the above two asserts also guarantee that the binary part never straddles more than 2 words, so we don't have to loop to read it 91 ;; [ebp + 8] br->words 98 ; ucbits = (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits; 99 mov eax, [ebp + 8] ; eax <- br->words 100 sub eax, esi ; eax <- br->words-cwords 101 shl eax, 2 ; eax <- (br->words-cwords)*FLAC__BYTES_PER_WORD 102 add eax, [ebp + 12] ; eax <- (br->words-cwords)*FLAC__BYTES_PER_WORD + br->bytes 103 shl eax, 3 ; eax <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 104 sub eax, ecx ; eax <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits 118 cmp esi, [ebp + 8] ; while(cwords < br->words) /* if we've not consumed up to a partial tail word... * [all...] |
/external/parameter-framework/tools/bash_completion/ |
remote-process | 40 local cur prev words cword; 52 "${words[0]}" "${words[1]}" "${words[2]}" "$@" |sed 's#\r##;/^$/d' 62 local command=${words[3]} 94 parameterCommand="listDomainElements ${words[4]}" 116 options=$(_remoteProcessWrapper listConfigurations "${words[4]}")
|
/frameworks/base/core/java/android/provider/ |
UserDictionary.java | 28 * A provider of user defined words for input methods to use for predictive text input. 29 * Applications and input methods may add words into the dictionary. Words can have associated 47 * Contains the user defined words. 49 public static class Words implements BaseColumns { 54 Uri.parse("content://" + AUTHORITY + "/words"); 57 * The MIME type of {@link #CONTENT_URI} providing a directory of words.
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
UserBinaryDictionary.java | 25 import android.provider.UserDictionary.Words; 39 * An expandable dictionary that stores the words in the user dictionary provider into a binary 50 private static final String[] PROJECTION_QUERY = new String[] {Words.WORD, Words.FREQUENCY}; 89 cres.registerContentObserver(Words.CONTENT_URI, true, mObserver); 171 Words.CONTENT_URI, query, request, requestArguments, null); 199 final int indexWord = cursor.getColumnIndex(Words.WORD); 200 final int indexFrequency = cursor.getColumnIndex(Words.FREQUENCY); 205 // Safeguard against adding really long words.
|
/external/proguard/src/proguard/ |
ArgumentWordReader.java | 27 * A <code>WordReader</code> that returns words from an argument list. 28 * Single arguments are split into individual words if necessary. 77 * Test application that prints out the individual words of
|
/external/toybox/toys/posix/ |
wc.c | 15 Count lines, words, and characters in input. 18 -w show words 22 By default outputs lines, words, bytes, and filename for each
|
/external/valgrind/memcheck/tests/ |
partiallydefinedeq.c | 36 // both words completely undefined. This should give an error. 39 // set half of the words, but to different values; so this should 47 // set half of the words, but to the same value, so this forces the
|
test-plo.c | 73 UWord* words = malloc(3 * sizeof(UWord)); local 74 free(words); 77 UWord w = words[1];
|
/packages/inputmethods/LatinIME/java/res/values/ |
donottranslate-config-spacing-and-punctuations.xml | 23 <!-- Symbols that are suggested between words --> 31 <!-- Symbols that separate words --> 44 <!-- Whether this language uses spaces between words -->
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
wordexp.h | 44 size_t we_wordc; /* Count of words matched. */ 45 char **we_wordv; /* List of expanded words. */ 62 /* Do word expansion of WORDS into PWORDEXP. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
wordexp.h | 44 size_t we_wordc; /* Count of words matched. */ 45 char **we_wordv; /* List of expanded words. */ 62 /* Do word expansion of WORDS into PWORDEXP. */
|
/external/bison/lib/ |
lbitset.c | 41 /* Number of words to use for each element. The larger the value the 66 bitset_word words[LBITSET_ELT_WORDS]; /* Bits that are set. */ member in struct:lbitset_elt_struct 84 ((lbitset_elt *) (void *) ((char *) (X) - offsetof (lbitset_elt, words))) 151 memset (elt->words, 0, sizeof (elt->words)); 189 bset->b.cdata = next->words; 194 bset->b.cdata = prev->words; 221 bset->b.cdata = elt->prev->words; 248 if (elt->words[i]) 314 bset->b.cdata = elt->words; [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
List4.java | 118 public SpeechView(Context context, String title, String words) { 132 mDialogue.setText(words); 147 public void setDialogue(String words) { 148 mDialogue.setText(words);
|
/external/iptables/extensions/ |
libxt_TEE.man | 2 machine on the \fBlocal\fP network segment. In other words, the nexthop
|
/external/llvm/test/CodeGen/X86/GC/ |
dynamic-frame-size.ll | 22 ; stack frame size (in words)
|