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

1 2 3 4 5 6 7 8 91011>>

  /art/compiler/sea_ir/debug/
dot_gen.h 5 * you may not use this file except in compliance with the License.
97 // Stores options for turning a SEA IR graph to a .dot file.
104 LOG(INFO) << "Starting to write SEA string to file " << filename << std::endl;
107 // TODO: UniquePtr to close file properly. Switch to BufferedOutputStream.
108 art::File* file = art::OS::CreateEmptyFile(filename.c_str()); local
109 art::FileOutputStream fos(file);
113 LOG(INFO) << "Written SEA string to file.";
  /build/core/tasks/
sdk-addon.mk 4 # you may not use this file except in compliance with the License.
30 define stub-addon-jar-file
35 $(call stub-addon-jar-file,$(1)): $(1) | mkstubs
46 $(eval _src := $(call stub-addon-jar-file,$(_src))) \
68 $(eval $(call copy-one-file,$(_src),$(_dest))) \
99 # When not building an sdk_repo, just dist the addon zip file
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoConstants.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
130 * Sets the current file that that line numbers refer to. All subsequent
131 * line number entries make reference to this source file name, instead
137 * file name.
FieldAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
76 public void addContents(DexFile file) {
77 FieldIdsSection fieldIds = file.getFieldIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int fieldIdx = file.getFieldIds().indexOf(field);
FieldIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
28 * Field refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public FieldIdsSection(DexFile file) {
43 super("field_ids", file);
73 * Writes the portion of the file header that refers to this instance.
MethodAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
76 public void addContents(DexFile file) {
77 MethodIdsSection methodIds = file.getMethodIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int methodIdx = file.getMethodIds().indexOf(method);
MethodIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
28 * Method refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public MethodIdsSection(DexFile file) {
43 super("method_ids", file);
73 * Writes the portion of the file header that refers to this instance.
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoConstants.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
130 * Sets the current file that that line numbers refer to. All subsequent
131 * line number entries make reference to this source file name, instead
137 * file name.
FieldAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
76 public void addContents(DexFile file) {
77 FieldIdsSection fieldIds = file.getFieldIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int fieldIdx = file.getFieldIds().indexOf(field);
FieldIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
28 * Field refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public FieldIdsSection(DexFile file) {
43 super("field_ids", file);
73 * Writes the portion of the file header that refers to this instance.
MethodAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
76 public void addContents(DexFile file) {
77 MethodIdsSection methodIds = file.getMethodIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int methodIdx = file.getMethodIds().indexOf(method);
MethodIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
28 * Method refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public MethodIdsSection(DexFile file) {
43 super("method_ids", file);
73 * Writes the portion of the file header that refers to this instance.
StringIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
25 * Representation of a string inside a Dalvik file.
86 public void addContents(DexFile file) {
89 MixedItemSection stringData = file.getStringData();
97 public void writeTo(DexFile file, AnnotatedOutput out) {
  /external/chromium/base/
platform_file_win.cc 3 // found in the LICENSE file.
70 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL, local
73 if (created && (INVALID_HANDLE_VALUE != file)) {
81 if (file != kInvalidPlatformFileValue)
104 return file;
107 bool ClosePlatformFile(PlatformFile file) {
109 return (CloseHandle(file) != 0);
112 int ReadPlatformFile(PlatformFile file, int64 offset, char* data, int size) {
114 if (file == kInvalidPlatformFileValue)
125 if (::ReadFile(file, data, size, &bytes_read, &overlapped) != 0
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
supported_image_type_validator.cc 3 // found in the LICENSE file.
23 // Arbitrary limit to sanity check the file size.
30 base::PlatformFile file = base::CreatePlatformFile( local
32 if (file == base::kInvalidPlatformFileValue)
34 base::ScopedPlatformFileCloser file_closer(&file);
37 if (!base::GetPlatformFileInfo(file, &file_info) ||
44 if (base::ReadPlatformFile(file, 0, string_as_array(result.get()),
110 BrowserThread::FILE,
  /external/chromium_org/chrome/installer/util/
copy_tree_work_item_unittest.cc 3 // found in the LICENSE file.
38 // Simple function to dump some text into a new file.
41 std::ofstream file; local
42 file.open(filename.c_str());
43 ASSERT_TRUE(file.is_open());
44 file << contents;
45 file.close();
61 // Simple function to read text from a file.
64 std::wifstream file; local
65 file.open(filename.c_str())
    [all...]
  /external/chromium_org/content/renderer/
mhtml_generator.cc 3 // found in the LICENSE file.
35 base::PlatformFile file = local
37 file_ = file;
39 base::ClosePlatformFile(file);
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
BlobBuilder.cpp 36 #include "core/fileapi/File.h"
98 File* file = toFile(blob); local
99 // If the blob is file that is not snapshoted, capture the snapshot now.
100 // FIXME: This involves synchronous file operation. We need to figure out how to make it asynchronous.
103 file->captureSnapshot(snapshotSize, snapshotModificationTime);
106 if (!file->fileSystemURL().isEmpty())
107 m_items.append(BlobDataItem(file->fileSystemURL(), 0, snapshotSize, snapshotModificationTime));
109 m_items.append(BlobDataItem(file->path(), 0, snapshotSize, snapshotModificationTime));
140 PassRefPtr<File> BlobBuilder::createFile(const String& contentType, const String& fileName, double modificationTim (…)
146 RefPtr<File> file = File::create(fileName, modificationTime, BlobDataHandle::create(blobData.release(), m_size)); local
    [all...]
File.cpp 27 #include "core/fileapi/File.h"
38 static String getContentTypeFromFileName(const String& name, File::ContentTypeLookupPolicy policy)
43 if (policy == File::WellKnownContentTypes)
46 ASSERT(policy == File::AllContentTypes);
61 static PassOwnPtr<BlobData> createBlobDataForFile(const String& path, File::ContentTypeLookupPolicy policy)
66 static PassOwnPtr<BlobData> createBlobDataForFileWithName(const String& path, const String& fileSystemName, File::ContentTypeLookupPolicy policy)
74 blobData->setContentType(getContentTypeFromFileName(fileSystemName, File::WellKnownContentTypes));
82 blobData->setContentType(getContentTypeFromFileName(fileSystemURL.path(), File::WellKnownContentTypes));
87 PassRefPtr<File> File::createWithRelativePath(const String& path, const String& relativePath
89 RefPtr<File> file = adoptRef(new File(path, AllContentTypes)); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormDataList.cpp 15 * along with this library; see the file COPYING.LIB. If not, write to
24 #include "core/fileapi/File.h"
86 File* file = toFile(value.blob()); local
87 // For file blob, use the filename (or relative path if it is present) as the name.
88 name = file->webkitRelativePath().isEmpty() ? file->name() : file->webkitRelativePath();
90 // If a filename is passed in FormData.append(), use it instead of the file blob's name.
94 // For non-file blob, use the filename if it is passed in FormData.append()
119 File* file = toFile(value.blob()); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/plugins/
PluginData.h 15 along with this library; see the file COPYING.LIB. If not, write to
46 String file; member in struct:WebCore::PluginInfo
  /external/chromium_org/third_party/icu/source/tools/gencfu/
gencfu.cpp 7 * File gencfu.c
17 // Usage: gencfu [options] -r confusables-file.txt -w whole-script-confusables.txt -o output-file.cfu
62 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -w wholeScriptConfusables.txt -o output-file\n", progName);
156 fprintf(stderr, "confusables file, whole script confusables file and output file must all be specified.\n");
169 /* Combine the directory with the file name */
178 // spoof detection data file parsing is dependent on regular expressions.
189 /* write the dummy data file */
305 FILE *file; local
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gentest/
gentest.c 8 * file name: gentest.c
16 * This program writes a little data file for testing the udata API.
80 "\tcreate the test file " DATA_NAME "." DATA_TYPE " unless the -r option is given.\n"
84 "\t\t-r or --genres generate resource file testtable32.txt instead of UData test \n"
95 /* printf("Generating the test memory mapped file\n"); */
101 /* Create data file ----------------------------------------------------- */
118 /* write the data to the file */
126 fprintf(stderr, "gentest: error %d writing the output file\n", *errorCode);
139 /* Create Java file ----------------------------------------------------- */
144 char file[512] local
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
sandbox_origin_database_unittest.cc 3 // found in the LICENSE file.
27 FILE_PATH_LITERAL("File System");
191 // corrupt database and its log file.
229 base::PlatformFile file = base::CreatePlatformFile( local
235 EXPECT_TRUE(base::ClosePlatformFile(file));
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 5 |* This file is distributed under the University of Illinois Open Source *|
66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
68 CXFile *file,
74 CXFile file; member in struct:clang::CXLoadedDiagnostic::Location

Completed in 327 milliseconds

1 2 3 4 5 6 7 8 91011>>