HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 26 - 50 of 1907) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/droiddriver/src/com/google/android/droiddriver/util/
FileUtils.java 5 * you may not use this file except in compliance with the License.
24 import java.io.File;
33 * Opens file at {@code path} to output. If any directories on {@code path} do
34 * not exist, they will be created. The file will be readable to all.
37 File file = getAbsoluteFile(path); local
39 Logs.log(Log.INFO, "opening file " + file.getAbsolutePath());
40 BufferedOutputStream stream = new BufferedOutputStream(new FileOutputStream(file));
41 file.setReadable(true /* readable */, false/* ownerOnly */)
53 File file = new File(path); local
    [all...]
  /build/core/combo/
HOST_linux-x86.mk 5 # you may not use this file except in compliance with the License.
20 # $(1): The file to check
21 define get-file-size
  /build/core/
distdir.mk 5 # you may not use this file except in compliance with the License.
33 # $(1): source file
34 # $(2): destination file
35 # $(3): goals that should copy the file
37 define copy-one-dist-file
41 $$(copy-file-to-new-target-with-cp)
47 # copy-one-dist-file to avoid multiple rules for the same target.
54 # $(2): the dist files to add to those goals. If the file contains ':',
55 # the text following the colon is the name that the file is copied
59 $(foreach file,$(2),
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
IdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
22 * Representation of a reference to an item inside a Dalvik file.
47 public void addContents(DexFile file) {
48 TypeIdsSection typeIds = file.getTypeIds();
MemberIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
20 * Member (field or method) refs list section of a {@code .dex} file.
24 * Constructs an instance. The file offset is initially unknown.
28 * @param file {@code non-null;} file that this instance is part of
30 public MemberIdsSection(String name, DexFile file) {
31 super(name, file, 4);
  /dalvik/dx/src/com/android/dx/dex/file/
IdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a reference to an item inside a Dalvik file.
47 public void addContents(DexFile file) {
48 TypeIdsSection typeIds = file.getTypeIds();
  /external/bison/examples/calc++/
calc++-driver.hh 35 std::string file; member in class:calcxx_driver
  /external/chromium/base/memory/
scoped_temp_dir_unittest.cc 3 // found in the LICENSE file.
100 base::PlatformFile file = base::CreatePlatformFile(file_path, file_flags, local
102 EXPECT_NE(base::kInvalidPlatformFileValue, file);
106 EXPECT_TRUE(base::ClosePlatformFile(file));
  /external/chromium/chrome/browser/
browsing_data_indexed_db_helper_browsertest.cc 3 // found in the LICENSE file.
57 const FilePath::CharType file[] = local
73 EXPECT_EQ(FilePath(file).value(), result[0].file_path.BaseName().value());
  /external/chromium_org/chrome/browser/net/
chrome_net_log.cc 3 // found in the LICENSE file.
46 FILE* file = NULL; local
48 file = _wfopen(log_path.value().c_str(), L"w");
50 file = fopen(log_path.value().c_str(), "w");
53 if (file == NULL) {
54 LOG(ERROR) << "Could not open file " << log_path.value()
58 net_log_logger_.reset(new net::NetLogLogger(file, *constants));
  /external/chromium_org/chrome/test/chromedriver/
util_unittest.cc 3 // found in the LICENSE file.
20 // file with the contents "COW\n".
25 base::FilePath file; local
26 Status status = UnzipSoleFile(temp_dir.path(), data, &file);
29 ASSERT_TRUE(base::ReadFileToString(file, &contents));
38 // file with the contents "COW\n".
44 base::FilePath file; local
45 Status status = UnzipSoleFile(temp_dir.path(), data, &file);
48 ASSERT_TRUE(base::ReadFileToString(file, &contents));
  /external/chromium_org/content/shell/browser/
shell_net_log.cc 3 // found in the LICENSE file.
48 FILE* file = NULL; local
50 file = _wfopen(log_path.value().c_str(), L"w");
52 file = fopen(log_path.value().c_str(), "w");
55 if (file == NULL) {
56 LOG(ERROR) << "Could not open file " << log_path.value()
60 net_log_logger_.reset(new net::NetLogLogger(file, *constants));
  /external/chromium_org/sandbox/win/tools/finder/
finder_fs.cc 3 // found in the LICENSE file.
55 HANDLE file; local
57 file = ::CreateFile(name.GetBuffer(),
65 if (file != INVALID_HANDLE_VALUE) {
68 ::CloseHandle(file);
77 file = ::CreateFile(name.GetBuffer(),
85 if (file != INVALID_HANDLE_VALUE) {
88 ::CloseHandle(file);
97 file = ::CreateFile(name.GetBuffer(),
105 if (file != INVALID_HANDLE_VALUE)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8FileCustom.cpp 43 ExceptionState exceptionState(ExceptionState::ConstructionContext, "File", info.Holder(), info.GetIsolate());
79 if (!properties.parseBlobPropertyBag(info[2], "File", exceptionState, info.GetIsolate())) {
92 RefPtr<File> file = blobBuilder.createFile(properties.contentType(), fileName, properties.lastModified());
93 v8SetReturnValue(info, file.release());
99 // implementation returns NaN. The File API says we should return the
101 // Section 7.2 of the File API spec. http://dev.w3.org/2006/webapi/FileAPI/
103 File* file = V8File::toNative(info.Holder()); local
104 double lastModified = file->lastModifiedDate()
115 File* file = V8File::toNative(info.Holder()); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
HTMLInputElementFileSystem.cpp 61 File* file = files->item(i); local
63 // FIXME: This involves synchronous file operation.
65 if (!getFileMetadata(file->path(), metadata))
69 String virtualPath = DOMFilePath::append("/", file->name());
  /external/chromium_org/third_party/WebKit/Source/wtf/
FilePrintStream.cpp 31 FilePrintStream::FilePrintStream(FILE* file, AdoptionMode adoptionMode)
32 : m_file(file)
46 FILE* file = fopen(filename, mode); local
47 if (!file)
50 return adoptPtr(new FilePrintStream(file));
FilePrintStream.h 42 FilePrintStream(FILE*, AdoptionMode = Adopt);
47 FILE* file() { return m_file; } function in class:WTF::FilePrintStream
53 FILE* m_file;
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
SourceLocation.h 4 // found in the LICENSE file.
15 SourceLocation() : file(0), line(0) { }
16 SourceLocation(int f, int l) : file(f), line(l) { }
20 return (file == other.file) && (line == other.line);
23 int file; member in struct:pp::SourceLocation
  /external/chromium_org/third_party/icu/source/test/intltest/
textfile.h 18 * This class implements access to a text data file located in the
24 * Open a file with the given name, in the given encoding, in the
34 * this file's encoding to Unicode. The EOL character(s) are not
60 FileStream* file; member in class:TextFile
  /external/chromium_org/third_party/icu/source/tools/gentest/
genres32.c 8 * file name: genres32.c
53 char file[512]; local
54 FILE *out;
56 uprv_strcpy(file,path);
57 if(file[strlen(file)-1]!=U_FILE_SEP_CHAR) {
58 uprv_strcat(file,U_FILE_SEP_STRING);
60 uprv_strcat(file,"testtable32.txt");
61 out = fopen(file, "w");
62 /*puts(file);*/
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
builder.cc 3 // found in the LICENSE file. See the AUTHORS file for names of contributors.
29 WritableFile* file; local
30 s = env->NewWritableFile(fname, &file);
35 TableBuilder* builder = new TableBuilder(options, file);
55 // Finish and check for file errors
57 s = file->Sync();
60 s = file->Close();
62 delete file;
63 file = NULL
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
7zFile.h 1 /* 7zFile.h -- File IO
21 /* ---------- File ---------- */
28 FILE *file;
43 /* reads max(*size, remain file's size) bytes */
58 CSzFile file; member in struct:__anon12261
67 CSzFile file; member in struct:__anon12262
76 CSzFile file; member in struct:__anon12263
  /external/chromium_org/third_party/ots/test/
table_dependencies_test.cc 3 // found in the LICENSE file.
14 do { file.name = new ots::OpenType##capname; } while (0)
17 if (!file.name) { \
20 file.name->data = reinterpret_cast<const uint8_t*>(1); \
21 file.name->length = 1; \
24 do { delete file.name; file.name = NULL; } while (0)
26 do { file.name->data = NULL; file.name->length = 0; } while (0)
43 ots::OpenTypeFile file; member in class:__anon13840::TableDependenciesTest
    [all...]
  /external/chromium_org/ui/gfx/
font_fallback_win_unittest.cc 3 // found in the LICENSE file.
40 std::string file; local
43 internal::ParseFontLinkEntry("TAHOMA.TTF", &file, &font);
44 EXPECT_EQ("TAHOMA.TTF", file);
47 internal::ParseFontLinkEntry("MSGOTHIC.TTC,MS UI Gothic", &file, &font);
48 EXPECT_EQ("MSGOTHIC.TTC", file);
51 internal::ParseFontLinkEntry("MALGUN.TTF,128,96", &file, &font);
52 EXPECT_EQ("MALGUN.TTF", file);
55 internal::ParseFontLinkEntry("MEIRYO.TTC,Meiryo,128,85", &file, &font);
56 EXPECT_EQ("MEIRYO.TTC", file);
    [all...]
  /external/chromium_org/webkit/common/blob/
shareable_file_reference_unittest.cc 3 // found in the LICENSE file.
22 // Create a file.
23 base::FilePath file; local
24 base::CreateTemporaryFileInDir(temp_dir.path(), &file);
25 EXPECT_TRUE(base::PathExists(file));
27 // Create a first reference to that file.
29 reference1 = ShareableFileReference::Get(file);
32 file, ShareableFileReference::DELETE_ON_FINAL_RELEASE, loop_proxy.get());
34 EXPECT_TRUE(file == reference1->path());
36 // Get a second reference to that file
    [all...]

Completed in 350 milliseconds

12 3 4 5 6 7 8 91011>>