HomeSort by relevance Sort by last modified time
    Searched refs:open (Results 76 - 100 of 2756) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/make/
gyptest-noload.py 39 with open('relocate/noload/main.c', 'a') as src_file:
47 with open('relocate/noload/lib/shared.c', 'w') as shared_file:
  /external/chromium_org/tools/site_compare/operators/
equals.py 25 im1 = Image.open(file1)
26 im2 = Image.open(file2)
  /external/chromium_org/v8/tools/
concatenate-files.py 56 with open(filenames[-1], "wb") as target:
58 with open(filename, "rb") as current:
  /external/compiler-rt/test/tsan/
fd_close_norace.cc 10 int f = open("/dev/random", O_RDONLY);
17 int f = open("/dev/random", O_RDONLY);
  /external/libcxx/test/input.output/file.streams/fstreams/ifstream.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::in);
29 fs.open("test.dat");
41 fs.open("test.dat");
  /external/libcxx/test/input.output/file.streams/fstreams/ofstream.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());
36 fs.open(temp.c_str());
  /external/lldb/scripts/Python/
edit-swig-python-wrapper-file.py 41 with open(full_input_name, 'r') as f_in:
42 with open(full_output_name, 'w') as f_out:
  /external/lldb/test/terminal/
TestSTTYBeforeAndAfter.py 52 with open('child_send1.txt', 'w') as f_send1:
53 with open('child_read1.txt', 'w') as f_read1:
73 with open('child_send2.txt', 'w') as f_send2:
74 with open('child_read2.txt', 'w') as f_read2:
88 with open('child_send1.txt', 'r') as fs:
92 with open('child_read1.txt', 'r') as fr:
98 with open('child_send2.txt', 'r') as fs:
102 with open('child_read2.txt', 'r') as fr:
  /bionic/libc/upstream-freebsd/android/include/
freebsd-compat.h 2 * Copyright (C) 2013 The Android Open Source Project
45 #define _open open
  /dalvik/dx/src/com/android/multidex/
ClassPathElement.java 2 * Copyright (C) 2013 The Android Open Source Project
30 * Open a "file" from this {@code ClassPathElement}.
35 InputStream open(String path) throws IOException; method in interface:ClassPathElement
  /device/asus/fugu/libaudio/
audio_hal_hooks.c 2 * Copyright (C) 2011 The Android Open Source Project
23 .open = atv_audiodev_open,
33 .author = "The Android Open Source Project",
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
ANTLRFileStream.pm 28 open $fh, "<:encoding($encoding)", $file_name
29 or croak "Can't open $file_name: $!";
32 open $fh, '<', $file_name
33 or croak "Can't open $file_name: $!";
57 open $fh, "<:encoding($encoding)", $file_name
58 or croak "Can't open $file_name: $!";
61 open $fh, '<', $file_name
62 or croak "Can't open $file_name: $!";
  /external/bzip2/
format.pl 32 # check we can open infile
33 open( INFILE,"<$infile" ) or
40 open( OUTFILE,">$outfile" ) or
  /external/chromium_org/base/test/
test_file_util_linux.cc 18 ScopedFD fd(open(file.value().c_str(), O_RDONLY));
  /external/chromium_org/chrome/tools/build/
make_version_cc.py 30 output = open(cc_file, 'w')
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.idl 35 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, optional boolean open = false);
36 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, optional boolean open = false);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
read-checksum-from-png 38 with open(filename, 'r') as filehandle:
  /external/chromium_org/tools/gyp/test/compiler-override/
gyptest-compiler-global-settings.py 32 s = Template(open(gypfile + '.in').read())
33 output = open(gypfile, 'w')
48 s = Template(open(gypfile + '.in').read())
49 output = open(gypfile, 'w')
  /external/chromium_org/tools/gyp/test/relative/
gyptest-default.py 19 sln_data = open(sln, 'rb').read()
  /external/chromium_org/tools/gyp/test/win/vs-macros/
as.py 15 f = open(options.output, 'w')
  /external/chromium_org/tools/memory_inspector/
start_web_ui 16 webbrowser.open('http://localhost:%d' % HTTP_PORT)
  /external/chromium_org/v8/tools/testrunner/server/
signatures.py 35 with open(filename, "rb") as f:
45 with open(signature_file) as f:
51 with open(filename, "wb") as f:
54 with open(signature_file, "wb") as f:
  /external/clang/utils/TestUtils/
deep-stack.py 13 f = open('t.c','w')
  /external/guava/guava-tests/test/com/google/common/io/
CheckCloseSupplier.java 38 private final Set<Callback> open = Sets.newHashSet(); field in class:CheckCloseSupplier
68 open.remove(this);
74 open.add(callback);
82 * {@code Closeable} is not longer open.
91 return open.isEmpty();
  /external/libcxx/test/input.output/file.streams/fstreams/filebuf.members/
open_pointer.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
12 // basic_filebuf<charT,traits>* open(const char* s, ios_base::openmode mode);
23 assert(f.open(temp.c_str(), std::ios_base::out) != 0);
29 assert(f.open(temp.c_str(), std::ios_base::in) != 0);
38 assert(f.open(temp.c_str(), std::ios_base::out) != 0);
44 assert(f.open(temp.c_str(), std::ios_base::in) != 0);

Completed in 265 milliseconds

1 2 34 5 6 7 8 91011>>