/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
toy.ml | 5 open Llvm 6 open Llvm_executionengine 7 open Llvm_target 8 open Llvm_scalar_opts
|
/external/llvm/utils/ |
findsym.pl | 15 # Open the directory and read its contents, sorting by name and differentiating 25 open SYMS,
|
/external/okhttp/android/main/java/com/squareup/okhttp/ |
HttpHandler.java | 28 return newOkHttpClient(null /* proxy */).open(url); 35 return newOkHttpClient(proxy).open(url);
|
/external/openssh/ |
fixprogs | 26 if (!open(IN, "<".$infilename)) { 27 die("Couldn't open input file"); 30 if (!open(OUT, ">$outfilename")) { 31 die("Couldn't open output file $outfilename"); 47 open (STDIN, "</dev/null"); 48 open (STDOUT, ">/dev/null"); 49 open (STDERR, ">/dev/null");
|
/external/protobuf/examples/ |
add_person.py | 46 f = open(sys.argv[1], "rb") 56 f = open(sys.argv[1], "wb")
|
/external/protobuf/gtest/xcode/Scripts/ |
versiongenerate.py | 35 config_file = open("%s/configure.ac" % input_dir, 'r') 69 version_file = open("%s/Version.h" % output_dir, 'w')
|
/external/skia/gm/ |
gm_json.py | 90 file_contents = open(file_path, 'r').read() 95 with open(file_path, 'w') as outfile:
|
/external/v8/tools/ |
process-heap-prof.py | 55 logfile = open(filename, 'rb') 85 sys.exit('can\'t open %s' % filename)
|
/hardware/libhardware_legacy/vibrator/ |
vibrator.c | 2 * Copyright (C) 2008 The Android Open Source Project 36 fd = open(THE_DEVICE, O_RDWR); 54 fd = open(THE_DEVICE, O_RDWR);
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
DatagramChannelTest.java | 2 * Copyright (C) 2010 The Android Open Source Project 27 DatagramChannel dc = DatagramChannel.open(); 48 DatagramChannel dc = DatagramChannel.open();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/fstream.members/ |
close.pass.cpp | 5 // This file is dual licensed under the MIT and the University of Illinois Open 27 fs.open(temp.c_str(), std::ios_base::out); 36 fs.open(temp.c_str(), std::ios_base::out);
|
open_pointer.pass.cpp | 5 // This file is dual licensed under the MIT and the University of Illinois Open 15 // void open(const char* s, ios_base::openmode mode = ios_base::in|ios_base::out); 27 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out 40 fs.open(temp.c_str(), std::ios_base::in | std::ios_base::out
|
open_string.pass.cpp | 5 // This file is dual licensed under the MIT and the University of Illinois Open 15 // void open(const string& s, ios_base::openmode mode = ios_base::in|ios_base::out); 27 fs.open(temp, std::ios_base::in | std::ios_base::out 40 fs.open(temp, std::ios_base::in | std::ios_base::out
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ifstream.members/ |
open_string.pass.cpp | 5 // This file is dual licensed under the MIT and the University of Illinois Open 15 // void open(const string& s, ios_base::openmode mode = ios_base::in); 29 fs.open(std::string("test.dat")); 41 fs.open(std::string("test.dat"));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.members/ |
open_pointer.pass.cpp | 5 // This file is dual licensed under the MIT and the University of Illinois Open 15 // void open(const char* s, ios_base::openmode mode = ios_base::out); 30 fs.open(temp.c_str()); 47 fs.open(temp.c_str());
|
open_string.pass.cpp | 5 // This file is dual licensed under the MIT and the University of Illinois Open 15 // void open(const string& s, ios_base::openmode mode = ios_base::out); 30 fs.open(temp); 47 fs.open(temp);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
anydbm.py | 6 d = dbm.open(file, 'w', 0666) 11 d = anydbm.open(file, 'w') 57 def open(file, flag='r', mode=0666): function 58 """Open or create database at path given by *file*. 79 raise error, "need 'c' or 'n' flag to open new db" 85 return mod.open(file, flag, mode)
|
io.py | 2 builtin open function is defined in this module. 25 of open() are intended to be used as keyword arguments. 32 I/O classes. open() uses the file's blksize (as obtained by os.stat) if 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO", 55 open, FileIO, BytesIO, StringIO, BufferedReader, 59 OpenWrapper = _io.open # for compatibility with _pyio
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sunaudiodev.py | 15 fp = open(path, 'r') 19 a = sunaudiodev.open('w')
|
test_file.py | 22 self.f = self.open(TESTFN, 'wb') 50 self.f = self.open(TESTFN, 'rb') 58 self.f = self.open(TESTFN, 'r') 67 self.f = self.open(TESTFN, 'rb') 138 open = io.open variable in class:CAutoFileTests 141 open = staticmethod(pyio.open) variable in class:PyAutoFileTests 150 f = self.open(TESTFN, mode) 171 f = self.open(TESTFN, bad_mode 330 open = io.open variable in class:COtherFileTests 333 open = staticmethod(pyio.open) variable in class:PyOtherFileTests [all...] |
test_tarfile.py | 45 self.tar = tarfile.open(self.tarname, mode=self.mode, encoding="iso8859-1") 63 fobj1 = open(os.path.join(TEMPDIR, "ustar/regtype"), "rU") 79 fobj1 = open(os.path.join(TEMPDIR, "ustar/regtype"), "rU") 88 fobj = open(os.path.join(TEMPDIR, "ustar/regtype"), "rb") 165 # This test checks if tarfile.open() is able to open an empty tar 168 tarfile.open(tmpname, self.mode.replace("r", "w")).close() 170 tar = tarfile.open(tmpname, self.mode) 173 self.fail("tarfile.open() failed on empty archive") 178 # This test guarantees that tarfile.open() does not treat an empt [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
anydbm.py | 6 d = dbm.open(file, 'w', 0666) 11 d = anydbm.open(file, 'w') 57 def open(file, flag='r', mode=0666): function 58 """Open or create database at path given by *file*. 79 raise error, "need 'c' or 'n' flag to open new db" 85 return mod.open(file, flag, mode)
|
io.py | 2 builtin open function is defined in this module. 25 of open() are intended to be used as keyword arguments. 32 I/O classes. open() uses the file's blksize (as obtained by os.stat) if 44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO", 55 open, FileIO, BytesIO, StringIO, BufferedReader, 59 OpenWrapper = _io.open # for compatibility with _pyio
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sunaudiodev.py | 15 fp = open(path, 'r') 19 a = sunaudiodev.open('w')
|
test_file.py | 22 self.f = self.open(TESTFN, 'wb') 50 self.f = self.open(TESTFN, 'rb') 58 self.f = self.open(TESTFN, 'r') 67 self.f = self.open(TESTFN, 'rb') 138 open = io.open variable in class:CAutoFileTests 141 open = staticmethod(pyio.open) variable in class:PyAutoFileTests 150 f = self.open(TESTFN, mode) 171 f = self.open(TESTFN, bad_mode 330 open = io.open variable in class:COtherFileTests 333 open = staticmethod(pyio.open) variable in class:PyOtherFileTests [all...] |