/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/XRay/ |
YAMLXRayRecord.h | 43 YAMLXRayFileHeader Header; 61 static void mapping(IO &IO, xray::YAMLXRayFileHeader &Header) { 62 IO.mapRequired("version", Header.Version); 63 IO.mapRequired("type", Header.Type); 64 IO.mapRequired("constant-tsc", Header.ConstantTSC); 65 IO.mapRequired("nonstop-tsc", Header.NonstopTSC); 66 IO.mapRequired("cycle-frequency", Header.CycleFrequency); 87 // A trace file contains two parts, the header and the list of all the 89 IO.mapRequired("header", Trace.Header); [all...] |
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/ |
IntervalIterator.h | 54 // BasicBlock that is the header node. This is the opposite of 95 // See file header for conditions of use 178 BasicBlock *Header = getNodeHeader(Node); 179 if (!Visited.insert(Header).second) 182 Interval *Int = new Interval(Header);
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/ |
DebugInlineeLinesSubsection.h | 47 const InlineeSourceLineHeader *Header; 88 InlineeSourceLineHeader Header;
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/DWARF/ |
DWARFAcceleratorTable.h | 28 struct Header { 45 struct Header Hdr;
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/PDB/Native/ |
DbiStream.h | 122 const DbiStreamHeader *Header;
|
TpiStreamBuilder.h | 84 const TpiStreamHeader *Header;
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/ |
IntervalIterator.h | 54 // BasicBlock that is the header node. This is the opposite of 95 // See file header for conditions of use 178 BasicBlock *Header = getNodeHeader(Node); 179 if (!Visited.insert(Header).second) 182 Interval *Int = new Interval(Header);
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/ |
DebugInlineeLinesSubsection.h | 47 const InlineeSourceLineHeader *Header; 88 InlineeSourceLineHeader Header;
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/DWARF/ |
DWARFAcceleratorTable.h | 28 struct Header { 45 struct Header Hdr;
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/PDB/Native/ |
DbiStream.h | 122 const DbiStreamHeader *Header;
|
TpiStreamBuilder.h | 84 const TpiStreamHeader *Header;
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/ |
IntervalIterator.h | 54 // BasicBlock that is the header node. This is the opposite of 95 // See file header for conditions of use 178 BasicBlock *Header = getNodeHeader(Node); 179 if (!Visited.insert(Header).second) 182 Interval *Int = new Interval(Header);
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/CodeView/ |
DebugInlineeLinesSubsection.h | 47 const InlineeSourceLineHeader *Header; 88 InlineeSourceLineHeader Header;
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/DWARF/ |
DWARFAcceleratorTable.h | 28 struct Header { 45 struct Header Hdr;
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/PDB/Native/ |
DbiStream.h | 122 const DbiStreamHeader *Header;
|
TpiStreamBuilder.h | 84 const TpiStreamHeader *Header;
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/ |
IntervalIterator.h | 54 // BasicBlock that is the header node. This is the opposite of 95 // See file header for conditions of use 178 BasicBlock *Header = getNodeHeader(Node); 179 if (!Visited.insert(Header).second) 182 Interval *Int = new Interval(Header);
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/ |
DebugInlineeLinesSubsection.h | 47 const InlineeSourceLineHeader *Header; 88 InlineeSourceLineHeader Header;
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/ |
DWARFAcceleratorTable.h | 28 struct Header { 45 struct Header Hdr;
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/Native/ |
DbiStream.h | 122 const DbiStreamHeader *Header;
|
TpiStreamBuilder.h | 84 const TpiStreamHeader *Header;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/email/ |
header.py | 5 """Header encoding and decoding functionality.""" 8 'Header', 50 # Find a header embedded in a putative header value. Used to check for 51 # header injection attack. 63 def decode_header(header): 64 """Decode a message header value without converting charset. 67 decoded parts of the header. Charset is None for non-encoded parts of the 68 header, otherwise a lower-case string containing the name of the character 74 # If no encoding, just return the header [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/email/ |
header.py | 5 """Header encoding and decoding functionality.""" 8 'Header', 50 # Find a header embedded in a putative header value. Used to check for 51 # header injection attack. 63 def decode_header(header): 64 """Decode a message header value without converting charset. 67 decoded parts of the header. Charset is None for non-encoded parts of the 68 header, otherwise a lower-case string containing the name of the character 74 # If no encoding, just return the header [all...] |
/prebuilts/go/darwin-x86/src/compress/gzip/ |
gunzip.go | 33 // ErrHeader is returned when reading GZIP data that has an invalid header. 34 ErrHeader = errors.New("gzip: invalid header") 47 // The gzip file stores a header giving metadata about the compressed file. 48 // That header is exposed as the fields of the Writer and Reader structs. 52 type Header struct { 64 // each with its own header. Reads from the Reader 66 // Only the first header is recorded in the Reader fields. 75 Header // valid after NewReader or Reader.Reset 91 // The Reader.Header fields will be valid in the Reader returned. 113 z.Header, z.err = z.readHeader( [all...] |
/prebuilts/go/darwin-x86/src/net/http/ |
cookie_test.go | 137 type headerOnlyResponseWriter Header 139 func (ho headerOnlyResponseWriter) Header() Header { 140 return Header(ho) 152 m := make(Header) 194 if g := req.Header.Get("Cookie"); g != tt.Raw { 202 Header Header 206 Header{"Set-Cookie": {"Cookie-1=v$1"}}, 210 Header{"Set-Cookie": {"NID=99=YsDT5i3E-CXax-; expires=Wed, 23-Nov-2011 01:05:03 GMT; path=/; domain=.goog (…) [all...] |