HomeSort by relevance Sort by last modified time
    Searched refs:todo (Results 51 - 75 of 152) sorted by null

1 23 4 5 6 7

  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
pgen.py 207 todo = [start]
208 for i, state in enumerate(todo):
211 if next in todo:
212 j = todo.index(next)
214 j = len(todo)
215 todo.append(next)
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
buildtools.py 401 todo = os.listdir(srctree)
402 while todo:
403 this, todo = todo[0], todo[1:]
410 todo.append(os.path.join(this, t))
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
pgen.py 207 todo = [start]
208 for i, state in enumerate(todo):
211 if next in todo:
212 j = todo.index(next)
214 j = len(todo)
215 todo.append(next)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
pgen.py 207 todo = [start]
208 for i, state in enumerate(todo):
211 if next in todo:
212 j = todo.index(next)
214 j = len(todo)
215 todo.append(next)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 401 todo = os.listdir(srctree)
402 while todo:
403 this, todo = todo[0], todo[1:]
410 todo.append(os.path.join(this, t))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
pgen.py 207 todo = [start]
208 for i, state in enumerate(todo):
211 if next in todo:
212 j = todo.index(next)
214 j = len(todo)
215 todo.append(next)
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineVerifier.cpp 699 // TODO: verify that earlyclobber ops are not used.
858 DenseSet<const MachineBasicBlock*> todo; local
869 todo.insert(*SuI);
875 while (!todo.empty()) {
876 const MachineBasicBlock *MBB = *todo.begin();
877 todo.erase(MBB);
885 todo.insert(*SuI);
895 DenseSet<const MachineBasicBlock*> todo; local
904 todo.insert(*PrI);
    [all...]
  /external/boringssl/src/crypto/pkcs8/
pkcs8.c 185 size_t todo = out_len < A_len ? out_len : A_len; local
186 OPENSSL_memcpy(out, A, todo);
187 out += todo;
188 out_len -= todo;
  /external/python/cpython2/Tools/scripts/
pindent.py 238 todo = []
261 todo.append(line)
318 for l in todo: self.write(l)
320 todo = []
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
CommentCommandList.inc 120 COMMENT_COMMAND(todo)
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
CommentCommandList.inc 120 COMMENT_COMMAND(todo)
  /external/boringssl/src/ssl/
s3_both.cc 264 size_t todo = len - added; local
265 if (todo > ssl->max_send_fragment) {
266 todo = ssl->max_send_fragment;
277 if (!add_record_to_flight(ssl, type, msg + added, todo)) {
280 added += todo;
284 /* TODO(svaldez): Move this up a layer to fix abstraction for SSL_TRANSCRIPT
  /prebuilts/go/darwin-x86/src/crypto/tls/
prf.go 37 todo := len(b)
38 if j+todo > len(result) {
39 todo = len(result) - j
41 copy(result[j:j+todo], b)
42 j += todo
  /prebuilts/go/linux-x86/src/crypto/tls/
prf.go 37 todo := len(b)
38 if j+todo > len(result) {
39 todo = len(result) - j
41 copy(result[j:j+todo], b)
42 j += todo
  /external/v8/benchmarks/
deltablue.js 651 var todo = sources;
652 while (todo.size() > 0) {
653 var c = todo.removeFirst();
657 this.addConstraintsConsumingTo(c.output(), todo);
692 var todo = new OrderedCollection();
693 todo.add(c);
694 while (todo.size() > 0) {
695 var d = todo.removeFirst();
701 this.addConstraintsConsumingTo(d.output(), todo);
717 var todo = new OrderedCollection()
    [all...]
  /system/tools/hidl/
main.cpp 339 std::vector<FQName> todo;
341 coordinator->appendPackageInterfacesToVector(packageFQName, &todo);
348 for (const auto &iface : todo) {
354 while (!todo.empty()) {
355 const FQName fqName = todo.back();
356 todo.pop_back();
386 todo.push_back(iface);
513 // TODO(b/33420795)
927 // TODO(b/35813011): make all libraries vendor_available
    [all...]
  /external/boringssl/src/crypto/bio/
bio.c 499 const size_t todo = len - done; local
500 assert(todo < INT_MAX);
501 const int n = BIO_read(bio, *out + done, todo);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BlobCache.java 355 int todo = Math.min(count, 1024); local
356 mIndexBuffer.put(zero, 0, todo);
357 count -= todo;
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 463 int todo = 200; /* Copy in 200 byte lumps. */ local
466 if (i + todo > bfd_get_section_size (section->bfd_section))
467 todo = bfd_get_section_size (section->bfd_section) - i;
485 ob.data.len = todo;
486 bfd_get_section_contents (abfd, section->bfd_section, stuff, i, todo);
488 sysroff_swap_ob_out (file, &ob /*, i + todo < section->size */ );
489 i += todo;
496 int todo = 200; /* Copy in 200 byte lumps. */ local
499 if (i + todo > (bfd_size_type) section->size)
500 todo = section->size - i
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
pindent.py 239 todo = []
266 todo.append(line)
321 for l in todo: self.write(l)
323 todo = []
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
wcgui.py 233 if self.todo:
261 elif self.todo.has_key(url):
263 o = self.todo[url]
297 elif self.todo.has_key(url):
  /external/python/cpython2/Tools/webchecker/
wcgui.py 233 if self.todo:
261 elif self.todo.has_key(url):
263 o = self.todo[url]
297 elif self.todo.has_key(url):
  /build/soong/third_party/zip/
example_test.go 30 {"todo.txt", "Get animal handling licence.\nWrite more examples."},
  /prebuilts/go/darwin-x86/src/archive/zip/
example_test.go 30 {"todo.txt", "Get animal handling licence.\nWrite more examples."},
  /prebuilts/go/linux-x86/src/archive/zip/
example_test.go 30 {"todo.txt", "Get animal handling licence.\nWrite more examples."},

Completed in 2108 milliseconds

1 23 4 5 6 7