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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 1 /*===- InstrProfilingFile.c - Write instrumentation to a file -------------===*\
5 |* This file is distributed under the University of Illinois Open Source
26 #include <sys/file.h>
64 /* File name string possibly with %p or %h specifiers. */
92 FILE *File = (FILE *)*WriterCtx;
94 if (fwrite(IOVecs[I].Data, IOVecs[I].ElmSize, IOVecs[I].NumElm, File) !=
102 lprofCreateBufferIOInternal(void *File, uint32_t BufferSz) {
106 return lprofCreateBufferIO(fileWriter, File);
    [all...]
  /external/giflib/
egif_lib.c 48 Open a new GIF file for write, specified by name. If TestExistance then
49 if the file exists this routines fails (returns NULL).
81 Update a new GIF file, given its file handle, which must be opened for
92 FILE *f;
125 Private->File = f;
177 Private->File = (FILE *) 0;
238 object-file compatibility!
257 return fwrite(buf, 1, len, Private->File);
    [all...]
  /external/google-breakpad/src/common/
module.h 36 // symbol file.
59 // --- possibly both from the same file --- and then writing out the
60 // unified contents as a Breakpad-format symbol file.
65 struct File;
70 // Addresses appearing in File, Function, and Line structures are
75 // A source file.
76 struct File {
77 explicit File(const string &name_input) : name(name_input), source_id(0) {}
79 // The name of the source file.
82 // The file's source id. The Write member function clears thi
123 File *file; \/\/ The source file. member in struct:google_breakpad::Module::Line
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
pkg_gencmn.cpp 28 /* ICU package data file format (.dat files) ------------------------------- ***
30 Description of the data format after the usual ICU data file header
35 A .dat package file contains a simple Table of Contents of item names,
59 the .dat file length, and the length of all previous items is the difference
87 } File;
90 static File *files = NULL;
128 FileStream *in, *file; local
158 fprintf(stderr, "gencmn: unable to open input file %s\n", dataFile);
165 printf("generating %s_%s.c (table of contents source file)\n", name, type);
167 printf("generating %s.%s (common data file with table of contents)\n", name, type)
423 FileStream *file; local
    [all...]
  /external/libcxx/test/support/
filesystem_test_helper.hpp 45 static const fs::path File = TestFileList[0];
162 std::string create_fifo(std::string file) {
163 file = sanitize_path(std::move(file));
164 fs_helper_run(fs_make_cmd("create_fifo", file));
165 return file;
171 std::string create_socket(std::string file) {
172 file = sanitize_path(std::move(file));
173 fs_helper_run(fs_make_cmd("create_socket", file));
    [all...]
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIASession.cpp 5 // This file is distributed under the University of Illinois Open Source
180 const IPDBSourceFile &File) const {
183 const DIASourceFile &RawFile = static_cast<const DIASourceFile &>(File);
238 auto File = findOneSourceFile(nullptr, Pattern, Flags);
239 if (!File)
241 return File->getCompilands();
  /external/llvm/lib/Object/
ArchiveWriter.cpp 1 //===- ArchiveWriter.cpp - ar File Format implementation --------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 // This file defines the writeArchive function.
254 // FIXME: check only for "not an object file" errors.
365 MemoryBufferRef File = M.Buf->getMemBufferRef();
376 Out << File.getBuffer();
396 // could be a mapped view of the file we want to replace (if
399 // temporary file (actually the original file renamed) because
400 // a file cannot be deleted while there's a handle open on it
    [all...]
  /external/llvm/tools/llvm-pdbdump/
llvm-pdbdump.cpp 1 //===- llvm-pdbdump.cpp - Dump debug info from a PDB file -------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
93 cl::SubCommand RawSubcommand("raw", "Dump raw structure of the PDB file");
99 "Generate a PDB file from a YAML description");
102 "Generate a detailed YAML description of a PDB File");
176 cl::OptionCategory FileOptions("Module & File Options");
210 // MODULE & FILE OPTIONS
213 cl::opt<bool> DumpModuleFiles("module-files", cl::desc("dump file information"),
216 cl::desc("dump file and line information"),
259 YamlPdbOutputFile("pdb", cl::desc("the name of the PDB file to write")
    [all...]
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 5 // This file is distributed under the University of Illinois Open Source
342 auto File = DIB.createFile("F.CBL", "/");
347 DIB.createFunction(CU, "foo", "", File, 1, Type, false, true, 1, 0, true);
351 DIB.createFunction(CU, "bar", "", File, 1, Type, false, true, 1, 0, true);
352 auto BadScope = DIB.createLexicalBlockFile(BarSP, File, 0);
394 auto File = DIB.createFile("tmp.cpp", "/");
399 DIB.createFunction(CU, "foo", "foo", File, 1, SPType, false, true, 1);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.h 42 unsigned int File:4;
58 unsigned int File:3;
  /external/pdfium/core/fpdfdoc/
cpdf_formfield.h 3 // found in the LICENSE file.
96 File,
  /external/scapy/scapy/tools/
UTscapy.py 1 ## This file is part of Scapy
41 #### INTERNAL/EXTERNAL FILE EMBEDDING ####
43 class File:
61 UTscapy_js = File("UTscapy.js", "http://www.secdev.org/projects/UTscapy/UTscapy.js",
71 UTscapy_css = File("UTscapy.css","http://www.secdev.org/projects/UTscapy/UTscapy.css",
96 if isinstance(y, File)}
100 if isinstance(y, File)}
229 print("### Loaded config file", config_path, file=sys.stderr)
274 print("Unknown content [%s]" % l.strip(), file=sys.stderr
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Archive/
ArchiveWriter.cpp 5 // This file is distributed under the University of Illinois Open Source
10 // Builds up an LLVM archive file (.a) containing LLVM bitcode.
51 // small ones and four for large ones. We expect this to access file offsets
155 // Insert a file into the archive before some other member. This also takes care
156 // of extracting the necessary flags and information from the file.
163 *ErrMsg = "Can not add a non-existent file to archive";
200 // Write one member out to the file.
215 // member's in-memory data or directly from the file.
220 OwningPtr<MemoryBuffer> File;
221 if (error_code ec = MemoryBuffer::getFile(member.getPath().c_str(), File)) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/DebugInfo/
DWARFDebugLine.h 5 // This file is distributed under the University of Illinois Open Source
103 // An unsigned integer indicating the identity of the source file
105 uint16_t File;
  /external/webrtc/webrtc/base/
fileutils_mock.h 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 typedef std::pair<std::string, std::string> File;
53 * put '/' at the end of file if you want it to be a directory
66 explicit FakeDirectoryIterator(const std::vector<File>& all_files) :
108 // sub_path - subpath under top level path (ex. /var/lib/dir/dir/file )
121 const std::vector<File> all_files_;
124 std::vector<File>::const_iterator path_iterator_;
129 typedef std::pair<std::string, std::string> File;
    [all...]
  /libcore/ojluni/src/main/java/java/io/
PrintWriter.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
158 * specified file name. This convenience constructor creates the necessary
165 * The name of the file to use as the destination of this writer.
166 * If the file exists then it will be truncated to zero size;
167 * otherwise, a new file will be created. The output will be
168 * written to the file and is buffered.
172 * regular file and a new regular file of that name cannot b
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
FileManager.h 1 //===--- FileManager.h - File System Probing and Caching --------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 /// \file
44 /// the virtual file system).
54 /// \brief Cached information about one file (either on disk
55 /// or in the virtual file system).
57 /// If the 'File' member is valid, then this FileEntry has an open file
58 /// descriptor for the file.
62 StringRef Name; // Name of the file
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCCodeView.h 5 // This file is distributed under the University of Illinois Open Source
123 unsigned File;
273 /// Emits the file checksum substream.
296 /// An array of absolute paths. Eventually this may include the file checksum.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Basic/
FileManager.h 1 //===--- FileManager.h - File System Probing and Caching --------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 /// \file
44 /// the virtual file system).
54 /// \brief Cached information about one file (either on disk
55 /// or in the virtual file system).
57 /// If the 'File' member is valid, then this FileEntry has an open file
58 /// descriptor for the file.
62 StringRef Name; // Name of the file
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/lld/Core/
File.h 1 //===- Core/File.h - A Container of Atoms ---------------------------------===//
5 // This file is distributed under the University of Illinois Open Source
30 /// Every Atom is owned by some File. A common scenario is for a single
31 /// object file (.o) to be parsed by some reader and produce a single
32 /// File object that represents the content of that object file.
34 /// To iterate through the Atoms in a File there are four methods that
36 /// in a File object use:
37 /// for (const DefinedAtoms *atom : file->defined()) {
40 /// The Atom objects in a File are owned by the File object. The Atom object
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCCodeView.h 5 // This file is distributed under the University of Illinois Open Source
123 unsigned File;
273 /// Emits the file checksum substream.
296 /// An array of absolute paths. Eventually this may include the file checksum.
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Basic/
FileManager.h 1 //===--- FileManager.h - File System Probing and Caching --------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 /// \file
44 /// the virtual file system).
54 /// \brief Cached information about one file (either on disk
55 /// or in the virtual file system).
57 /// If the 'File' member is valid, then this FileEntry has an open file
58 /// descriptor for the file.
62 StringRef Name; // Name of the file
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/lld/Core/
File.h 1 //===- Core/File.h - A Container of Atoms ---------------------------------===//
5 // This file is distributed under the University of Illinois Open Source
30 /// Every Atom is owned by some File. A common scenario is for a single
31 /// object file (.o) to be parsed by some reader and produce a single
32 /// File object that represents the content of that object file.
34 /// To iterate through the Atoms in a File there are four methods that
36 /// in a File object use:
37 /// for (const DefinedAtoms *atom : file->defined()) {
40 /// The Atom objects in a File are owned by the File object. The Atom object
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
MCCodeView.h 5 // This file is distributed under the University of Illinois Open Source
123 unsigned File;
273 /// Emits the file checksum substream.
296 /// An array of absolute paths. Eventually this may include the file checksum.
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Basic/
FileManager.h 1 //===--- FileManager.h - File System Probing and Caching --------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 /// \file
44 /// the virtual file system).
54 /// \brief Cached information about one file (either on disk
55 /// or in the virtual file system).
57 /// If the 'File' member is valid, then this FileEntry has an open file
58 /// descriptor for the file.
62 StringRef Name; // Name of the file
    [all...]

Completed in 1204 milliseconds

1 2 3 4 5 6 7 8 91011>>