HomeSort by relevance Sort by last modified time
    Searched defs:open (Results 251 - 275 of 1681) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shelve.py 14 d = shelve.open(filename) # open, with (g)dbm filename -- no suffix
43 argument writeback=True in the call to shelve.open. When you use:
44 d = shelve.open(filename, writeback=True)
73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
179 modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
223 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
226 def open(filename, flag='c', protocol=None, writeback=False): function
227 """Open a persistent dictionary for reading and writing.
233 anydbm.open(). The optional protocol parameter specifies the
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_file.py 22 self.f = self.open(TESTFN, 'wb')
50 self.f = self.open(TESTFN, 'rb')
58 self.f = self.open(TESTFN, 'r')
67 self.f = self.open(TESTFN, 'rb')
138 open = io.open variable in class:CAutoFileTests
141 open = staticmethod(pyio.open) variable in class:PyAutoFileTests
150 f = self.open(TESTFN, mode)
171 f = self.open(TESTFN, bad_mode)
330 open = io.open variable in class:COtherFileTests
333 open = staticmethod(pyio.open) variable in class:PyOtherFileTests
    [all...]
test_univnewlines.py 50 with self.open(support.TESTFN, self.WRITEMODE) as fp:
60 with self.open(support.TESTFN, self.READMODE) as fp:
66 with self.open(support.TESTFN, self.READMODE) as fp:
72 with self.open(support.TESTFN, self.READMODE) as fp:
82 with self.open(support.TESTFN, self.READMODE) as fp:
105 with self.open(support.TESTFN, self.READMODE) as fp:
125 open = io.open variable in class:test_main.CTest
128 open = staticmethod(pyio.open) variable in class:test_main.PyTest
    [all...]
  /external/autotest/client/bin/net/
net_utils_mock.py 13 return os_stub('open')
21 def open(self, *args, **kwargs): member in class:os_stub
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialOutputLogger.java 56 synchronized void open() throws IOException { method in class:TrialOutputLogger
69 checkState(writer != null, "The logger is not open");
  /external/chromium-trace/catapult/third_party/pyserial/serial/
serialcli.py 32 def open(self): member in class:IronSerial
33 """Open port with current settings. This may throw a SerialException
38 raise SerialException("Port is already open.")
43 raise SerialException("could not open port %s: %s" % (self.portstr, msg))
46 self._port_handle.Open()
271 s.open()
  /external/chromium-trace/catapult/third_party/pyserial/serial/urlhandler/
protocol_loop.py 38 def open(self): member in class:LoopbackSerial
39 """Open port with current settings. This may throw a SerialException
42 raise SerialException("Port is already open.")
51 # not that there is anything to open, but the function applies the
protocol_socket.py 41 def open(self): member in class:SocketSerial
42 """Open port with current settings. This may throw a SerialException
48 raise SerialException("Port is already open.")
55 raise SerialException("Could not open port %s: %s" % (self.portstr, msg))
73 raise SerialException("Can only operate on open ports")
  /external/droiddriver/src/io/appium/droiddriver/util/
FileUtils.java 40 public static BufferedOutputStream open(String path) throws FileNotFoundException { method in class:FileUtils
  /external/e2fsprogs/include/nonunix/
unistd.h 19 #define open _open macro
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
MemoryMultiReportOutput.java 38 private final Set<String> open = new HashSet<String>(); field in class:MemoryMultiReportOutput
44 open.add(path);
48 open.remove(path);
87 assertEquals(Collections.emptySet(), open); local
  /external/libvncserver/webclients/novnc/include/
websock.js 64 'open': function () {},
271 open: function (uri, protocols) {
291 this._eventHandlers.open();
308 if ((this._websocket.readyState === WebSocket.OPEN) ||
63 'message': function () {}, method in class:Websock._eventHandlers
269 }, method in class:Websock
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 43 * acceptor.open(endpoint.protocol());
72 * connections. The open() function must be called before the acceptor can
84 /// Construct an open acceptor.
101 this->get_service().open(this->get_implementation(), protocol, ec);
102 asio::detail::throw_error(ec, "open");
125 * acceptor.open(endpoint.protocol());
138 this->get_service().open(this->get_implementation(), protocol, ec);
139 asio::detail::throw_error(ec, "open");
259 /// Open the acceptor using the specified protocol.
271 * acceptor.open(asio::ip::tcp::v4())
274 void open(const protocol_type& protocol = protocol_type()) function in class:asio::basic_socket_acceptor
301 asio::error_code open(const protocol_type& protocol, function in class:asio::basic_socket_acceptor
    [all...]
  /external/parameter-framework/upstream/asio/stub/
asio.hpp 110 void open(const dummy_base &) const {}; function in struct:asio::ip::tcp::acceptor
  /external/pdfium/fxjs/xfa/
cjx_source.cpp 27 {"open", open_static},
106 CJS_Return CJX_Source::open(CJS_V8* runtime, function in class:CJX_Source
  /external/python/cpython2/Lib/distutils/tests/
test_register.py 62 def open(self, req): member in class:FakeOpener
124 f = open(self.rc)
  /external/python/cpython2/Lib/
dumbdbm.py 29 _open = __builtin__.open
228 def open(file, flag=None, mode=0666): function
229 """Open the database file, filename, and return corresponding object.
pipes.py 12 from a disk file or from an open file, and similar for its output.
50 To open a file for reading or writing through a conversion pipeline:
51 fp = t.open(file, mode)
53 for the built-in function open() or for os.popen().
152 def open(self, file, rw): member in class:Template
153 """t.open(file, rw) returns a pipe or file object open for
160 'Template.open: rw must be \'r\' or \'w\', not %r' % (rw,)
164 t.open(file, 'r') and t.open(file, 'w') respectively.""
    [all...]
shelve.py 14 d = shelve.open(filename) # open, with (g)dbm filename -- no suffix
43 argument writeback=True in the call to shelve.open. When you use:
44 d = shelve.open(filename, writeback=True)
73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
183 modules "open" routines (i.e. bsddb.hashopen, bsddb.btopen or
227 Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
230 def open(filename, flag='c', protocol=None, writeback=False): function
231 """Open a persistent dictionary for reading and writing.
237 anydbm.open(). The optional protocol parameter specifies th
    [all...]
  /external/python/cpython2/Lib/idlelib/
ReplaceDialog.py 14 dialog.open(text)
26 def open(self, text): member in class:ReplaceDialog
27 SearchDialogBase.open(self, text)
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 233 def open(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
234 """open: Open the specified object(s)
235 Required argument: list of objects to open
236 Keyword argument using: the application file to open the object with
237 Keyword argument with_properties: the initial values for the properties, to be included with the open command sent to the application that opens the direct object
  /external/python/cpython2/Lib/test/
test_file.py 22 self.f = self.open(TESTFN, 'wb')
50 self.f = self.open(TESTFN, 'rb')
58 self.f = self.open(TESTFN, 'r')
67 self.f = self.open(TESTFN, 'rb')
138 open = io.open variable in class:CAutoFileTests
141 open = staticmethod(pyio.open) variable in class:PyAutoFileTests
150 f = self.open(TESTFN, mode)
161 f = self.open(TESTFN, bad_mode
321 open = io.open variable in class:COtherFileTests
324 open = staticmethod(pyio.open) variable in class:PyOtherFileTests
    [all...]
test_univnewlines.py 50 with self.open(support.TESTFN, self.WRITEMODE) as fp:
60 with self.open(support.TESTFN, self.READMODE) as fp:
66 with self.open(support.TESTFN, self.READMODE) as fp:
72 with self.open(support.TESTFN, self.READMODE) as fp:
82 with self.open(support.TESTFN, self.READMODE) as fp:
105 with self.open(support.TESTFN, self.READMODE) as fp:
125 open = io.open variable in class:test_main.CTest
128 open = staticmethod(pyio.open) variable in class:test_main.PyTest
    [all...]
  /external/python/cpython2/Mac/Demo/PICTbrowse/
ICONbrowse.py 37 # Now open the dialog
39 self.main_dialog.open(ID_MAIN, contents)
52 w.open(resid)
69 def open(self, (resid, resname)): member in class:ICONwindow
111 def open(self, id, contents): member in class:MyDialog
113 FrameWork.DialogWindow.open(self, ID_MAIN)
PICTbrowse2.py 37 # Now open the dialog
39 self.main_dialog.open(ID_MAIN, contents)
52 w.open(resid)
69 def open(self, (resid, resname)): member in class:PICTwindow
112 def open(self, id, contents): member in class:MyDialog
114 FrameWork.DialogWindow.open(self, ID_MAIN)

Completed in 542 milliseconds

<<11121314151617181920>>