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

1 2 3 45 6 7 8 91011>>

  /external/clang/tools/scan-view/share/
startfile.py 6 __all__ = ['open']
18 '''Base class for open program controllers.'''
23 def open(self, filename): member in class:BaseController
28 '''Controller for a generic open program.'''
61 # It is assumed that this kind of tools (gnome-open, kfmclient,
62 # exo-open, xdg-open and open for OSX) immediately exit after lauching
69 def open(self, filename): member in class:Controller
87 def open(self, filename) member in class:Controller.Start
200 def open(filename): function
    [all...]
  /external/devlib/devlib/utils/
uboot.py 43 :param start_prompt: The starting prompt to wait for during ``open()``.
52 def open(self, timeout=default_timeout): member in class:UbootMenu
54 "Open" the UEFI menu by sending an interrupt on STDIN after seeing the
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
ClassLoaderResourceLoader.java 44 * loader.open("my-template.cs");
45 * loader.open("subdir/my-template.cs");
66 public Reader open(String name) throws IOException { method in class:ClassLoaderResourceLoader
74 Reader reader = open(name);
ClassResourceLoader.java 39 * loader.open("my-template.cs");
40 * loader.open("subdir/my-template.cs");
45 * loader.open("my-template.cs");
71 public Reader open(String name) throws IOException { method in class:ClassResourceLoader
78 Reader reader = open(name);
FileSystemResourceLoader.java 45 public Reader open(String name) throws IOException { method in class:FileSystemResourceLoader
58 Reader reader = open(name);
InMemoryResourceLoader.java 40 public Reader open(String name) throws IOException { method in class:InMemoryResourceLoader
47 Reader reader = open(name);
ResourceLoader.java 41 * Open a resource. If this resource is not found, null should be returned.
48 * @throws IOException if resource fails to open
50 Reader open(String name) throws IOException; method in interface:ResourceLoader
53 * Open a resource or throw an exception if no such resource is found.
61 * @throws IOException if resource fails to open
92 * if a call to {@link #open(String)} would also return null.
  /external/libmojo/base/android/java/src/org/chromium/base/
ApkAssets.java 27 public static long[] open(Context context, String fileName) { method in class:ApkAssets
  /external/libxcam/xcore/
file_handle.cpp 39 open (name, option);
57 FileHandle::open (const char *name, const char *option) function in class:XCam::FileHandle
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
OkUrlFactory.java 53 public HttpURLConnection open(URL url) { method in class:OkUrlFactory
54 return open(url, client.getProxy());
57 HttpURLConnection open(URL url, Proxy proxy) { method in class:OkUrlFactory
82 return open(url);
86 return open(url, proxy);
  /external/python/cpython2/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')
  /external/python/cpython2/Lib/idlelib/
GrepDialog.py 20 dialog.open(text, searchphrase, io)
34 def open(self, text, searchphrase, io=None): member in class:GrepDialog
35 SearchDialogBase.open(self, text, searchphrase)
90 with open(fn) as f:
101 "(Hint: right-click to open locations.)"
SearchDialogBase.py 34 top (level widget): set in create_widgets() called from open().
35 text (Text searched): set in open(), only used in subclasses().
47 def open(self, text, searchphrase=None): member in class:SearchDialogBase
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/_builtinSuites/
builtin_Suite.py 1 """Suite builtin_Suite: Every application supports open, reopen, print, run, and quit
12 def open(self, _object, _attributes={}, **_arguments): member in class:builtin_Suite_Events
13 """open: Open the specified object(s)
14 Required argument: list of objects to open
33 """run: Run an application. Most applications will open an empty, untitled window.
52 """reopen: Reactivate a running application. Some applications will open a new untitled window if no window is open.
96 Keyword argument saving: specifies whether to save currently open documents
  /external/python/cpython2/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)
  /external/python/cpython2/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/python/cpython3/Lib/distutils/
text_file.py 33 TextFile creates its own using 'io.open()'.
100 self.open(filename)
111 def open(self, filename): member in class:TextFile
112 """Open a new file named 'filename'. This overrides both the
115 self.file = io.open(self.filename, 'r', errors=self.errors)
  /external/python/cpython3/Lib/idlelib/
grep.py 21 dialog.open(text, searchphrase, io)
35 def open(self, text, searchphrase, io=None): member in class:GrepDialog
36 SearchDialogBase.open(self, text, searchphrase)
88 with open(fn, errors='replace') as f:
99 "(Hint: right-click to open locations.)"
  /external/python/cpython3/Lib/test/
test_largefile.py 26 with self.open(TESTFN, mode) as f:
42 with cls.open(TESTFN, 'wb'):
52 with self.open(TESTFN, 'rb') as f:
83 with self.open(TESTFN, 'rb') as f:
96 with self.open(TESTFN, 'r+b') as f:
98 raise unittest.SkipTest("open().truncate() not available "
130 with self.open(TESTFN, 'rb') as f:
155 f = open(TESTFN, 'wb', buffering=0)
171 open = staticmethod(io.open) variable in class:CLargeFileTest
174 open = staticmethod(pyio.open) variable in class:PyLargeFileTest
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAssetManager.java 37 public final InputStream open(String fileName) throws IOException { method in class:ShadowAssetManager
  /external/syslinux/gpxe/src/include/gpxe/
open.h 23 * Parameter list for open() is:
30 * Parameter list for open() is:
37 * Parameter list for open() is:
54 /** Open URI
60 int ( * open ) ( struct xfer_interface *xfer, struct uri *uri ); member in struct:uri_opener
75 /** Open socket
82 int ( * open ) ( struct xfer_interface *xfer, struct sockaddr *peer, member in struct:socket_opener
  /frameworks/av/media/img_utils/src/
EndianUtils.cpp 2 * Copyright 2014 The Android Open Source Project
27 status_t EndianOutput::open() { function in class:android::img_utils::EndianOutput
29 return mOutput->open();
FileInput.cpp 2 * Copyright 2014 The Android Open Source Project
34 status_t FileInput::open() { function in class:android::img_utils::FileInput
36 ALOGW("%s: Open called when file %s already open.", __FUNCTION__, mPath.string());
41 ALOGE("%s: Could not open file %s", __FUNCTION__, mPath.string());
50 ALOGE("%s: Could not read file %s, file not open.", __FUNCTION__, mPath.string());
Input.cpp 2 * Copyright 2014 The Android Open Source Project
24 status_t Input::open() { return OK; } function in class:android::img_utils::Input
  /frameworks/av/services/oboeservice/
AAudioServiceEndpointCapture.cpp 2 * Copyright (C) 2017 The Android Open Source Project
47 aaudio_result_t AAudioServiceEndpointCapture::open(const aaudio::AAudioStreamRequest &request) { function in class:AAudioServiceEndpointCapture
48 aaudio_result_t result = AAudioServiceEndpointShared::open(request);

Completed in 469 milliseconds

1 2 3 45 6 7 8 91011>>