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

1 2

  /external/nist-sip/java/gov/nist/javax/sip/message/
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
  /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;
RefactoringTest.cpp 86 // 'e' in the original content.
227 FileID createFile(llvm::StringRef Name, llvm::StringRef Content) {
235 OutStream << 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/pdfium/core/include/fxcrt/
fx_xml.h 57 void Set(FX_BOOL bCDATA, FX_WSTR content, IFX_Allocator* pAllocator = NULL)
60 m_Content.Set(content, pAllocator);
163 enum ChildType { Invalid, Element, Content};
  /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/llvm/include/llvm/Object/
ELFYAML.h 86 yaml::BinaryRef Content;
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 254 Content = SourceMgr->getSLocEntry(FID).getFile().getContentCache();
255 unsigned lineOffs = Content->SourceLineCache[lineNo];
387 Content = SourceMgr->getSLocEntry(FID).getFile().getContentCache();
390 unsigned parentLineOffs = Content->SourceLineCache[parentLineNo];
391 unsigned startLineOffs = Content->SourceLineCache[startLineNo];
416 unsigned offs = Content->SourceLineCache[lineNo];
  /external/chromium_org/google_apis/drive/
gdata_wapi_parser.cc 39 const char kContentField[] = "content";
302 // Content implementation
304 Content::Content() {
308 void Content::RegisterJSONConverter(
309 base::JSONValueConverter<Content>* converter) {
310 converter->RegisterCustomField(kSrcField, &Content::url_, &GetGURLFromString);
311 converter->RegisterStringField(kTypeField, &Content::mime_type_);
gdata_wapi_parser.h 227 // Content details of a resource: mime-type, url, and so on.
228 class Content {
230 Content();
235 base::JSONValueConverter<Content>* converter);
237 // The URL to download the file content.
373 // The URL to download a file content.
392 // File content MD5 (exists only for kinds FILE and PDF).
449 void set_content(const Content& content) {
450 content_ = content;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Color.js 622 Content: WebInspector.Color.fromRGBA([111, 168, 220, .66]),
  /external/chromium_org/third_party/skia/gm/
multipicturedraw.cpp 298 // Draw the content into a single canvas
313 // Draw the content into multiple canvases/tiles
361 * single vs. multiple pictures (e.g., normal vs. picture-pile-style content)
365 enum Content {
387 MultiPictureDraw(Content content, Layout layout) : fContent(content), fLayout(layout) {
403 Content fContent;
  /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/lib/Format/
TokenAnnotator.cpp     [all...]
  /frameworks/base/cmds/content/src/com/android/commands/content/
Content.java 17 package com.android.commands.content;
22 import android.content.ContentValues;
23 import android.content.IContentProvider;
41 * This class is a command line utility for manipulating content. A client
42 * can insert, update, and remove records in a content provider. For example,
49 * adb shell content insert --uri content://settings/secure --bind name:s:new_setting
55 * adb shell content update --uri content://settings/secure --bind value:s:newer_value
60 * adb shell content delete --uri content://settings/secure --where "name=\'new_setting\'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
NetworkPanel.js 91 WebInspector.NetworkLogView._responseHeaderColumns = ["Cache-Control", "Connection", "Content-Encoding", "Content-Length", "ETag", "Keep-Alive", "Last-Modified", "Server", "Vary"];
94 "Cache-Control": false, "Connection": false, "Content-Encoding": false, "Content-Length": false, "ETag": false, "Keep-Alive": false, "Last-Modified": false, "Server": false, "Vary": false
134 "Content-Encoding": WebInspector.UIString("Content-Encoding"),
135 "Content-Length": WebInspector.UIString("Content-Length"),
352 titleDOMFragment: this._makeHeaderFragment(WebInspector.UIString("Size"), WebInspector.UIString("Content")),
383 if (headerName === "Content-Length"
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channel_unittest.cc 87 typedef ContentT Content;
215 // Add stream information (SSRC) to the local content but not to the remote
216 // content. This means that we per default know the SSRC of what we send but
252 // Add stream information (SSRC) to the local content but not to the remote
253 // content. This means that we per default know the SSRC of what we send but
461 typename T::Content* content) {
464 void CopyContent(const typename T::Content& source,
465 typename T::Content* content) {
472 typename T::Content content; local
562 typename T::Content content; local
576 typename T::Content content; local
592 typename T::Content content; local
612 typename T::Content content; local
633 typename T::Content content; local
656 typename T::Content content; local
1548 typename T::Content content; local
1800 typename T::Content content; local
    [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/include/clang/Basic/
SourceManager.h 142 /// \brief True if this content cache was initially created for a source
176 /// \brief Returns the memory buffer for the associated content.
190 /// \brief Returns the size of the content encapsulated by this
205 /// this content cache. This is used for performance analysis.
    [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...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 1173 milliseconds

1 2