HomeSort by relevance Sort by last modified time
    Searched refs:closing (Results 251 - 275 of 303) sorted by null

<<111213

  /external/bison/build-aux/
texinfo.tex     [all...]
  /external/libmicrohttpd/doc/
texinfo.tex     [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/
texinfo.tex     [all...]
  /toolchain/binutils/binutils-2.25/texinfo/
texinfo.tex     [all...]
  /external/doclava/res/assets/templates-sdk/assets/js/
docs.js 528 toggleMe.slideUp('fast', function() { // Wait until the animation is done before closing arrow
    [all...]
android_3p-bundle.js     [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
configure     [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 
  /build/make/tools/droiddoc/templates-ndk/assets/js/
android_3p-bundle.js     [all...]
docs.js     [all...]
  /build/make/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js     [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/
topics.py 13 'bltin-file-objects': u'\nFile Objects\n************\n\nFile objects are implemented using C\'s ``stdio`` package and can be\ncreated with the built-in ``open()`` function. File objects are also\nreturned by some other built-in functions and methods, such as\n``os.popen()`` and ``os.fdopen()`` and the ``makefile()`` method of\nsocket objects. Temporary files can be created using the ``tempfile``\nmodule, and high-level file operations such as copying, moving, and\ndeleting files and directories can be achieved with the ``shutil``\nmodule.\n\nWhen a file operation fails for an I/O-related reason, the exception\n``IOError`` is raised. This includes situations where the operation\nis not defined for some reason, like ``seek()`` on a tty device or\nwriting a file opened for reading.\n\nFiles have the following methods:\n\nfile.close()\n\n Close the file. A closed file cannot be read or written any more.\n Any operation which requires that the file be open will raise a\n ``ValueError`` after the file has been closed. Calling ``close()``\n more than once is allowed.\n\n As of Python 2.5, you can avoid having to call this method\n explicitly if you use the ``with`` statement. For example, the\n following code will automatically close *f* when the ``with`` block\n is exited:\n\n from __future__ import with_statement # This isn\'t required in Python 2.6\n\n with open("hello.txt") as f:\n for line in f:\n print line\n\n In older versions of Python, you would have needed to do this to\n get the same effect:\n\n f = open("hello.txt")\n try:\n for line in f:\n print line\n finally:\n f.close()\n\n Note: Not all "file-like" types in Python support use as a context\n manager for the ``with`` statement. If your code is intended to\n work with any file-like object, you can use the function\n ``contextlib.closing()`` instead of using the object directly.\n\nfile.flush()\n\n Flush the internal buffer, like `` (…)
    [all...]
  /external/pcre/dist2/src/
pcre2test.c     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /external/caliper/lib/
jersey-core-1.11.jar 
  /external/libxml2/
parser.c     [all...]
  /external/robolectric/v1/lib/main/
h2-1.2.147.jar 
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.0/
rxjava-1.1.0.jar 
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.3/
rxjava-1.1.3.jar 
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.4/
rxjava-1.1.4.jar 
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.5/
rxjava-1.1.5.jar 

Completed in 943 milliseconds

<<111213