HomeSort by relevance Sort by last modified time
    Searched refs:open (Results 276 - 300 of 2894) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
rule_bison.py 89 outputHFile = open(outputHTmp)
97 outputHFile = open(outputH, 'w')
  /external/webkit/Source/WebCore/storage/
IDBKeyRange.h 52 static PassRefPtr<IDBKeyRange> lowerBound(PassRefPtr<IDBKey> bound, bool open = false);
53 static PassRefPtr<IDBKeyRange> upperBound(PassRefPtr<IDBKey> bound, bool open = false);
  /external/webkit/Source/WebKit/chromium/scripts/
generate_devtools_html.py 59 inspector_html = open(inspector_html_name, 'r')
60 devtools_html = open(devtools_html_name, 'w')
  /external/webkit/Source/WebKit/scripts/
generate-webkitversion.pl 61 unless (open INPUT, "<", $configFile) { print STDERR "File does not exist: $configFile\n";}
120 open F, ">$headerPath";
  /external/webkit/Tools/Scripts/
check-for-weak-vtables-and-externals 29 # "check-for-weak-vtables-and-externals" script for WebKit Open Source Project
60 if (!open NM, "(nm -m '$executablePath' | c++filt | sed 's/^/STDOUT:/') 2>&1 |") {
61 print "ERROR: Could not open $executablePath\n";
118 open(TOUCH, ">", $path) or die "$!";
do-file-rename 102 open FILE, $file or die;
113 open FILE, ">", $file or die;
roll-over-ChangeLogs 43 File.open path, "w" do |file|
set-webkit-configuration 66 open CONFIGURATION, ">", "$baseProductDir/Configuration" or die;
73 open ARCHITECTURE, ">", "$baseProductDir/Architecture" or die;
split-file-by-class 44 open(OLDFILE, "<", $filename) or die "File does not exist: $filename\n";
94 open(NEWHEADER, ">", "$classname.h") or die "File does not exist: $filename\n";
109 open(OLDCPP, "<", "$classname.cpp.original") or die "Failed to copy file for reading: $filename\n";
110 open(NEWCPP, ">", "$classname.cpp") or die "File does not exist: $filename\n";
158 system("open " . join(".* ", keys(%classDefs)) . ".*");
  /external/webkit/Tools/Scripts/webkitpy/common/system/
zip_mock.py 43 def open(self, filename): member in class:MockZip
51 contents = self.open(filename).contents()
  /external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
osx_last_crash.rb 16 File.open(filename).readlines.each { |line|
  /external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
osx_last_crash.rb 31 File.open(filename).readlines.each { |line|
  /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++/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, std::ios_base::out | std::ios_base::in
41 assert(f.open(temp, 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, std::ios_base::out | std::ios_base::in
42 assert(f.open(temp, 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, std::ios_base::out | std::ios_base::in
43 assert(f.open(temp, std::ios_base::out | std::ios_base::in
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.cons/
move.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
27 assert(f.open(temp, std::ios_base::out | std::ios_base::in
41 assert(f.open(temp, std::ios_base::out | std::ios_base::in
  /ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/fstreams/filebuf.virtuals/
pbackfail.pass.cpp 5 // This file is dual licensed under the MIT and the University of Illinois Open
40 assert(f.open("underflow.dat", std::ios_base::in) != 0);
48 assert(f.open("underflow.dat", std::ios_base::in | std::ios_base::out) != 0);
  /packages/apps/Music/src/com/android/music/
IMediaPlaybackService.aidl 3 ** Copyright 2007, The Android Open Source Project
25 void open(in long [] list, int position);
  /system/core/libdiskconfig/
diskutils.c 3 * Copyright 2008, The Android Open Source Project
44 if ((src_fd = open(src, O_RDONLY)) < 0) {
45 ALOGE("Could not open %s for reading (errno=%d).", src, errno);
50 if ((dst_fd = open(dst, O_RDWR)) < 0) {
51 ALOGE("Could not open '%s' for read/write (errno=%d).", dst, errno);
  /system/core/libsparse/
simg2img.c 2 * Copyright (C) 2010 The Android Open Source Project
51 out = open(argv[argc - 1], O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0664);
53 fprintf(stderr, "Cannot open output file %s\n", argv[argc - 1]);
61 in = open(argv[i], O_RDONLY | O_BINARY);
63 fprintf(stderr, "Cannot open input file %s\n", argv[i]);

Completed in 2793 milliseconds

<<11121314151617181920>>