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

12 3 4 5 6 7 8 91011>>

  /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_org/chrome/browser/net/
chrome_net_log.cc 3 // found in the LICENSE file.
47 FILE* file = NULL; local
49 file = _wfopen(log_path.value().c_str(), L"w");
51 file = fopen(log_path.value().c_str(), "w");
54 if (file == NULL) {
55 LOG(ERROR) << "Could not open file " << log_path.value()
59 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/common/
shareable_file_reference_unittest.cc 3 // found in the LICENSE file.
24 // Create a file.
25 base::FilePath file; local
26 base::CreateTemporaryFileInDir(temp_dir.path(), &file);
27 EXPECT_TRUE(base::PathExists(file));
29 // Create a first reference to that file.
31 reference1 = ShareableFileReference::Get(file);
34 file, ShareableFileReference::DELETE_ON_FINAL_RELEASE, loop_proxy.get());
36 EXPECT_TRUE(file == reference1->path());
38 // Get a second reference to that file
    [all...]
  /external/chromium_org/content/public/browser/
download_save_info.h 3 // found in the LICENSE file.
8 #include "base/files/file.h"
14 // Holds the information about how to save a download file.
15 // In the case of download continuation, |file_path| is set to the current file
31 // If valid, contains the source data stream for the file contents.
32 base::File file; member in struct:content::DownloadSaveInfo
34 // The file offset at which to start the download. May be 0.
  /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/media/video/capture/
file_video_capture_device_factory.cc 3 // found in the LICENSE file.
16 "/dev/placeholder-for-file-backed-fake-capture-device";
18 // Inspects the command line and retrieves the file path parameter.
64 base::File file = local
67 FileVideoCaptureDevice::ParseFileAndExtractVideoFormat(&file,
  /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/core/clipboard/
DataObjectTest.cpp 3 // found in the LICENSE file.
39 RefPtrWillBeRawPtr<File> file = toFile(blob.get()); local
40 EXPECT_TRUE(file->hasBackingFile());
41 EXPECT_EQ(File::IsUserVisible, file->userVisibility());
42 EXPECT_EQ(filePath, file->path());
58 RefPtrWillBeRawPtr<File> file = toFile(blob.get()); local
59 EXPECT_TRUE(file->hasBackingFile())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
HTMLInputElementFileSystem.cpp 62 File* file = files->item(i); local
64 // FIXME: This involves synchronous file operation.
66 if (!getFileMetadata(file->path(), metadata))
70 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::final
53 FILE* m_file;
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
SourceLocation.h 4 // found in the LICENSE file.
16 : file(0),
21 : file(f),
28 return (file == other.file) && (line == other.line);
31 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/libvpx/source/libvpx/
video_writer.c 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
19 FILE *file; member in struct:VpxVideoWriterStruct
23 static void write_header(FILE *file, const VpxVideoInfo *info,
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
39 FILE *const file = fopen(filename, "wb") local
    [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:__anon18050
67 CSzFile file; member in struct:__anon18051
76 CSzFile file; member in struct:__anon18052
  /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:__anon19379::TableDependenciesTest
    [all...]
  /external/chromium_org/third_party/skia/platform_tools/android/launcher/
skia_launcher.cpp 5 * found in the LICENSE file.
18 FILE* file = fopen(fileName, "r"); local
19 if (file) {
20 fclose(file);
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
voe_cpu_test.cc 5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
49 VoEFile* file = _mgr.FilePtr(); local
79 CHECK(file->StartPlayingFileAsMicrophone(channel, _mgr.AudioFilename(),

Completed in 370 milliseconds

12 3 4 5 6 7 8 91011>>