HomeSort by relevance Sort by last modified time
    Searched refs:Header (Results 426 - 450 of 688) sorted by null

<<11121314151617181920>>

  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 38 import org.apache.http.Header;
64 * Authentication header, the charset of the username must be compatible
123 * @param header the challenge header
130 final Header header) throws MalformedChallengeException {
131 super.processChallenge(header);
224 public Header authenticate(
262 * value in the Authentication HTTP header.
379 * Creates digest-response header as defined in RFC2617
    [all...]
  /external/clang/test/PCH/
chain-cxx.cpp 17 // Primary header for C++ chained PCH test
62 #error Header inclusion order messed up
66 // Dependent header for C++ chained PCH test
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugArangeSet.cpp 19 std::memset(&HeaderData, 0, sizeof(Header));
32 // the .debug_aranges section begins with a header consisting of: a
40 // descriptor on the target system. This header is followed by a series
49 // Perform basic validation of the header fields.
56 // The first tuple following the header in each set begins at an offset
58 // size of an address). The header is padded, if necessary, to the
93 OS << format("Address Range Header: length = 0x%8.8x, version = 0x%4.4x, ",
  /external/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 442 BasicBlock *Header;
457 : Tag(""), Header(nullptr), Latch(nullptr), LatchBr(nullptr),
464 Result.Header = cast<BasicBlock>(Map(Header));
563 // for each PHINode in the loop header on taking the pseudo exit.
566 // preheader because it is made to branch to the loop header only
582 // This function rewrites the PHI nodes in `LS.Header' to start with the
662 BasicBlock *Header = L.getHeader();
675 unsigned LatchBrExitIdx = LatchBr->getSuccessor(0) == Header ? 1 : 0;
842 Result.Header = Header
    [all...]
  /external/markdown/markdown/extensions/
headerid.py 12 >>> text = "# Some Header # {#some_id}"
15 u'<h1 id="some_id">Some Header</h1>'
17 All header IDs are unique:
20 ... #Header
21 ... #Another Header {#header}
22 ... #Third Header {#header}'''
25 u'<h1 id="header">Header</h1>\\n<h1 id="header_1">Another Header</h1>\\n<h1 id="header_2">Third Header</h1>
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 40 struct tgsi_header Header;
144 struct tgsi_header header; local
145 memcpy(&header, tokens, sizeof(header));
146 return header.HeaderSize + header.BodySize;
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfZipCompressor.cpp 53 (const Header &hdr,
ImfRgbaFile.cpp 65 insertChannels (Header &header, RgbaChannels rgbaChannels)
97 header.channels() = ch;
130 prefixFromLayerName (const string &layerName, const Header &header)
135 if (hasMultiView (header) && multiView(header)[0] == layerName)
143 ywFromHeader (const Header &header)
147 if (hasChromaticities (header))
712 RgbaOutputFile::header () const function in class:Imf::RgbaOutputFile
1321 RgbaInputFile::header () const function in class:Imf::RgbaInputFile
    [all...]
ImfTiledRgbaFile.cpp 65 insertChannels (Header &header,
100 header.channels() = ch;
129 prefixFromLayerName (const string &layerName, const Header &header)
134 if (hasMultiView (header) && multiView(header)[0] == layerName)
142 ywFromHeader (const Header &header)
146 if (hasChromaticities (header))
413 TiledRgbaOutputFile::header () const function in class:Imf::TiledRgbaOutputFile
889 TiledRgbaInputFile::header () const function in class:Imf::TiledRgbaInputFile
    [all...]
  /external/sfntly/cpp/src/sfntly/table/core/
os2_table.h 318 Builder(Header* header, WritableFontData* data);
319 Builder(Header* header, ReadableFontData* data);
323 static CALLER_ATTACH Builder* CreateBuilder(Header* header,
502 OS2Table(Header* header, ReadableFontData* data);
  /packages/apps/Email/tests/src/com/android/emailcommon/internet/
Rfc822OutputTests.java 34 import org.apache.james.mime4j.message.Header;
172 Header header = mimeMessage.getHeader(); local
173 Field contentType = header.getField("content-type");
182 header = part.getHeader();
183 assertNull(header.getField("content-disposition"));
216 Header header = mimeMessage.getHeader(); local
217 Field contentType = header.getField("content-type");
226 header = part.getHeader()
295 Header header = mimeMessage.getHeader(); local
    [all...]
  /system/core/include/utils/
BlobCache.h 171 // A Header is the header for the entire BlobCache serialization format. No
173 struct Header {
185 // mNumEntries is number of cache entries following the header in the
196 // An EntryHeader is the header for a serialized cache entry. No need to
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965Spec.java 39 import org.apache.http.Header;
102 final Header header,
104 if (header == null) {
105 throw new IllegalArgumentException("Header may not be null");
113 HeaderElement[] elems = header.getElements();
124 if (header.getName().equals(SM.SET_COOKIE2)) {
254 public Header getVersionHeader() {
  /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
176 BasicBlock *Header = getNodeHeader(Node);
177 if (!Visited.insert(Header).second)
180 Interval *Int = new Interval(Header);
BlockFrequencyInfoImpl.h 204 NodeList Nodes; ///< Header and the members of the loop.
205 HeaderMassList BackedgeMass; ///< Mass returned to each loop header.
209 LoopData(LoopData *Parent, const BlockNode &Header)
210 : Parent(Parent), IsPackaged(false), NumHeaders(1), Nodes(1, Header),
230 assert(isHeader(B) && "this is only valid on loop header blocks");
296 /// Get appropriate mass for Node. If Node is a loop-header (whose loop
329 /// backedge to the loop header?
451 /// This adjusts header mass distribution so it matches the weights of
547 /// that relies on \c MachineBasicBlock is defined in the header.
642 /// which is called the header. A given loop, L, can have sub-loops, which ar
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 45 import javax.sip.header.*;
47 import gov.nist.javax.sip.header.*;
55 * Bystrom. Szabo Barna noticed a contact in a cancel request - this is a pointless header for
211 * Check header for constraints. (1) Invite options and bye requests can only have SIP URIs in
216 String prefix = "Missing a required header : ";
246 throw new ParseException("No via header in request! ", 0);
258 * single Event header field in PUBLISH requests. The value of this header field
266 * RFC 3261 8.1.1.8 The Contact header field MUST be present and contain exactly one SIP
269 * requests, the scope of the Contact is global. That is, the Contact header field valu
    [all...]
  /external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
OkApacheClient.java 13 import org.apache.http.Header;
50 for (Header header : request.getAllHeaders()) {
51 String name = header.getName();
53 contentType = header.getValue();
55 builder.header(name, header.getValue());
66 Header encoding = entity.getContentEncoding();
68 builder.header(encoding.getName(), encoding.getValue());
  /external/sfntly/cpp/src/sfntly/table/truetype/
glyph_table.h 115 Builder(Header* header, ReadableFontData* data);
121 static CALLER_ATTACH Builder* CreateBuilder(Header* header,
301 // header
324 GlyphTable(Header* header, ReadableFontData* data);
  /frameworks/minikin/libs/minikin/
Hyphenator.cpp 80 struct Header {
140 const Header* header = getHeader(); local
141 // TODO: check header magic
142 uint32_t alphabetVersion = header->alphabetVersion();
144 const AlphabetTable0* alphabet = header->alphabetTable0();
162 const AlphabetTable1* alphabet = header->alphabetTable1();
191 const Header* header = getHeader(); local
192 const Trie* trie = header->trieTable()
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
MailboxSettings.java 115 public void onBuildHeaders(List<Header> target) {
117 final Header dummy = new Header();
124 final Header h = new Header();
  /art/compiler/utils/
test_dex_file_builder.h 85 uint8_t data[sizeof(DexFile::Header)];
89 DexFile::Header* header = reinterpret_cast<DexFile::Header*>(&header_data.data); local
90 std::copy_n(DexFile::kDexMagic, 4u, header->magic_);
91 std::copy_n(DexFile::kDexMagicVersions[0], 4u, header->magic_ + 4u);
92 header->header_size_ = sizeof(DexFile::Header);
93 header->endian_tag_ = DexFile::kDexEndianConstant;
94 header->link_size_ = 0u; // Unused
    [all...]
  /external/libchrome/base/
pickle_unittest.cc 242 struct CustomHeader : base::Pickle::Header {
254 // Data range doesn't contain header
261 // Data range contains header
269 // Data range contains header and some other data
287 struct CustomHeader : base::Pickle::Header {
291 CustomHeader header; local
294 if (sizeof(size_t) > sizeof(header.payload_size))
297 const char* pickle_data = reinterpret_cast<const char*>(&header);
302 header.payload_size = static_cast<uint32_t>(
313 header.payload_size
357 Pickle::Header* header = reinterpret_cast<Pickle::Header*>(buffer.get()); local
    [all...]
  /external/llvm/tools/obj2yaml/
elf2yaml.cpp 63 // Dump header
64 Y->Header.Class = ELFYAML::ELF_ELFCLASS(Obj.getHeader()->getFileClass());
65 Y->Header.Data = ELFYAML::ELF_ELFDATA(Obj.getHeader()->getDataEncoding());
66 Y->Header.OSABI = Obj.getHeader()->e_ident[ELF::EI_OSABI];
67 Y->Header.Type = Obj.getHeader()->e_type;
68 Y->Header.Machine = Obj.getHeader()->e_machine;
69 Y->Header.Flags = Obj.getHeader()->e_flags;
70 Y->Header.Entry = Obj.getHeader()->e_entry;
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 53 void printFileHeaders(const MachHeader &Header);
396 void MachODumper::printFileHeaders(const MachHeader &Header) {
397 W.printEnum("Magic", Header.magic, makeArrayRef(MachOMagics));
398 W.printEnum("CpuType", Header.cputype, makeArrayRef(MachOHeaderCpuTypes));
399 uint32_t subtype = Header.cpusubtype & ~MachO::CPU_SUBTYPE_MASK;
400 switch (Header.cputype) {
423 W.printEnum("FileType", Header.filetype, makeArrayRef(MachOHeaderFileTypes));
424 W.printNumber("NumOfLoadCommands", Header.ncmds);
425 W.printNumber("SizeOfLoadCommands", Header.sizeofcmds);
426 W.printFlags("Flags", Header.flags, makeArrayRef(MachOHeaderFlags))
    [all...]
ELFDumper.cpp 811 // program header type.
    [all...]

Completed in 531 milliseconds

<<11121314151617181920>>