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

<<11121314151617181920>>

  /external/clang/utils/analyzer/
reducer.pl 21 open(OUT, ">$scriptFile") or die "$prog: cannot create '$scriptFile'\n";
41 open(IN, "$reduceOut") or exit(\$BAD);
  /external/compiler-rt/BlocksRuntime/tests/
testfilerunner.h 4 // This file is distributed under the University of Illinois Open Source
91 bool open; // this problem is still open - e.g. unresolved variable
99 @property bool hasObjC, hasRR, hasGC, hasCPlusPlus, wantsC99, supposedToNotCompile, open, wants32, wants64; variable
  /external/eigen/bench/spbench/
spbenchsolver.cpp 51 statbuf.open(statFile.c_str(), std::ios::out);
58 std::cerr << "Unable to open the provided file for writting... \n";
81 statbuf.open(statFile.c_str(), std::ios::app);
  /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);
  /external/libvpx/libvpx/examples/includes/
vp8_doc_tools.php 135 * @param $open str - Opening expression to match
141 function do_geshi($blob, $open = '<pre>',
145 $regexp = '|' . $open . '(.*?)' . $close . '|si';
  /external/libvpx/libvpx/tools/
intersect-diffs.py 53 old_hunks = [x for x in diff.ParseDiffHunks(open(sys.argv[1], "r"))]
54 new_hunks = [x for x in diff.ParseDiffHunks(open(sys.argv[2], "r"))]
  /external/marisa-trie/tests/
io-test.cc 24 writer.open("io-test.dat");
35 writer.open("io-test.dat", false, 4, SEEK_SET);
42 writer.open("io-test.dat", false, 0, SEEK_END);
49 reader.open("io-test.dat");
66 mapper.open("io-test.dat");
83 writer.open("io-test.dat");
88 reader.open("io-test.dat");
127 int fd = ::open("io-test.dat", O_RDONLY);
  /external/marisa-trie/v0_1_5/tests/
io-test.cc 25 writer.open("io-test.dat");
36 writer.open("io-test.dat", false, 4, SEEK_SET);
43 writer.open("io-test.dat", false, 0, SEEK_END);
50 reader.open("io-test.dat");
67 mapper.open("io-test.dat");
84 writer.open("io-test.dat");
89 reader.open("io-test.dat");
128 int fd = ::open("io-test.dat", O_RDONLY);
  /external/mesa3d/src/glsl/tests/
compare_ir 40 with open(sys.argv[1]) as f:
42 with open(sys.argv[2]) as f:
  /external/openssl/apps/
CA.pl.in 95 open OUT, ">${CATOP}/index.txt";
97 open OUT, ">${CATOP}/crlnumber";
176 open IN, $infile;
177 open OUT, ">$outfile";
  /external/qemu/distrib/sdl-1.2.15/Xcode/SDL/pkg-support/devel-resources/
install.sh 75 # open up the README file
76 sudo -u $USER open ~/"Readme SDL Developer.txt"
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_ataridevmouse.c 61 handle = open(mousedev, 0);
66 handle = open(DEVICE_NAME, 0);
  /external/valgrind/main/none/tests/
rlimit64_nofile.c 89 if (open("/dev/null", O_RDONLY) < 0)
91 perror("open");
95 if ((fd = open("/dev/null", O_RDONLY)) >= 0)
97 fprintf(stderr, "open succeeded with fd %d - it should have failed!\n", fd);
101 perror("open");
rlimit_nofile.c 86 if (open("/dev/null", O_RDONLY) < 0)
88 perror("open");
92 if ((fd = open("/dev/null", O_RDONLY)) >= 0)
94 fprintf(stderr, "open succeeded with fd %d - it should have failed!\n", fd);
98 perror("open");
  /external/wpa_supplicant_8/wpa_supplicant/utils/
log2pcap.py 34 input_file = open(input, 'r')
35 pcap_file = open(pcap, 'w')
  /external/zlib/src/contrib/iostream2/
zstream.h 55 izstream(FILE* fp) : m_fp(0) { open(fp); }
56 izstream(const char* name) : m_fp(0) { open(name); }
60 * open() can be used to read a file which is not in gzip format;
65 void open(const char* name) { function in class:izstream
70 void open(FILE* fp) { function in class:izstream
162 open(fp, level);
166 open(name, level);
177 void open(const char* name, int level = Z_DEFAULT_COMPRESSION) { function in class:ozstream
184 /* open from a FILE pointer.
186 void open(FILE* fp, int level = Z_DEFAULT_COMPRESSION) function in class:ozstream
    [all...]
  /frameworks/base/core/java/android/nfc/
INfcAdapterExtras.aidl 2 * Copyright (C) 2011 The Android Open Source Project
26 Bundle open(in String pkg, IBinder b);
  /frameworks/compile/libbcc/include/bcc/Support/
FileBase.h 2 * Copyright 2012, The Android Open Source Project
74 // The 2nd argument to the POSIX open().
83 // Open mName with flag mOpenFlags (using POSIX open().)
84 bool open();
96 return open();
104 // pOpenFlags is the 2nd argument to the POSIX open(). pFlags are the flags to
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipService.aidl 2 * Copyright (C) 2010 The Android Open Source Project
28 void open(in SipProfile localProfile);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
member_swap.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
26 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
41 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
move_assign.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
27 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
42 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
nonmember_swap.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
28 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in
43 assert(f.open(temp.c_str(), std::ios_base::out | std::ios_base::in

Completed in 290 milliseconds

<<11121314151617181920>>