/external/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
|
/external/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"));
|
/external/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);
|
/external/lldb/test/settings/ |
main.cpp | 5 // This file is distributed under the University of Illinois Open Source 30 outfile.open("output1.txt"); 32 outfile.open("output2.txt");
|
/external/lldb/utils/git-svn/ |
convert.py | 30 with open(file, 'r') as f_in: 50 with open(file, 'w') as f_out:
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
myocamlbuild.ml | 0 open Ocamlbuild_plugin;;
|
toy.ml | 5 open Llvm 6 open Llvm_executionengine 7 open Llvm_target 8 open Llvm_scalar_opts
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
myocamlbuild.ml | 0 open Ocamlbuild_plugin;;
|
toy.ml | 5 open Llvm 6 open Llvm_executionengine 7 open Llvm_target 8 open Llvm_scalar_opts
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
myocamlbuild.ml | 0 open Ocamlbuild_plugin;;
|
toy.ml | 5 open Llvm 6 open Llvm_executionengine 7 open Llvm_target 8 open Llvm_scalar_opts
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
myocamlbuild.ml | 0 open Ocamlbuild_plugin;;
|
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,
|
/bionic/libc/bionic/ |
daemon.c | 2 * Copyright (C) 2008 The Android Open Source Project 41 int fd = open("/dev/null", O_RDWR);
|
/development/ndk/platforms/android-3/include/ |
fcntl.h | 2 * Copyright (C) 2008 The Android Open Source Project 46 extern int open(const char* path, int mode, ...);
|
/device/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_helper.c | 45 int file_fd = open(filename, O_RDWR | O_CREAT, 0777); 48 CDBG_HIGH("%s: cannot open file\n", __func__);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_HttpConnector.java | 25 * This interface contains the basic methods necessary to open and use a 30 public void open(String address) throws IOException; method in interface:Support_HttpConnector
|
/external/bison/lib/ |
fcntl.in.h | 69 /* Native Windows platforms declare open(), creat() in <io.h>. */ 111 # undef open 112 # define open rpl_open 114 _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...) 116 _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...)); 118 _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...)); 120 /* On HP-UX 11, in C++ mode, open() is defined as an inline function with a 123 _GL_CXXALIASWARN (open); 126 # undef open 127 /* Assume open is always declared. * [all...] |
/external/chromium_org/build/toolchain/win/ |
setup_toolchain.py | 69 with open(source_path) as source_file: 74 with open("gyp-win-tool", 'w') as tool_file: 98 with open('environment.x86', 'wb') as env_file: 107 with open('environment.x64', 'wb') as env_file:
|
/external/chromium_org/build/util/ |
version.py | 23 The file must exist, otherwise you get the Python exception from open(). 25 for line in open(file_name, 'r').readlines(): 82 template = open(file_name, 'r').read() 92 old_contents = open(file_name, 'r').read() 99 open(file_name, 'w').write(contents)
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
FilePrintStream.h | 45 static PassOwnPtr<FilePrintStream> open(const char* filename, const char* mode);
|