HomeSort by relevance Sort by last modified time
    Searched refs:words (Results 451 - 475 of 1016) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uuid.py 307 words = line.lower().split()
308 for i in range(len(words)):
309 if words[i] in hw_identifiers:
311 words[get_index(i)].replace(':', ''), 16)
  /toolchain/binutils/binutils-2.25/include/opcode/
tic54x.h 89 unsigned int words; /* insn size in words */ member in struct:_template
137 #define FL_EXT 0x20 /* instruction takes two words */
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTDecompress.cpp 528 the texture in words (or pixels) this returns the twiddled
586 @Input &words Indices for the PVRTCword.
592 const PVRTCWordIndices &words,
604 pOutput[(((words.P[1] * ui32WordHeight) + y + ui32WordHeight/2)
605 * width + words.P[0] *ui32WordWidth + x + ui32WordWidth/2)] = pWord[y*ui32WordWidth+x]; // map P
607 pOutput[(((words.Q[1] * ui32WordHeight) + y + ui32WordHeight/2)
608 * width + words.Q[0] *ui32WordWidth + x)] = pWord[y*ui32WordWidth+x+ui32WordWidth/2]; // map Q
610 pOutput[(((words.R[1] * ui32WordHeight) + y)
611 * width + words.R[0] *ui32WordWidth + x + ui32WordWidth/2)] = pWord[(y+ui32WordHeight/2)*ui32WordWidth+x]; // map R
613 pOutput[(((words.S[1] * ui32WordHeight) + y)
    [all...]
  /external/selinux/mcstrans/src/
mcstrans.c 83 word_t *words; member in struct:word_group
314 while(group->words)
315 destroy_word(&group->words, group->words);
434 word_t *word = create_word(&group->words, trans);
438 destroy_word(&group->words, word);
1037 for (w = g->words; w; w = w->next)
1047 for (w = g->words; w; w = w->next)
1366 for (w = g->words; w && hamming; w = w->next) {
1414 create_word(&(*t)->words, currentWord->text)
    [all...]
  /build/kati/
buf_test.go 62 for _, word := range wb.words {
  /cts/apps/CameraITS/tools/
run_sensor_fusion_box.py 199 words = line.split(' ')
201 return float(words[-1][:-3])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
textwrap.py 72 Break words longer than 'width'. If false, those words will not
75 Allow breaking hyphenated words. If true, wrapping will occur
77 compound words.
97 r'[^\s\w]*\w+[^0-9\W]-(?=\w+[^0-9\W])|' # hyphenated words
167 not quite the same as words; see _wrap_chunks() for full
225 # If we're allowed to break long words, then do so: put as much
237 # If we're not allowed to break long words, and there's already
249 to words and the whitespace between them: each chunk is
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
stringold.py 103 # Split a string into a list of space/tab-separated words
107 Return a list of the words in the string s, using sep as the
109 maxsplit words If sep is not specified, any whitespace string
119 def join(words, sep = ' '):
122 Return a string composed of the words in list, with
129 return sep.join(words)
368 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
372 Split the argument into words using split, capitalize each
373 word using capitalize, and join the capitalized words using
  /external/boringssl/src/crypto/fipsmodule/rand/
ctrdrbg.c 73 drbg->counter.words[3] =
74 CRYPTO_bswap4(CRYPTO_bswap4(drbg->counter.words[3]) + n);
  /external/libavc/common/arm/
ih264_mem_fns_neon.s 221 @ Memset 8 words
252 @ Memset 8 words
  /external/python/cpython2/Lib/
stringold.py 103 # Split a string into a list of space/tab-separated words
107 Return a list of the words in the string s, using sep as the
109 maxsplit words If sep is not specified, any whitespace string
119 def join(words, sep = ' '):
122 Return a string composed of the words in list, with
129 return sep.join(words)
368 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
372 Split the argument into words using split, capitalize each
373 word using capitalize, and join the capitalized words using
textwrap.py 72 Break words longer than 'width'. If false, those words will not
75 Allow breaking hyphenated words. If true, wrapping will occur
77 compound words.
97 r'[^\s\w]*\w+[^0-9\W]-(?=\w+[^0-9\W])|' # hyphenated words
167 not quite the same as words; see _wrap_chunks() for full
225 # If we're allowed to break long words, then do so: put as much
237 # If we're not allowed to break long words, and there's already
249 to words and the whitespace between them: each chunk is
  /external/toolchain-utils/
verify_compiler.py 122 words = line.split(':')
123 bad_file = words[-1]
  /frameworks/base/core/java/com/android/internal/app/
SuggestedLocaleAdapter.java 285 final String[] words = valueText.split(" "); local
287 for (String word : words) {
  /packages/apps/Messaging/tools/messagegen/
fillsms 132 local words=$(random_value $MAX_WORDS_PER_MESSAGE)
134 for k in `seq 1 $words`;
  /packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
RoutineWatchEvaluatorTest.java 205 private void assertSplitTextToWords(String text, String... words) {
207 MoreAsserts.assertContentsInOrder(wordList, words);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
stringold.py 103 # Split a string into a list of space/tab-separated words
107 Return a list of the words in the string s, using sep as the
109 maxsplit words If sep is not specified, any whitespace string
119 def join(words, sep = ' '):
122 Return a string composed of the words in list, with
129 return sep.join(words)
368 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
372 Split the argument into words using split, capitalize each
373 word using capitalize, and join the capitalized words using
textwrap.py 72 Break words longer than 'width'. If false, those words will not
75 Allow breaking hyphenated words. If true, wrapping will occur
77 compound words.
97 r'[^\s\w]*\w+[^0-9\W]-(?=\w+[^0-9\W])|' # hyphenated words
167 not quite the same as words; see _wrap_chunks() for full
225 # If we're allowed to break long words, then do so: put as much
237 # If we're not allowed to break long words, and there's already
249 to words and the whitespace between them: each chunk is
  /prebuilts/gdb/darwin-x86/share/pretty-printers/stlport/stlport/
printers.py 122 words = self.val['_M_w']
127 if words.type.code == gdb.TYPE_CODE_ARRAY:
128 word_size = words.type.target ().sizeof
129 n_words = words.type.sizeof / word_size
131 word_size = words.type.sizeof
133 words = [words]
138 w = words[word]
  /prebuilts/gdb/linux-x86/lib/python2.7/
stringold.py 103 # Split a string into a list of space/tab-separated words
107 Return a list of the words in the string s, using sep as the
109 maxsplit words If sep is not specified, any whitespace string
119 def join(words, sep = ' '):
122 Return a string composed of the words in list, with
129 return sep.join(words)
368 # Capitalize the words in a string, e.g. " aBc dEf " -> "Abc Def".
372 Split the argument into words using split, capitalize each
373 word using capitalize, and join the capitalized words using
textwrap.py 72 Break words longer than 'width'. If false, those words will not
75 Allow breaking hyphenated words. If true, wrapping will occur
77 compound words.
97 r'[^\s\w]*\w+[^0-9\W]-(?=\w+[^0-9\W])|' # hyphenated words
167 not quite the same as words; see _wrap_chunks() for full
225 # If we're allowed to break long words, then do so: put as much
237 # If we're not allowed to break long words, and there's already
249 to words and the whitespace between them: each chunk is
  /prebuilts/gdb/linux-x86/share/pretty-printers/stlport/stlport/
printers.py 122 words = self.val['_M_w']
127 if words.type.code == gdb.TYPE_CODE_ARRAY:
128 word_size = words.type.target ().sizeof
129 n_words = words.type.sizeof / word_size
131 word_size = words.type.sizeof
133 words = [words]
138 w = words[word]
  /prebuilts/go/darwin-x86/src/go/doc/
synopsis.go 65 // words. If s starts with any of the IllegalPrefixes, the result
  /prebuilts/go/darwin-x86/src/sync/
once.go 18 // first time for this instance of Once. In other words, given
  /prebuilts/go/linux-x86/src/go/doc/
synopsis.go 65 // words. If s starts with any of the IllegalPrefixes, the result

Completed in 787 milliseconds

<<11121314151617181920>>