Searched refs:Content (Results 1 - 25 of 67) sorted by relevance

123

/external/python/cpython2/Demo/cgi/
H A Dcgi0.sh5 echo Content-type: text/plain
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMultipartMimeContent.java10 public abstract boolean add(Content content);
13 * Return the Content type header to assign to the outgoing sip meassage.
26 public abstract void addContent( Content content);
29 * Retrieve the list of Content that is part of this MultitypeMime content.
33 public Iterator<Content> getContents();
36 * Get the number of Content parts.
H A DContent.java6 public interface Content { interface
H A DMultipartMimeContentImpl.java21 * Content list for multipart mime content type.
27 private List<Content> contentList = new LinkedList<Content>();
47 * @see gov.nist.javax.sip.message.MultipartMimeContentExt#add(gov.nist.javax.sip.message.Content)
49 public boolean add(Content content) {
71 for (Content content : this.contentList) {
81 * @return -- an iterator of Content blocks.
90 this.contentList = new LinkedList<Content>();
155 public Content getContentByType(String contentType, String contentSubtype) {
156 Content retva
[all...]
H A DContentImpl.java8 public class ContentImpl implements Content {
49 * @see gov.nist.javax.sip.message.Content#getContent()
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DICUTagletAdapter.java14 import com.sun.tools.doclets.internal.toolkit.Content;
30 public Content getTagletOutput(Tag tag, TagletWriter writer)
37 Content out = writer.getOutputInstance();
43 public Content getTagletOutput(Doc holder, TagletWriter writer)
46 Content out = writer.getOutputInstance();
/external/curl/docs/cmdline-opts/
H A Dignore-content-length.d5 For HTTP, Ignore the Content-Length header. This is particularly useful for
6 servers running Apache 1.x, which will report incorrect Content-Length for
H A Dremote-header-name.d7 Content-Disposition filename instead of extracting a filename from the URL.
/external/abi-compliance-checker/
H A DMakefile.pl192 my $Content = readFile($ARCHIVE_DIR."/".$TOOL_SNAME.".pl");
194 $Content=~s/MODULES_INSTALL_PATH/$REL_PATH/;
197 $Content=~s/MODULES_INSTALL_PATH/$MODULES_PATH/;
203 writeFile($EXE_PATH."/".$TOOL_SNAME, $Content);
279 my $Content = <FILE>;
281 return $Content;
286 my ($Path, $Content) = @_;
289 print FILE $Content;
/external/abi-dumper/
H A DMakefile.pl188 my $Content = readFile($ARCHIVE_DIR."/".$TOOL_SNAME.".pl");
190 $Content=~s/MODULES_INSTALL_PATH/$REL_PATH/;
193 $Content=~s/MODULES_INSTALL_PATH/$MODULES_PATH/;
199 writeFile($EXE_PATH."/".$TOOL_SNAME, $Content);
248 my $Content = <FILE>;
250 return $Content;
255 my ($Path, $Content) = @_;
258 print FILE $Content;
/external/abi-compliance-checker/modules/Internals/
H A DXmlDump.pm802 my ($Ext, $Content) = ($2, $3);
803 $Content=~s/\A\s+//g;
804 $Content=~s/\s+\Z//g;
813 if(substr($Content, 0, 1) ne "<") {
814 $Content = xmlSpecChars_R($Content);
816 return $Content;
826 my $Content = openTag($Tag, @Ext);
827 chomp($Content);
828 $Content
[all...]
H A DSysCheck.pm474 my $Content = readFile($DiffOut);
475 if(length($Content)<3500 and $Content=~/The files are identical|No changes|Failed to create/i) {
479 $Content=~s/<\!--(.|\n)+?-->\s*//g;
480 $Content=~s/\A((.|\n)+<body\s*>)((.|\n)+)(<\/body>(.|\n)+)\Z/$3/;
481 $Content=~s/(<td colspan=\"5\"[^>]*>)(.+)(<\/td>)/$1$3/;
482 $Content=~s/(<table) /$1 class='diff_tbl' /g;
484 $Content=~s&<td class="lineno" valign="top"></td>&&g;
485 $Content=~s&<td class="lineno"></td>&&g;
486 $Content
[all...]
/external/clang/lib/Index/
H A DSimpleFormatContext.h48 FileID createInMemoryFile(StringRef Name, StringRef Content) { argument
50 llvm::MemoryBuffer::getMemBuffer(Content));
/external/clang/unittests/Tooling/
H A DRewriterTestContext.h55 FileID createInMemoryFile(StringRef Name, StringRef Content) { argument
57 llvm::MemoryBuffer::getMemBuffer(Content);
67 FileID createOnDiskFile(StringRef Name, StringRef Content) { argument
75 OutStream << Content; local
/external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
H A DDeflateCompressorTest.java46 private static class Content { class in class:DeflateCompressorTest
133 Content[] content = new Content[3];
140 content[strategy] = new Content();
162 Content[] content = new Content[10]; // Note that level 0 (store) is not used.
169 content[level] = new Content();
/external/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp174 static void printErrorContentToStream(const Diagnostics::ErrorContent &Content, argument
176 if (Content.Messages.size() == 1) {
177 printMessageToStream(Content.Messages[0], "", OS);
179 for (size_t i = 0, e = Content.Messages.size(); i != e; ++i) {
181 printMessageToStream(Content.Messages[i],
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DITreeAdaptor.cs235 #region Content
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DITreeAdaptor.cs255 #region Content
/external/clang/lib/Rewrite/
H A DRewriter.cpp250 Content = SourceMgr->getSLocEntry(FID).getFile().getContentCache(); local
251 unsigned lineOffs = Content->SourceLineCache[lineNo];
354 Content = SourceMgr->getSLocEntry(FID).getFile().getContentCache(); local
357 unsigned parentLineOffs = Content->SourceLineCache[parentLineNo];
358 unsigned startLineOffs = Content->SourceLineCache[startLineNo];
383 unsigned offs = Content->SourceLineCache[lineNo];
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs223 #region Content
/external/clang/lib/AST/
H A DCommentParser.cpp554 SmallVector<InlineContentComment *, 8> Content; local
561 assert(Content.size() != 0);
565 Content.push_back(S.actOnUnknownCommand(Tok.getLocation(),
575 if (Content.size() == 0)
589 Content.push_back(S.actOnUnknownCommand(Tok.getLocation(),
596 Content.push_back(parseInlineCommand());
618 if (Content.size() > 0)
619 Content.back()->addTrailingNewline();
625 Content.push_back(parseHTMLStartTag());
629 Content
[all...]
/external/clang/include/clang/AST/
H A DComment.h553 ArrayRef<InlineContentComment *> Content; member in class:clang::comments::ParagraphComment
556 ParagraphComment(ArrayRef<InlineContentComment *> Content) : argument
560 Content(Content) {
561 if (Content.empty()) {
569 setSourceRange(SourceRange(Content.front()->getLocStart(),
570 Content.back()->getLocEnd()));
571 setLocation(Content.front()->getLocStart());
579 return reinterpret_cast<child_iterator>(Content.begin());
583 return reinterpret_cast<child_iterator>(Content
[all...]
/external/clang/lib/Basic/
H A DSourceManager.cpp1297 ContentCache *Content; local
1299 Content = LastLineNoContentCache;
1309 Content = const_cast<ContentCache*>(Entry.getFile().getContentCache());
1314 if (!Content->SourceLineCache) {
1316 ComputeLineNumbers(Diag, Content, ContentCacheAlloc, *this, MyInvalid);
1326 unsigned *SourceLineCache = Content->SourceLineCache;
1328 unsigned *SourceLineCacheEnd = SourceLineCache + Content->NumLines;
1367 if (LastLineNoResult < Content->NumLines)
1377 LastLineNoContentCache = Content;
1745 ContentCache *Content
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeAdaptor.h111 #pragma mark Content
/external/clang/include/clang/Tooling/
H A DTooling.h250 /// \param Content A null terminated buffer of the file's content.
252 void mapVirtualFile(StringRef FilePath, StringRef Content);
309 /// \param Content A null terminated buffer of the file's content.
310 void mapVirtualFile(StringRef FilePath, StringRef Content);

Completed in 1555 milliseconds

123