HomeSort by relevance Sort by last modified time
    Searched refs:words (Results 226 - 250 of 1078) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
mimetypes.py 217 words = line.split()
218 for i in range(len(words)):
219 if words[i][0] == '#':
220 del words[i:]
222 if not words:
224 type, suffixes = words[0], words[1:]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mimetypes.py 217 words = line.split()
218 for i in range(len(words)):
219 if words[i][0] == '#':
220 del words[i:]
222 if not words:
224 type, suffixes = words[0], words[1:]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetypes.py 217 words = line.split()
218 for i in range(len(words)):
219 if words[i][0] == '#':
220 del words[i:]
222 if not words:
224 type, suffixes = words[0], words[1:]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetypes.py 217 words = line.split()
218 for i in range(len(words)):
219 if words[i][0] == '#':
220 del words[i:]
222 if not words:
224 type, suffixes = words[0], words[1:]
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_mm.c 124 int words, ret; local
127 words = ((size >> chunk_order) + 31) / 32;
128 assert(words);
130 slab = MALLOC(sizeof(struct mm_slab) + words * 4);
134 memset(&slab->bits[0], ~0, words * 4);
  /external/python/cpython2/Lib/idlelib/
FormatParagraph.py 132 words = re.split("(\s+)", lines[i])
133 for j in range(0, len(words), 2):
134 word = words[j]
142 if j+1 < len(words) and words[j+1] != " ":
  /external/python/cpython3/Lib/idlelib/
paragraph.py 133 words = re.split(r"(\s+)", lines[i])
134 for j in range(0, len(words), 2):
135 word = words[j]
143 if j+1 < len(words) and words[j+1] != " ":
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
FormatParagraph.py 123 words = re.split("(\s+)", lines[i])
124 for j in range(0, len(words), 2):
125 word = words[j]
133 if j+1 < len(words) and words[j+1] != " ":
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
FormatParagraph.py 123 words = re.split("(\s+)", lines[i])
124 for j in range(0, len(words), 2):
125 word = words[j]
133 if j+1 < len(words) and words[j+1] != " ":
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
opcode.cpp 156 void spvInstructionCopy(const uint32_t* words, const SpvOp opcode,
160 pInst->words.resize(wordCount);
162 pInst->words[wordIndex] = spvFixWord(words[wordIndex], endian);
166 spvOpcodeSplit(pInst->words[wordIndex], &thisWordCount, &thisOpcode);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 123 words = re.split("(\s+)", lines[i])
124 for j in range(0, len(words), 2):
125 word = words[j]
133 if j+1 < len(words) and words[j+1] != " ":
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 123 words = re.split("(\s+)", lines[i])
124 for j in range(0, len(words), 2):
125 word = words[j]
133 if j+1 < len(words) and words[j+1] != " ":
  /system/core/init/
subcontext_test.cpp 189 // Using a shared_ptr to extend lifetime of words to both lambdas
190 auto words = std::make_shared<std::vector<std::string>>(); local
191 test_function_map.Add("add_word", 1, 1, true, [words](const BuiltinArguments& args) {
192 words->emplace_back(args[1]);
196 [words](const BuiltinArguments& args) -> Result<Success> {
197 return Error() << Join(*words, " ");
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
SearchFragment.java 64 private void queryByWords(String words) {
66 if (!TextUtils.isEmpty(words)) {
67 mDelayedLoad.setSearchQuery(words);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/
wiki.py 41 words = []
50 words.append(word)
51 return "".join(words)
  /external/autotest/tko/
machine_aggr.cgi 53 words = line.rstrip().split('\t')
54 if words[0] == machine.hostname:
55 title = '%s (%s)' % (words[-1], machine.hostname)
  /external/freetype/src/tools/docmaker/
content.py 101 self.words = None
128 ## `self.words' contains the list of words that make up the paragraph.
134 self.words = []
137 self.words.extend( string.split( l ) )
149 for word in self.words:
328 return self.fields[0].items[0].words[0]
579 name = para.words[0]
642 return m.fields[0].items[0].words
649 words = [
    [all...]
  /external/python/cpython2/Demo/cgi/
wiki.py 41 words = []
50 words.append(word)
51 return "".join(words)
  /external/python/cpython3/Lib/distutils/
extension.py 172 words = split_quoted(line)
180 module = words[0]
184 for word in words[1:]:
  /external/python/cpython3/Tools/i18n/
makelocalealias.py 66 words = line.split()
67 if len(words) != 2:
69 alias, alias_encoding = words
  /packages/services/Car/service/src/com/android/car/
CarAudioDeviceInfo.java 150 String[] words = address.split("_"); local
152 if (words[0].toLowerCase().startsWith("bus")) {
154 addressParsed = Integer.parseInt(words[0].substring(3));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
BaseHTTPServer.py 249 words = requestline.split()
250 if len(words) == 3:
251 command, path, version = words
276 elif len(words) == 2:
277 command, path = words
283 elif not words:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
BaseHTTPServer.py 252 words = requestline.split()
253 if len(words) == 3:
254 [command, path, version] = words
279 elif len(words) == 2:
280 [command, path] = words
286 elif not words:
  /external/python/cpython2/Lib/
BaseHTTPServer.py 249 words = requestline.split()
250 if len(words) == 3:
251 command, path, version = words
276 elif len(words) == 2:
277 command, path = words
283 elif not words:
  /frameworks/rs/rsov/compiler/spirit/
builder_test.cpp 184 auto words = Serialize<Module>(m); local
186 auto m1 = Deserialize<Module>(words);
191 EXPECT_TRUE(words == words1);
222 auto words = Serialize<Module>(m); local
224 auto m1 = Deserialize<Module>(words);
229 EXPECT_TRUE(words == words1);

Completed in 737 milliseconds

1 2 3 4 5 6 7 8 91011>>