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

1 2 34 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
messages_members.h 53 messages<_CharT>::open(const basic_string<char>& __s, const locale& __loc, function in class:messages
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
FileList.py 17 def open(self, filename, action=None): member in class:FileList
33 # Don't create window, perform 'action', e.g. open in same window
39 edit = self.open(filename)
87 "You now have multiple edit windows open for %r" % (filename,),
117 flist.open(filename)
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Required.py 20 def open(self, _object, _attributes={}, **_arguments): member in class:Required_Events
21 """open: Open the specified object(s)
22 Required argument: list of objects to open
43 'yes' : 'yes ', # Convert the project if necessary on open
44 'no' : 'no ', # Do not convert the project if needed on open
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/
Required_Suite.py 16 def open(self, _object, _attributes={}, **_arguments): member in class:Required_Suite_Events
17 """open: Open documents
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
Required_suite.py 16 def open(self, _object, _attributes={}, **_arguments): member in class:Required_suite_Events
17 """open: Open the specified object(s)
18 Required argument: list of objects to open
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
FileList.py 17 def open(self, filename, action=None): member in class:FileList
33 # Don't create window, perform 'action', e.g. open in same window
39 edit = self.open(filename)
87 "You now have multiple edit windows open for %r" % (filename,),
117 flist.open(filename)
  /prebuilts/go/darwin-x86/src/runtime/
stubs2.go 25 func open(name *byte, mode, perm int32) int32 func
  /prebuilts/go/linux-x86/src/runtime/
stubs2.go 25 func open(name *byte, mode, perm int32) int32 func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 17 def open(self, filename, action=None): member in class:FileList
33 # Don't create window, perform 'action', e.g. open in same window
39 edit = self.open(filename)
87 "You now have multiple edit windows open for %r" % (filename,),
117 flist.open(filename)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Required.py 20 def open(self, _object, _attributes={}, **_arguments): member in class:Required_Events
21 """open: Open the specified object(s)
22 Required argument: list of objects to open
43 'yes' : 'yes ', # Convert the project if necessary on open
44 'no' : 'no ', # Do not convert the project if needed on open
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Explorer/
Required_Suite.py 16 def open(self, _object, _attributes={}, **_arguments): member in class:Required_Suite_Events
17 """open: Open documents
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Netscape/
Required_suite.py 16 def open(self, _object, _attributes={}, **_arguments): member in class:Required_suite_Events
17 """open: Open the specified object(s)
18 Required argument: list of objects to open
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FileList.py 17 def open(self, filename, action=None): member in class:FileList
33 # Don't create window, perform 'action', e.g. open in same window
39 edit = self.open(filename)
87 "You now have multiple edit windows open for %r" % (filename,),
117 flist.open(filename)
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/systrace/
ISystraceOptionsDialog.java 2 * Copyright (C) 2012 The Android Open Source Project
22 int open(); method in interface:ISystraceOptionsDialog
  /system/core/libstats/
statsd_writer.h 2 * Copyright (C) 2018, The Android Open Source Project
37 int (*open)(); /* can be called multiple times, reusing current resources */ member in struct:android_log_transport_write
  /test/vts/utils/python/controllers/attenuator_lib/minicircuits/
telnet.py 2 # Copyright 2016- The Android Open Source Project
49 def open(self, host, port=23): member in class:AttenuatorInstrument
60 self._tnhelper.open(host, port)
81 True if there is a successfully open connection to the AttenuatorInstrument
107 This error occurs if the underlying telnet connection to the instrument is not open.
117 raise attenuator.InvalidOperationError("Connection not open!")
140 This error occurs if the underlying telnet connection to the instrument is not open.
149 raise attenuator.InvalidOperationError("Connection not open!")
  /tools/test/connectivity/acts/framework/acts/controllers/attenuator_lib/minicircuits/
telnet.py 3 # Copyright 2016- The Android Open Source Project
51 def open(self, host, port=23): member in class:AttenuatorInstrument
62 self._tnhelper.open(host, port)
82 True if there is a successfully open connection to the AttenuatorInstrument
108 This error occurs if the underlying telnet connection to the instrument is not open.
118 raise attenuator.InvalidOperationError("Connection not open!")
139 This error occurs if the underlying telnet connection to the instrument is not open.
148 raise attenuator.InvalidOperationError("Connection not open!")
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
OutputPort.java 2 * Copyright (C) 2011 The Android Open Source Project
44 public void open() { method in class:OutputPort
45 super.open();
47 mTargetPort.open();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
text_file.py 36 TextFile creates its own using the 'open()' builtin.
103 self.open (filename)
115 def open (self, filename): member in class:TextFile
116 """Open a new file named 'filename'. This overrides both the
120 self.file = open (self.filename, 'r')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixfile.py 3 f = posixfile.open(filename, [mode, [bufsize]])
62 states = ['open', 'closed']
76 def open(self, name, mode='r', bufsize=-1): member in class:_posixfile_
78 return self.fileopen(__builtin__.open(name, mode, bufsize))
220 def open(name, mode='r', bufsize=-1): function
221 """Public routine to open a file as a posixfile object."""
222 return _posixfile_().open(name, mode, bufsize)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bufio.py 16 # Write s + "\n" + s to file, then open it and ensure that successive
19 # Ensure we can open TESTFN for writing.
24 f = self.open(support.TESTFN, "wb")
31 f = open(support.TESTFN, "rb")
66 open = io.open variable in class:CBufferSizeTest
69 open = staticmethod(pyio.open) variable in class:PyBufferSizeTest
72 open = open variable in class:BuiltinBufferSizeTest
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpConnector.java 25 * This interface contains the basic methods necessary to open and use a
30 public void open(String address) throws IOException; method in interface:Support_HttpConnector
Support_HttpServerSocket.java 68 public void open() throws IOException { method in class:Support_HttpServerSocket
Support_URLConnector.java 37 * @see com.ibm.support.Support_HttpConnector#open(String)
39 public void open(String address) throws IOException { method in class:Support_URLConnector
  /external/boringssl/src/crypto/fipsmodule/cipher/
internal.h 92 int (*open)(const EVP_AEAD_CTX *ctx, uint8_t *out, size_t *out_len, member in struct:evp_aead_st

Completed in 666 milliseconds

1 2 34 5 6 7 8 91011>>