HomeSort by relevance Sort by last modified time
    Searched defs:open (Results 226 - 250 of 448) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/expat/lib/
xmltok_impl.c 9 Copyright (c) 1997-2000 Thai Open Source Software Center Ltd
610 int open; local
617 open = BYTE_TYPE(enc, ptr);
618 if (open == BT_QUOT || open == BT_APOS)
620 switch (open) {
636 if (t == open)
964 PREFIX(scanLit)(int open, const ENCODING *enc,
975 if (t != open)
1474 int open = 0; \/* defined when state == inValue; local
    [all...]
  /external/fonttools/Lib/fontTools/misc/
py23.py 9 'tounicode', 'Tag', 'open', 'range', 'xrange', 'round', 'Py23Error',
183 def open(file, mode='r', buffering=-1, encoding=None, errors=None, function
185 """ Wrapper around `io.open` that bridges the differences between Python 2
186 and Python 3's built-in `open` functions. In Python 2, `io.open` is a
187 backport of Python 3's `open`, whereas in Python 3, it is an alias of the
188 built-in `open` function.
213 O_BINARY'ed before I pass them on to io.open.
245 return _io.open(
249 return _io.open(
    [all...]
  /external/freetype/include/freetype/internal/
pshints.h 89 * - Open a new hint recording session by calling the `open' method.
323 * open ::
324 * The function to open a recording session.
345 T1_Hints_OpenFunc open; member in struct:T1_Hints_FuncsRec_
376 * - Open a new hint recording session by calling the `open' method.
637 * open ::
638 * The function to open a recording session.
659 T2_Hints_OpenFunc open; member in struct:T2_Hints_FuncsRec_
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
MediaStoreThumbFetcher.java 57 inputStream = fetcher.open(context, mediaStoreUri);
131 public InputStream open(Context context, Uri uri) throws FileNotFoundException { method in class:MediaStoreThumbFetcher.ThumbnailStreamOpener
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DecodeJob.java 268 os = fileOpener.open(file);
288 public OutputStream open(File file) throws FileNotFoundException { method in class:DecodeJob.FileOpener
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
GuiceFilter.java 130 RequestScoper.CloseableScope scope = new Context(originalRequest, request, response).open();
207 public CloseableScope open() { method in class:GuiceFilter.Context
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
XMLRecordReader.java 48 public boolean open(String title) { method in class:XMLRecordReader
XMLRecordWriter.java 33 public boolean open(String title) { method in class:XMLRecordWriter
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
XMLRecordReader.java 44 public boolean open(String title) { method in class:XMLRecordReader
XMLRecordWriter.java 29 public boolean open(String title) { method in class:XMLRecordWriter
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
Checker.java 149 dataFile.open();
  /external/libevent/sample/
http-server.c 57 #ifndef open
58 #define open _open macro
290 if ((fd = open(whole_path, O_RDONLY)) < 0) {
291 perror("open");
  /external/libxcam/xcore/
v4l2_device.cpp 142 V4l2Device::open () function in class:XCam::V4l2Device
152 XCAM_LOG_DEBUG ("v4l2 device open failed, there's no device name");
155 _fd = ::open (_name, O_RDWR);
157 XCAM_LOG_DEBUG ("open device(%s) failed", _name);
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlStreamRenderer.java 43 * or missing close and open tags.
58 private boolean open; field in class:HtmlStreamRenderer
118 if (open) { throw new IllegalStateException(); }
119 open = true;
123 if (!open) { throw new IllegalStateException(); }
127 open = false;
138 return open;
151 if (!open) { throw new IllegalStateException(); }
224 if (!open) { throw new IllegalStateException(); }
265 if (!open) { throw new IllegalStateException();
    [all...]
  /external/pdfium/fpdfsdk/pwl/
cpwl_appstream.cpp 82 ByteString open,
85 *stream_ << open << "\n"; local
    [all...]
  /external/python/cpython2/Lib/bsddb/
dbshelve.py 80 def open(filename, flags=db.DB_CREATE, mode=0660, filetype=db.DB_HASH, function
88 db = dbshelve.open(filename)
110 d.open(filename, dbname, filetype, flags, mode)
181 def open(self, *args, **kwargs): member in class:DBShelf
182 self.db.open(*args, **kwargs)
280 # key_range, open, remove, rename, stat, sync,
  /external/python/cpython2/Lib/
codecs.py 19 __all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",
344 stream must be a file-like object open for writing
417 stream must be a file-like object open for reading
732 # these are needed to make "with codecs.open(...)" work properly
858 def open(filename, mode='rb', encoding=None, errors='strict', buffering=1): function
860 """ Open an encoded file using the given mode and return
871 open the file in binary read mode.
880 buffering has the same meaning as for the builtin open() API.
898 file = __builtin__.open(filename, mode, buffering)
    [all...]
sunau.py 39 f = sunau.open(file, 'r')
40 where file is either the name of a file or an open file pointer.
41 The open file pointer must have methods read(), seek(), and close().
72 f = sunau.open(file, 'w')
73 where file is either the name of a file or an open file pointer.
74 The open file pointer must have methods write(), tell(), seek(), and
157 f = __builtin__.open(f, 'rb')
295 f = __builtin__.open(f, 'wb')
480 def open(f, mode=None): function
493 openfp = open
    [all...]
webbrowser.py 12 __all__ = ["Error", "open", "open_new", "open_new_tab", "get", "register"]
55 # It is recommended one does "import webbrowser" and uses webbrowser.open(url)
58 def open(url, new=0, autoraise=True): function
61 if browser.open(url, new, autoraise):
66 return open(url, 1)
69 return open(url, 2)
147 def open(self, url, new=0, autoraise=True): member in class:BaseBrowser
151 return self.open(url, 1)
154 return self.open(url, 2)
171 def open(self, url, new=0, autoraise=True) member in class:GenericBrowser
188 def open(self, url, new=0, autoraise=True): member in class:BackgroundBrowser
259 def open(self, url, new=0, autoraise=True): member in class:UnixBrowser
350 def open(self, url, new=0, autoraise=True): member in class:Konqueror
438 def open(self, url, new=0, autoraise=True): member in class:Grail
540 def open(self, url, new=0, autoraise=True): member in class:register_X_browsers.WindowsDefault
583 def open(self, url, new=0, autoraise=True): member in class:.MacOSX
620 def open(self, url, new=0, autoraise=True): member in class:.MacOSXOSAScript
    [all...]
  /external/python/cpython2/Lib/idlelib/
IOBinding.py 2 # - IOBinding.open() replaces the current window with the opened file,
149 self.__id_open = self.text.bind("<<open-window-from-file>>", self.open)
160 self.text.unbind("<<open-window-from-file>>", self.__id_open)
198 def open(self, event=None, editFile=None): member in class:IOBinding
207 # If editFile is valid and already open, flist.open will
211 # pass self.loadfile to flist.open so it will load the file
212 # in the current window (if the file is not already open)
218 flist.open(filename, self.loadfile
591 def open(self, event): member in class:_io_binding.MyEditWin
    [all...]
  /external/python/cpython2/Mac/Demo/mlte/
mlted.py 22 def open(self, path, name, data): member in class:MlteWindow
87 fp = open(self.path, 'wb') # NOTE: wb, because data has CR for end-of-line
180 self.newitem = MenuItem(m, "New window", "N", self.open)
181 self.openitem = MenuItem(m, "Open...", "O", self.openfile)
262 def open(self, *args): member in class:Mlted
275 fp = open(path, 'rb') # NOTE binary, we need cr as end-of-line
286 w.open(path, name, data)
  /external/python/cpython2/Modules/expat/
xmltok_impl.c 9 Copyright (c) 1997-2000 Thai Open Source Software Center Ltd
610 int open; local
617 open = BYTE_TYPE(enc, ptr);
618 if (open == BT_QUOT || open == BT_APOS)
620 switch (open) {
636 if (t == open)
964 PREFIX(scanLit)(int open, const ENCODING *enc,
975 if (t != open)
1474 int open = 0; \/* defined when state == inValue; local
    [all...]
  /external/python/cpython2/Modules/zlib/
gzguts.h 47 # define open _open macro
  /external/python/cpython3/Lib/
codecs.py 20 __all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",
352 stream must be a file-like object open for writing.
427 stream must be a file-like object open for reading.
865 def open(filename, mode='r', encoding=None, errors='strict', buffering=1): function
867 """ Open an encoded file using the given mode and return
876 The default file mode is 'r', meaning to open the file in read mode.
885 buffering has the same meaning as for the builtin open() API.
898 file = builtins.open(filename, mode, buffering)
    [all...]
  /external/python/cpython3/Lib/idlelib/
iomenu.py 114 # Open returns focus to self.editwin if aborted.
120 self.__id_open = self.text.bind("<<open-window-from-file>>", self.open)
131 self.text.unbind("<<open-window-from-file>>", self.__id_open)
169 def open(self, event=None, editFile=None): member in class:IOBinding
178 # If editFile is valid and already open, flist.open will
182 # pass self.loadfile to flist.open so it will load the file
183 # in the current window (if the file is not already open)
189 flist.open(filename, self.loadfile
552 def open(self, event): member in class:_io_binding.MyEditWin
    [all...]

Completed in 998 milliseconds

1 2 3 4 5 6 7 8 91011>>