HomeSort by relevance Sort by last modified time
    Searched refs:Content (Results 1 - 25 of 140) sorted by null

1 2 3 4 5 6

  /external/nist-sip/java/gov/nist/javax/sip/message/
MultipartMimeContent.java 10 public abstract boolean add(Content content);
13 * Return the Content type header to assign to the outgoing sip meassage.
22 * Set the content by its type.
24 * @param content
26 public abstract void addContent( Content content);
29 * Retrieve the list of Content that is part of this MultitypeMime content.
31 * @return - the content iterator. Returns an empty iterator if no content list present
    [all...]
Content.java 6 public interface Content {
8 public abstract void setContent(Object content);
17 * The default packing method. This packs the content to be appended to the
MultipartMimeContentImpl.java 21 * Content list for multipart mime content type.
27 private List<Content> contentList = new LinkedList<Content>();
36 * Creates a default content list.
47 * @see gov.nist.javax.sip.message.MultipartMimeContentExt#add(gov.nist.javax.sip.message.Content)
49 public boolean add(Content content) {
50 return contentList.add((ContentImpl) content);
71 for (Content content : this.contentList)
91 ContentImpl content = new ContentImpl(body, delimiter); local
128 ContentImpl content = new ContentImpl(rest, boundary); local
    [all...]
ContentImpl.java 8 public class ContentImpl implements Content {
12 * The content type header for this chunk of content.
15 private Object content; field in class:ContentImpl
25 public ContentImpl( String content, String boundary ) {
26 this.content = content;
36 public void setContent(Object content) {
37 this.content = content;
    [all...]
  /external/wpa_supplicant_8/hs20/server/www/
est.php 83 header("Content-Transfer-Encoding: base64");
84 header("Content-Type: application/pkcs7-mime");
91 header("Content-Transfer-Encoding: base64");
92 header("Content-Type: application/csrattrs");
104 error_log("EST: simpleenroll without Content-Type");
105 die("Missing Content-Type");
108 error_log("EST: simpleenroll - unexpected Content-Type: " .
110 die("Unexpected Content-Type");
185 header("Content-Transfer-Encoding: base64");
186 header("Content-Type: application/pkcs7-mime")
    [all...]
spp.php 6 error_log("spp.php - Unexpected Content-Type " . $_SERVER["CONTENT_TYPE"]);
7 die("Unexpected Content-Type");
123 header("Content-Type: application/soap+xml");
  /external/chromium_org/content/test/data/service_worker/
fetch_event.js 7 headers.set('Content-Language', 'fi');
8 headers.set('Content-Type', 'text/html; charset=UTF-8');
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 88 Content-Type: multipart/knowbot;
95 Content-Type: multipart/knowbot-metadata;
100 Content-Type: message/rfc822
113 Content-Type: text/isl
130 Content-Type: message/external-body;
134 Content-Type: text/isl
146 Content-Type: multipart/knowbot-code;
151 Content-Type: text/plain
176 Content-Type: multipart/knowbot-state;
182 Content-Type: text/plai
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_MimeWriter.py 88 Content-Type: multipart/knowbot;
95 Content-Type: multipart/knowbot-metadata;
100 Content-Type: message/rfc822
113 Content-Type: text/isl
130 Content-Type: message/external-body;
134 Content-Type: text/isl
146 Content-Type: multipart/knowbot-code;
151 Content-Type: text/plain
176 Content-Type: multipart/knowbot-state;
182 Content-Type: text/plai
    [all...]
  /external/clang/unittests/Tooling/
RewriterTestContext.h 50 FileID createInMemoryFile(StringRef Name, StringRef Content) {
51 llvm::MemoryBuffer *Source = llvm::MemoryBuffer::getMemBuffer(Content);
61 FileID createOnDiskFile(StringRef Name, StringRef Content) {
69 OutStream << Content;
  /external/clang/lib/Index/
SimpleFormatContext.h 49 FileID createInMemoryFile(StringRef Name, StringRef Content) {
50 llvm::MemoryBuffer *Source = llvm::MemoryBuffer::getMemBuffer(Content);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameActivity.java 23 import android.content.Context;
24 import android.content.Intent;
56 //BEGIN_INCLUDE(content)
57 public static class Content extends TouchPaint.PaintView implements
77 public Content(Context context, AttributeSet attrs) {
161 //END_INCLUDE(content)
163 Content mContent;
173 mContent = (Content)findViewById(R.id.content);
ContentBrowserActivity.java 23 import android.content.Context;
24 import android.content.Intent;
49 * a content browser style of UI (such as a book reader).
55 * Implementation of a view for displaying immersive content, using system UI
57 * content.
59 //BEGIN_INCLUDE(content)
60 public static class Content extends ScrollView
76 public Content(Context context, AttributeSet attrs) {
93 // state of the content browser that it will interact with.
159 //END_INCLUDE(content)
    [all...]
ContentBrowserNavActivity.java 23 import android.content.Context;
24 import android.content.Intent;
49 * a content browser style of UI (such as a book reader) that hides the
56 * Implementation of a view for displaying immersive content, using system UI
58 * content.
60 //BEGIN_INCLUDE(content)
61 public static class Content extends ScrollView
77 public Content(Context context, AttributeSet attrs) {
94 // state of the content browser that it will interact with.
161 //END_INCLUDE(content)
    [all...]
VideoPlayerActivity.java 23 import android.content.Context;
24 import android.content.Intent;
58 * screen can be filled with content (at the expense of no user interaction).
60 //BEGIN_INCLUDE(content)
61 public static class Content extends ImageView implements
80 public Content(Context context, AttributeSet attrs) {
182 //END_INCLUDE(content)
184 Content mContent;
196 mContent = (Content)findViewById(R.id.content);
    [all...]
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 174 static void printErrorContentToStream(const Diagnostics::ErrorContent &Content,
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],
  /development/samples/Support4Demos/src/com/example/android/supportv4/media/
TransportControllerActivity.java 25 import android.content.Context;
43 private Content mContent;
102 * This is the actual video player. It is the top-level content of
106 public static class Content extends VideoView implements
132 public Content(Context context, AttributeSet attrs) {
279 mContent = (Content) findViewById(R.id.content);
  /external/chromium_org/chrome/tools/
webforms_aggregator_unittests.py 33 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
58 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
81 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
103 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
167 for filename, content in file_content.iteritems():
170 f.write(content)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeAdaptor.cs 235 #region Content
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 223 #region Content
  /external/clang/lib/AST/
CommentParser.cpp 554 SmallVector<InlineContentComment *, 8> Content;
561 assert(Content.size() != 0);
562 break; // Block content or EOF ahead, finish this parapgaph.
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())
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/chromium_org/google_apis/drive/
gdata_wapi_parser.h 228 // Content details of a resource: mime-type, url, and so on.
229 class Content {
231 Content();
236 base::JSONValueConverter<Content>* converter);
238 // The URL to download the file content.
369 // The URL to download a file content.
388 // File content MD5 (exists only for kinds FILE and PDF).
490 void set_content(const Content& content) {
491 content_ = content;
    [all...]
  /external/clang/include/clang/AST/
Comment.h 74 /// True if there is a newline after this inline content node.
238 /// Inline content (contained within a block).
300 /// A command with word-like arguments that is considered inline content.
374 /// treated as inline content (regardless HTML semantics).
532 /// Block content (contains inline content).
549 /// A single paragraph that contains inline content.
551 ArrayRef<InlineContentComment *> Content;
554 ParagraphComment(ArrayRef<InlineContentComment *> Content) :
558 Content(Content)
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 50 /// this content cache. This is used for performance analysis.
62 /// getSize - Returns the size of the content encapsulated by this ContentCache.
104 // situation where the content cache referenced a file which no longer
385 // Delete FileEntry objects corresponding to content caches. Since the actual
386 // content cache objects are bump pointer allocated, we just have to run the
504 /// \brief As part of recovering from missing or changed content, produce a
514 /// \brief As part of recovering from missing or changed content, produce a
515 /// fake content cache.
    [all...]

Completed in 1709 milliseconds

1 2 3 4 5 6