HomeSort by relevance Sort by last modified time
    Searched refs:open (Results 726 - 750 of 4686) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/mtd/
blktrans.h 50 int (*open)(struct mtd_blktrans_dev *dev); member in struct:mtd_blktrans_ops
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
android_pmem.h 45 int (*open) (struct inode *, struct file *); member in struct:pmem_file_operations
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/mtd/
blktrans.h 50 int (*open)(struct mtd_blktrans_dev *dev); member in struct:mtd_blktrans_ops
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
android_pmem.h 45 int (*open) (struct inode *, struct file *); member in struct:pmem_file_operations
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/mtd/
blktrans.h 50 int (*open)(struct mtd_blktrans_dev *dev); member in struct:mtd_blktrans_ops
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
android_pmem.h 45 int (*open) (struct inode *, struct file *); member in struct:pmem_file_operations
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/mtd/
blktrans.h 50 int (*open)(struct mtd_blktrans_dev *dev); member in struct:mtd_blktrans_ops
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
android_pmem.h 45 int (*open) (struct inode *, struct file *); member in struct:pmem_file_operations
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/mtd/
blktrans.h 50 int (*open)(struct mtd_blktrans_dev *dev); member in struct:mtd_blktrans_ops
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
android_pmem.h 45 int (*open) (struct inode *, struct file *); member in struct:pmem_file_operations
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/mtd/
blktrans.h 50 int (*open)(struct mtd_blktrans_dev *dev); member in struct:mtd_blktrans_ops
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
android_pmem.h 45 int (*open) (struct inode *, struct file *); member in struct:pmem_file_operations
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/mtd/
blktrans.h 50 int (*open)(struct mtd_blktrans_dev *dev); member in struct:mtd_blktrans_ops
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
android_pmem.h 45 int (*open) (struct inode *, struct file *); member in struct:pmem_file_operations
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/mtd/
blktrans.h 50 int (*open)(struct mtd_blktrans_dev *dev); member in struct:mtd_blktrans_ops
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_queue.py 33 d.open(self.filename, db.DB_QUEUE, db.DB_CREATE)
58 d.open(self.filename)
61 print "after open" + '-' * 30
104 d.open(self.filename, db.DB_QUEUE, db.DB_CREATE)
129 d.open(self.filename)
133 print "after open" + '-' * 30
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_py.py 22 f = open(os.path.join(sources, "__init__.py"), "w")
27 f = open(os.path.join(sources, "README.txt"), "w")
74 open(os.path.join(sources, "__init__.py"), "w").close()
78 open(os.path.join(testdir, "testfile"), "w").close()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFileDialog.py 25 # - initialfile: initial file (ignored by the open dialog). preserved
74 class Open(_Dialog):
75 "Ask for a filename to open"
123 "Ask for a filename to open"
125 return Open(**options).show()
133 """Ask for multiple filenames to open
139 return Open(**options).show()
144 "Ask for a filename to open, and returned the opened file"
146 filename = Open(**options).show()
148 return open(filename, mode
    [all...]
  /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/test/
test_bsddb185.py 19 # Verify we can open a file known to be a hash v2 file
29 # Verify that anydbm.open does *not* create a bsddb185 file
33 anydbm.open(dbfile, "c").close()
test_compileall.py 18 with open(self.source_path, 'w') as file:
28 with open(self.bc_path, 'rb') as file:
41 with open(self.bc_path, 'rb') as file:
43 with open(self.bc_path, 'wb') as file:
test_cprofile.py 18 sys.stderr = open(TESTFN, 'w')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
user.py 43 f = open(pythonrc)
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
351 def open(self, url, new=0, autoraise=True): member in class:Konqueror
439 def open(self, url, new=0, autoraise=True): member in class:Grail
541 def open(self, url, new=0, autoraise=True): member in class:register_X_browsers.WindowsDefault
584 def open(self, url, new=0, autoraise=True): member in class:.MacOSX
621 def open(self, url, new=0, autoraise=True): member in class:.MacOSXOSAScript
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_queue.py 33 d.open(self.filename, db.DB_QUEUE, db.DB_CREATE)
58 d.open(self.filename)
61 print "after open" + '-' * 30
104 d.open(self.filename, db.DB_QUEUE, db.DB_CREATE)
129 d.open(self.filename)
133 print "after open" + '-' * 30

Completed in 466 milliseconds

<<21222324252627282930>>