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

1 2 3 45 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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')
  /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)
SearchDialogBase.py 14 def open(self, text, searchphrase=None): member in class:SearchDialogBase
  /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/darwin-x86/2.7.5/lib/python2.7/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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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')
  /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)
SearchDialogBase.py 14 def open(self, text, searchphrase=None): member in class:SearchDialogBase
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/handlers/
StaticPortConfigHandler.java 2 * Copyright (C) 2012 The Android Open Source Project
30 dlg.open();
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPooledConnAdapter.java 114 public void open(HttpRoute route, method in class:AbstractPooledConnAdapter
119 poolEntry.open(route, context, params);
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbSocket.java 2 * Copyright (C) 2011 The Android Open Source Project
38 public boolean open(String destination) { method in class:AdbSocket
  /external/apache-http/src/org/apache/http/conn/
ManagedClientConnection.java 67 * The return value is well-defined only while the connection is open.
68 * It may change even while the connection is open.
89 * If this connection is open, and the underlying socket is an
110 * @param route the route along which to open. It will be opened to
117 void open(HttpRoute route, HttpContext context, HttpParams params) method in interface:ManagedClientConnection
124 * The route is the one previously passed to {@link #open open}.
173 * The route is the one previously passed to {@link #open open}.
  /external/chromium/net/http/
mock_gssapi_library_posix.h 30 int open);
41 int open; member in class:net::test::GssContextMockImpl
177 int* open);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBFactory.cpp 96 PassRefPtr<IDBOpenDBRequest> IDBFactory::open(ExecutionContext* context, const String& name, unsigned long long version, ExceptionState& exceptionState) function in class:WebCore::IDBFactory
98 IDB_TRACE("IDBFactory::open");
130 blink::Platform::current()->idbFactory()->open(name, version, transactionId, WebIDBCallbacksImpl::create(request).leakPtr(), WebIDBDatabaseCallbacksImpl::create(databaseCallbacks.release()).leakPtr(), createDatabaseIdentifierFromSecurityOrigin(context->securityOrigin()));
134 PassRefPtr<IDBOpenDBRequest> IDBFactory::open(ExecutionContext* context, const String& name, ExceptionState& exceptionState) function in class:WebCore::IDBFactory
136 IDB_TRACE("IDBFactory::open");
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
CompositeResourceLoader.java 53 public Reader open(String name) throws IOException { method in class:CompositeResourceLoader
55 Reader reader = loader.open(name);
65 Reader reader = open(name);
75 throw new IllegalArgumentException("I can't close a reader I didn't open.");
93 * search order as {@link #open(String)}.
  /external/openssh/openbsd-compat/
bsd-cygwin_util.c 34 #if defined(open) && open == binary_open
35 # undef open macro
56 return (open(filename, flags | O_BINARY, mode));
  /external/stlport/stlport/stl/
_messages_facets.h 63 catalog open(const string& __fn, const locale& __loc) const function in class:messages
96 inline catalog open(const string& __fn, const locale& __loc) const function in class:messages
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
ThroughputFilter.java 2 * Copyright (C) 2011 The Android Open Source Project
64 public void open(FilterContext env) { method in class:ThroughputFilter
  /frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/helpers/
AppHelperBase.java 2 * Copyright (C) 2013 The Android Open Source Project
51 abstract public void open(); method in class:AppHelperBase
58 * @return true if open, else false.
  /hardware/libhardware/modules/camera/
CameraHAL.cpp 2 * Copyright (C) 2012 The Android Open Source Project
89 int CameraHAL::open(const hw_module_t* mod, const char* name, hw_device_t** dev) function in class:default_camera_hal::CameraHAL
107 return mCameras[id]->open(mod, dev);
129 return gCameraHAL.open(mod, name, dev);
133 open : open_dev
143 author : "The Android Open Source Project",
  /hardware/qcom/media/mm-video-legacy/vidc/common/src/
vidc_color_converter.cpp 89 bool omx_c2d_conv::open(unsigned int height,unsigned int width, function in class:omx_c2d_conv
  /hardware/qcom/media/mm-video-v4l2/vidc/common/src/
vidc_color_converter.cpp 99 bool omx_c2d_conv::open(unsigned int height,unsigned int width, function in class:omx_c2d_conv
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_messages_facets.h 63 catalog open(const string& __fn, const locale& __loc) const function in class:messages
96 inline catalog open(const string& __fn, const locale& __loc) const function in class:messages

Completed in 771 milliseconds

1 2 3 45 6 7 8 91011>>