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

1 2 34 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 5 // This file is distributed under the University of Illinois Open Source
36 // An unsigned integer indicating the identity of the source file.
37 uint64_t File;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 /// \file
12 /// The classes in this file represents inputs to the linker.
19 #include "lld/Core/File.h"
26 // the node contains meta information about the input file list.
30 enum class Kind { File, GroupEnd };
57 // A container of File.
60 explicit FileNode(std::unique_ptr<File> f)
61 : Node(Node::Kind::File), _file(std::move(f)) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 5 // This file is distributed under the University of Illinois Open Source
36 // An unsigned integer indicating the identity of the source file.
37 uint64_t File;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 /// \file
12 /// The classes in this file represents inputs to the linker.
19 #include "lld/Core/File.h"
26 // the node contains meta information about the input file list.
30 enum class Kind { File, GroupEnd };
57 // A container of File.
60 explicit FileNode(std::unique_ptr<File> f)
61 : Node(Node::Kind::File), _file(std::move(f)) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 5 // This file is distributed under the University of Illinois Open Source
36 // An unsigned integer indicating the identity of the source file.
37 uint64_t File;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 /// \file
12 /// The classes in this file represents inputs to the linker.
19 #include "lld/Core/File.h"
26 // the node contains meta information about the input file list.
30 enum class Kind { File, GroupEnd };
57 // A container of File.
60 explicit FileNode(std::unique_ptr<File> f)
61 : Node(Node::Kind::File), _file(std::move(f)) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 5 // This file is distributed under the University of Illinois Open Source
36 // An unsigned integer indicating the identity of the source file.
37 uint64_t File;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/lld/Core/
Node.h 1 //===- lld/Core/Node.h - Input file class -----------------------*- C++ -*-===//
5 // This file is distributed under the University of Illinois Open Source
10 /// \file
12 /// The classes in this file represents inputs to the linker.
19 #include "lld/Core/File.h"
26 // the node contains meta information about the input file list.
30 enum class Kind { File, GroupEnd };
57 // A container of File.
60 explicit FileNode(std::unique_ptr<File> f)
61 : Node(Node::Kind::File), _file(std::move(f)) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFDebugMacro.h 5 // This file is distributed under the University of Illinois Open Source
36 // An unsigned integer indicating the identity of the source file.
37 uint64_t File;
  /prebuilts/go/darwin-x86/doc/progs/
error.go 3 // license that can be found in the LICENSE file.
5 // This file contains the code snippets included in "Error Handling and Go."
19 type File struct{}
21 func Open(name string) (file *File, err error) {
32 // do something with the open *File f
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
slice.go 3 // license that can be found in the LICENSE file.
42 func (s *Slice) File() string {
stack.go 3 // license that can be found in the LICENSE file.
40 func (s *Stack) File() string {
tokenizer.go 3 // license that can be found in the LICENSE file.
27 file *os.File // If non-nil, file descriptor to close.
30 func NewTokenizer(name string, r io.Reader, file *os.File) *Tokenizer {
48 file: file,
83 func (t *Tokenizer) File() string {
147 if t.file != nil
    [all...]
  /prebuilts/go/darwin-x86/src/debug/plan9obj/
file.go 3 // license that can be found in the LICENSE file.
16 // A FileHeader represents a Plan 9 a.out file header.
26 // A File represents an open Plan 9 a.out file.
27 type File struct {
35 // through the object file.
42 // A Section represents a single section in a Plan 9 a.out file.
81 // not have the correct format for an object file.
97 // Open opens the named file using os.Open and prepares it for use as a Plan 9 a.out binary.
98 func Open(name string) (*File, error)
    [all...]
  /prebuilts/go/darwin-x86/src/mime/multipart/
formdata.go 3 // license that can be found in the LICENSE file.
25 // It stores up to maxMemory bytes + 10MB (reserved for non-file parts)
26 // in memory. File parts which can't be stored in memory will be stored on
28 // It returns ErrMessageTooLarge if all non-file parts can't be stored in
42 // Reserve an additional 10 MB for non-file parts.
76 // file, store in memory or on disk
87 file, err := ioutil.TempFile("", "multipart-")
91 size, err := io.Copy(file, io.MultiReader(&b, p))
92 if cerr := file.Close(); err == nil {
96 os.Remove(file.Name()
    [all...]
  /prebuilts/go/linux-x86/doc/progs/
error.go 3 // license that can be found in the LICENSE file.
5 // This file contains the code snippets included in "Error Handling and Go."
19 type File struct{}
21 func Open(name string) (file *File, err error) {
32 // do something with the open *File f
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
slice.go 3 // license that can be found in the LICENSE file.
42 func (s *Slice) File() string {
stack.go 3 // license that can be found in the LICENSE file.
40 func (s *Stack) File() string {
tokenizer.go 3 // license that can be found in the LICENSE file.
27 file *os.File // If non-nil, file descriptor to close.
30 func NewTokenizer(name string, r io.Reader, file *os.File) *Tokenizer {
48 file: file,
83 func (t *Tokenizer) File() string {
147 if t.file != nil
    [all...]
  /prebuilts/go/linux-x86/src/debug/plan9obj/
file.go 3 // license that can be found in the LICENSE file.
16 // A FileHeader represents a Plan 9 a.out file header.
26 // A File represents an open Plan 9 a.out file.
27 type File struct {
35 // through the object file.
42 // A Section represents a single section in a Plan 9 a.out file.
81 // not have the correct format for an object file.
97 // Open opens the named file using os.Open and prepares it for use as a Plan 9 a.out binary.
98 func Open(name string) (*File, error)
    [all...]
  /prebuilts/go/linux-x86/src/mime/multipart/
formdata.go 3 // license that can be found in the LICENSE file.
25 // It stores up to maxMemory bytes + 10MB (reserved for non-file parts)
26 // in memory. File parts which can't be stored in memory will be stored on
28 // It returns ErrMessageTooLarge if all non-file parts can't be stored in
42 // Reserve an additional 10 MB for non-file parts.
76 // file, store in memory or on disk
87 file, err := ioutil.TempFile("", "multipart-")
91 size, err := io.Copy(file, io.MultiReader(&b, p))
92 if cerr := file.Close(); err == nil {
96 os.Remove(file.Name()
    [all...]
  /device/generic/goldfish/wifi/execns/
execns.cpp 5 * you may not use this file except in compliance with the License.
62 class File {
64 explicit File(FILE* file) : mFile(file) { }
65 File(const File&) = delete;
66 ~File() {
73 FILE* get() const { return mFile;
    [all...]
  /build/soong/cmd/symbol_inject/
symbol_inject.go 4 // you may not use this file except in compliance with the License.
27 input = flag.String("i", "", "input file")
28 output = flag.String("o", "", "output file")
92 file, err := openFile(r)
98 err = injectSymbol(file, w, *symbol, *value, *from)
106 func openFile(r io.ReaderAt) (*File, error) {
107 file, err := elfSymbolsFromFile(r)
109 // Try as a mach-o file
110 file, err = machoSymbolsFromFile(r)
112 // Try as a windows PE file
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MyAlloc.h 1 /** @file
2 Header file for memory allocation tracking functions.
27 // source files as needed. Or, just do not include this header file in
52 UINT8 *File;
56 // Cksum := (UINTN)This + (UINTN)Next + Line + Size + (UINTN)File +
65 // File := Pointer to __FILE__ string stored immediately following
83 UINT8 File[],
102 // File := Set to __FILE__ by macro expansion.
115 UINT8 File[],
124 // for the File[] string, requested Size and alignment overhead. If
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
MyAlloc.h 18 Header file for memory allocation tracking functions.
34 // source files as needed. Or, just do not include this header file in
59 UINT8 *File;
63 // Cksum := (UINTN)This + (UINTN)Next + Line + Size + (UINTN)File +
72 // File := Pointer to __FILE__ string stored immediately following
90 UINT8 File[],
108 // File := Set to __FILE__ by macro expansion.
121 UINT8 File[],
129 // for the File[] string, requested Size and alignment overhead. If
138 // File := Set to __FILE__ by macro expansion.
    [all...]

Completed in 569 milliseconds

1 2 34 5 6 7 8 91011>>