HomeSort by relevance Sort by last modified time
    Searched defs:Header (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/apache-http/src/org/apache/http/
Header.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/Header.java $
35 * Represents an HTTP header field.
37 * <p>The HTTP header fields follow the same generic format as
38 * that given in Section 3.1 of RFC 822. Each header field consists
44 * message-header = field-name ":" [ field-value ]
56 public interface Header {
  /external/llvm/lib/Analysis/
IntervalPartition.cpp 59 BasicBlock *Header = Int->getHeaderNode();
62 getBlockInterval(*I)->Predecessors.push_back(Header);
  /external/nist-sip/java/javax/sip/header/
Header.java 1 package javax.sip.header;
5 public interface Header extends Cloneable, Serializable {
  /sdk/emulator/qtools/
dmtrace.h 10 struct Header {
32 static const Header header; member in class:DmTrace
  /external/chromium/base/
pickle.h 29 // The Pickle's data has a header which contains the size of the Pickle's
30 // payload. It can optionally support additional space in the header. That
36 // Initialize a Pickle object using the default header size.
39 // Initialize a Pickle object with the specified header size in bytes, which
40 // must be greater-than-or-equal-to sizeof(Pickle::Header). The header size
41 // will be rounded up to ensure that the header size is 32bit-aligned.
46 // should be used on the Pickle when initialized this way. The header
141 // Payload follows after allocation of Header (header size is customizable)
    [all...]
  /external/llvm/include/llvm/Object/
MachOObject.h 71 /// The cached copy of the header.
72 macho::Header Header;
125 /// @name Object Header Access
128 const macho::Header &getHeader() const { return Header; }
COFF.h 93 const coff_file_header *Header;
  /external/llvm/lib/DebugInfo/
DWARFDebugArangeSet.h 22 struct Header {
51 Header Header;
61 uint32_t getCompileUnitDIEOffset() const { return Header.CuOffset; }
62 uint32_t getOffsetOfNextEntry() const { return Offset + Header.Length + 4; }
65 const struct Header &getHeader() const { return Header; }
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 133 BasicBlock *Header = L->getHeader();
134 DEBUG(dbgs() << "Loop Unroll: F[" << Header->getParent()->getName()
135 << "] Loop %" << Header->getName() << "\n");
136 (void)Header;
144 Header->getParent()->hasFnAttr(Attribute::OptimizeForSize))
  /frameworks/base/core/jni/
android_ddm_DdmHandleNativeHeap.cpp 41 struct Header {
53 * copy them into a byte[] with a "struct Header" that holds data offsets,
60 Header header; local
61 memset(&header, 0, sizeof(header));
79 uint8_t* ptr = mapsFile + header.mapSize;
87 header.mapSize += amount;
88 } while (header.mapSize < MAPS_FILE_SIZE);
90 LOGD("**** read %d bytes from '%s'", (int) header.mapSize, path)
    [all...]
  /frameworks/base/include/utils/
BlobCache.h 179 // A Header is the header for the entire BlobCache serialization format. No
181 struct Header {
193 // mNumEntries is number of cache entries following the header in the
198 // An EntryHeader is the header for a serialized cache entry. No need to
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
Header.java 41 * The header of an entity (see RFC 2045).
44 * @version $Id: Header.java,v 1.3 2004/10/04 15:36:44 ntherning Exp $
46 public class Header {
51 * Creates a new empty <code>Header</code>.
53 public Header() {
57 * Creates a new <code>Header</code> from the specified stream.
59 * @param is the stream to read the header from.
61 public Header(InputStream is) throws IOException {
92 * Gets the fields of this header. The returned list will not be
103 * such fields defined in this header the first one will be returned.
    [all...]
  /external/chromium/chrome/browser/password_manager/
ie7_password.cc 20 DWORD pre_header_size; // Size of this header structure. Always 12.
21 DWORD header_size; // Size of the real Header: sizeof(Header) +
26 struct Header {
29 // sizeof(Header).
46 Header header; // Contains the number of items. member in struct:__anon2911::PasswordEntry
66 if (information->header.item_count != 2) // Username and Password
69 if (information->header.fixed_header_size != sizeof(Header))
    [all...]
  /external/clang/lib/Lex/
HeaderMap.cpp 52 // An array of 'NumBuckets' HMapBucket objects follows this header.
75 /// HeaderMap::Create - This attempts to load the specified file as a header
80 // If the file is too small to be a header map, ignore it.
88 // We know the file is at least as big as the header, check it now.
89 const HMapHeader *Header = reinterpret_cast<const HMapHeader*>(FileStart);
94 if (Header->Magic == HMAP_HeaderMagicNumber &&
95 Header->Version == HMAP_HeaderVersion)
97 else if (Header->Magic == llvm::ByteSwap_32(HMAP_HeaderMagicNumber) &&
98 Header->Version == llvm::ByteSwap_16(HMAP_HeaderVersion))
101 return 0; // Not a header map
    [all...]
  /external/llvm/include/llvm/Analysis/
IntervalIterator.h 46 // BasicBlock that is the header node. This is the opposite of
95 // See file header for conditions of use
167 BasicBlock *Header = getNodeHeader(Node);
168 if (Visited.count(Header)) return false;
170 Interval *Int = new Interval(Header);
171 Visited.insert(Header); // The header has now been visited!
LoopInfo.h 12 // has exactly one entry-point, which is called the header. Note that natural
13 // loops may actually be several loops that share the same header node.
22 // * the number of back edges to the header
73 // Blocks - The list of blocks in this loop. First entry is the header node.
157 /// getNumBackEdges - Calculate the number of back edges to the loop header
264 /// loop has a preheader if there is only one edge to the header of the loop
266 /// header of the loop is the preheader node.
271 // Keep track of nodes outside the loop branching to the header...
286 /// getLoopPredecessor - If the given loop's header has exactly one unique
292 // Keep track of nodes outside the loop branching to the header..
    [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.h 53 MachineBasicBlock *Header = Loop->getHeader();
55 for (MachineBasicBlock::livein_iterator LI = Header->livein_begin(),
56 LE = Header->livein_end(); LI != LE; ++LI)
59 const MachineDomTreeNode *Node = MDT.getNode(Header);
62 "Loop does not contain header!");
ScheduleDAGInstrs.cpp 140 MachineBasicBlock *Header = ML->getHeader();
141 for (MachineBasicBlock::livein_iterator I = Header->livein_begin(),
142 E = Header->livein_end(); I != E; ++I)
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 414 // Get the CPU type information from the header.
415 const macho::Header &Header = Obj->getHeader();
419 CPUType = Header.CPUType;
420 CPUSubtype = Header.CPUSubtype;
425 for (unsigned i = 0; i != Header.NumLoadCommands; ++i) {
  /external/llvm/lib/Transforms/Utils/
LoopUnroll.cpp 118 /// TripCount is generally defined as the number of times the loop header
151 BasicBlock *Header = L->getHeader();
161 if (Header->hasAddressTaken()) {
164 " Won't unroll loop: address of header block is taken.\n");
203 DEBUG(dbgs() << "COMPLETELY UNROLLING loop %" << Header->getName()
206 DEBUG(dbgs() << "UNROLLING loop %" << Header->getName()
225 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
231 Headers.push_back(Header);
250 Header->getParent()->getBasicBlockList().push_back(New);
254 if (*BB == Header)
    [all...]
LoopSimplify.cpp 14 // Loop pre-header insertion guarantees that there is a single, non-critical
15 // entry edge from outside of the loop to the loop header. This simplifies a
21 // by the loop header). This simplifies transformations such as store-sinking
63 STATISTIC(NumInserted, "Number of pre-header or exit blocks inserted");
145 // Check to see that no blocks (other than the header) in this loop have
212 // loop preheader/header will dominate the exit blocks. If the exit block has
235 // If the header has more than two predecessors at this point (from the
254 // loop header.
262 // Scan over the PHI nodes in the loop header. Since they now have only two
363 BasicBlock *Header = L->getHeader()
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupHelperDispatcher.java 31 private static class Header {
32 int chunkSize; // not including the header
50 Header header = new Header(); local
57 while ((err = readHeader_native(header, oldStateFD)) >= 0) {
59 BackupHelper helper = helpers.get(header.keyPrefix);
60 Log.d(TAG, "handling existing helper '" + header.keyPrefix + "' " + helper);
62 doOneBackup(oldState, data, newState, header, helper);
63 helpers.remove(header.keyPrefix)
    [all...]
  /frameworks/base/include/binder/
CursorWindow.h 142 struct Header {
167 Header* mHeader;
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 200 static void getSectionsAndSymbols(const macho::Header &Header,
219 for (unsigned i = 0; i != Header.NumLoadCommands; ++i) {
271 const macho::Header &Header = MachOObj->getHeader();
275 for (unsigned i = 0; i != Header.NumLoadCommands; ++i) {
292 getSectionsAndSymbols(Header, MachOOF.get(), &SymtabLC, Sections, Symbols,
326 const macho::Header &Header = DSYMObj->getObject()->getHeader();
330 getSectionsAndSymbols(Header, DSYMObj.get(), 0, DSYMSections, Symbols
    [all...]
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 96 COFF::section Header;
133 COFF::header Header;
165 void WriteFileHeader(const COFF::header &Header);
264 memset(&Header, 0, sizeof(Header));
275 /// The length of the string table includes uint32 length header.
282 // including the length header. Allocate space for this header
    [all...]

Completed in 482 milliseconds

1 2 3