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

1 2

  /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 72 const coff_file_header *Header;
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 124 BasicBlock *Header = L->getHeader();
125 DEBUG(dbgs() << "Loop Unroll: F[" << Header->getParent()->getName()
126 << "] Loop %" << Header->getName() << "\n");
127 (void)Header;
135 Header->getParent()->hasFnAttr(Attribute::OptimizeForSize))
LoopUnswitch.cpp 331 Visited.insert(L->getHeader()); // Branches to header make infinite loops.
352 BasicBlock *Header = currentLoop->getHeader();
353 TerminatorInst *HeaderTerm = Header->getTerminator();
354 LLVMContext &Context = Header->getContext();
358 // If the header block doesn't end with a conditional branch on Cond, we
402 // tail, check the header now.
403 for (BasicBlock::iterator I = Header->begin(), E = Header->end(); I != E; ++I)
510 /// condition in it (a cond branch from its header block to its latch block,
534 // loop header, not the preheader)
    [all...]
  /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...]
  /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:__anon2825::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
72 // Blocks - The list of blocks in this loop. First entry is the header node.
151 /// getNumBackEdges - Calculate the number of back edges to the loop header
258 /// loop has a preheader if there is only one edge to the header of the loop
260 /// header of the loop is the preheader node.
265 // Keep track of nodes outside the loop branching to the header...
280 /// getLoopPredecessor - If the given loop's header has exactly one unique
286 // Keep track of nodes outside the loop branching to the header..
    [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.h 52 MachineBasicBlock *Header = Loop->getHeader();
54 for (MachineBasicBlock::livein_iterator LI = Header->livein_begin(),
55 LE = Header->livein_end(); LI != LE; ++LI)
58 const MachineDomTreeNode *Node = MDT.getNode(Header);
61 "Loop does not contain header!");
ScheduleDAGInstrs.cpp 139 MachineBasicBlock *Header = ML->getHeader();
140 for (MachineBasicBlock::livein_iterator I = Header->livein_begin(),
141 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 130 BasicBlock *Header = L->getHeader();
140 if (Header->hasAddressTaken()) {
143 " Won't unroll loop: address of header block is taken.\n");
188 DEBUG(dbgs() << "COMPLETELY UNROLLING loop %" << Header->getName()
191 DEBUG(dbgs() << "UNROLLING loop %" << Header->getName()
210 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
221 Headers.push_back(Header);
231 Header->getParent()->getBasicBlockList().push_back(New);
235 if (*BB == Header)
269 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
355 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 143 struct Header {
168 Header* mHeader;
  /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...]
  /external/llvm/lib/Object/
ELFObjectFile.cpp 87 // Section header.
101 Elf_Word sh_link; // Section type-specific header table index link
116 Elf_Word sh_link; // Section type-specific header table index link
148 Elf_Half st_shndx; // Which section (header table index) it's defined in
157 Elf_Half st_shndx; // Which section (header table index) it's defined in
192 Elf_Off e_phoff; // Program header table's file offset, in bytes
193 Elf_Off e_shoff; // Section header table's file offset, in bytes
195 Elf_Half e_ehsize; // Size of ELF header, in bytes
196 Elf_Half e_phentsize;// Size of an entry in the program header table
197 Elf_Half e_phnum; // Number of entries in the program header tabl
    [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 918 std::string Header;
919 raw_string_ostream HeaderO(Header);
    [all...]

Completed in 1669 milliseconds

1 2