Home
last modified time | relevance | path

Searched full:content (Results 1 – 25 of 4286) sorted by relevance

12345678910>>...172

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jar ... .content org.eclipse.core.internal.content.ContentType$InvalidDescriber extends java.lang.Object
/external/libxml2/result/XPath/tests/
Dnodespat16 content=txt
18 content=hello
20 content=data
22 content=data
25 content=txt
27 content=hello
29 content=data
31 content=data
40 content=txt
42 content=hello
[all …]
Dmixedpat9 content=root
18 content=root
22 content=p1
31 content=root
35 content=p1
44 content=root
48 content=p1
57 content=root
61 content=p1
65 content=p2
[all …]
Dchaptersbase9 content=gnome is great
12 content=& linux too
21 content=gnome is great
24 content=& linux too
40 content=chapter1
44 content=chapter2
48 content=chapter3
52 content=chapter4
56 content=chapter5
69 content=Welcome to Gnome
[all …]
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
Dtest_fileapp.py27 assert 'application/octet-stream' == res.header('content-type')
28 assert '9' == res.header('content-length')
63 assert 'attachment' == res.header('content-disposition')
64 assert 'application/octet-stream' == res.header('content-type')
67 res.header('content-disposition')
68 assert 'text/plain' == res.header('content-type')
70 assert 'inline' == res.header('content-disposition')
71 assert 'application/octet-stream' == res.header('content-type')
74 res.header('content-disposition')
75 assert 'text/plain' == res.header('content-type')
[all …]
/external/skia/src/pdf/
DSkPDFUtils.cpp46 void SkPDFUtils::AppendTransform(const SkMatrix& matrix, SkWStream* content) { in AppendTransform() argument
52 SkPDFUtils::AppendScalar(values[i], content); in AppendTransform()
53 content->writeText(" "); in AppendTransform()
55 content->writeText("cm\n"); in AppendTransform()
59 void SkPDFUtils::MoveTo(SkScalar x, SkScalar y, SkWStream* content) { in MoveTo() argument
60 SkPDFUtils::AppendScalar(x, content); in MoveTo()
61 content->writeText(" "); in MoveTo()
62 SkPDFUtils::AppendScalar(y, content); in MoveTo()
63 content->writeText(" m\n"); in MoveTo()
67 void SkPDFUtils::AppendLine(SkScalar x, SkScalar y, SkWStream* content) { in AppendLine() argument
[all …]
/external/libexif/libexif/
Dexif-content.c1 /* exif-content.c
23 #include <libexif/exif-content.h>
46 ExifContent *content = exif_content_new_mem (mem); in exif_content_new() local
50 return content; in exif_content_new()
56 ExifContent *content; in exif_content_new_mem() local
60 content = exif_mem_alloc (mem, (ExifLong) sizeof (ExifContent)); in exif_content_new_mem()
61 if (!content) in exif_content_new_mem()
63 content->priv = exif_mem_alloc (mem, in exif_content_new_mem()
65 if (!content->priv) { in exif_content_new_mem()
66 exif_mem_free (mem, content); in exif_content_new_mem()
[all …]
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tree_construction/
Dtemplate.dat10 | content
21 | content
33 | content
45 | content
57 | content
73 | content
91 | content
115 | content
130 | content
145 | content
[all …]
/external/nist-sip/java/gov/nist/javax/sip/message/
DMultipartMimeContentImpl.java21 * 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) { in add() argument
50 return contentList.add((ContentImpl) content); in add()
71 for (Content content : this.contentList) { in toString()
72 stringBuffer.append(content.toString()); in toString()
79 * unpack a multipart mime packet and return a list of content packets.
81 * @return -- an iterator of Content blocks.
[all …]
DMultipartMimeContent.java10 public abstract boolean add(Content content); in add() argument
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); in addContent() argument
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.
33 public Iterator<Content> getContents(); in getContents()
36 * Get the number of Content parts.
38 * @return - the content parts.
DMessageFactoryImpl.java95 * with a body in the form of a Java object and the body content type.
112 * @param content -
113 * the new Object of the body content value of this Message.
115 * the new ContentTypeHeader object of the content type value of
125 Object content) throws ParseException { in createRequest() argument
128 || maxForwards == null || content == null in createRequest()
141 sipRequest.setContent(content, contentType); in createRequest()
152 * with a body in the form of a byte array and body content type.
169 * @param content -
170 * the new byte array of the body content value of this Message.
[all …]
DContentImpl.java8 public class ContentImpl implements Content {
12 * The content type header for this chunk of content.
15 private Object content; field in ContentImpl
25 public ContentImpl( String content, String boundary ) { in ContentImpl() argument
26 this.content = content; in ContentImpl()
36 public void setContent(Object content) { in setContent() argument
37 this.content = content; in setContent()
49 * @see gov.nist.javax.sip.message.Content#getContent()
52 return this.content; in getContent()
62 return content.toString(); in toString()
[all …]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
DBinaryInputCapsule.java74 public void setContent(byte[] content, int start, int limit) { in setContent() argument
77 byte alias = content[index]; in setContent()
87 value = readBitSet(content); in setContent()
91 value = readBoolean(content); in setContent()
95 value = readBooleanArray(content); in setContent()
99 value = readBooleanArray2D(content); in setContent()
103 value = readByte(content); in setContent()
107 value = readByteArray(content); in setContent()
111 value = readByteArray2D(content); in setContent()
115 value = readByteBuffer(content); in setContent()
[all …]
/external/doclava/res/assets/templates/assets/
Dstyle.css8 div#jd-content table {
12 div#jd-content td, div#jd-content th {
16 div#jd-content table.jd-linktable {
21 div#jd-content p.jd-deprecated-warning {
26 div#jd-content table.jd-linktable th {
38 div#jd-content table.jd-linktable td {
42 div#jd-content table.jd-linktable td p {
48 div#jd-content table.jd-linktable .jd-linkcol {
59 div#jd-content table.jd-linktable .jd-descrcol {
70 div#jd-content table.jd-linktable .jd-descrcol p {
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
DAbstractBox.java56 private ByteBuffer content; field in AbstractBox
70 * Get the box's content size without its header. This must be the exact number of bytes
73 * @return Gets the box's content size in bytes
79 * Write the box's content into the given <code>ByteBuffer</code>. This must include flags
83 * @param byteBuffer the sink for the box's content
90 * @param content the box's raw content beginning after the 4-cc field.
92 protected abstract void _parseDetails(ByteBuffer content); in _parseDetails() argument
95 * Read the box's content from a byte channel without parsing it. Parsing is done on-demand.
109content = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) re… in parse()
113 content = ChannelHelper.readFully(readableByteChannel, contentSize); in parse()
[all …]
/external/lldb/www/
Dlldb-gdb.html4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
15 <div id="content">
43 <td class="content">
47 <td class="content">
56 <td class="content">
60 <td class="content">
67 <td class="content">
74 <td class="content">
84 <td class="content">
91 <td class="content">
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/
DProtectionSystemSpecificHeaderBox.java18 * This box contains information needed by a Content Protection System to play back the content. The
22 …* The data encapsulated in the Data field may be read by the identified Content Protection System …
40 byte[] content; field in ProtectionSystemSpecificHeaderBox
54 return content; in getContent()
57 public void setContent(byte[] content) { in setContent() argument
58 this.content = content; in setContent()
67 return 24 + content.length; in getContentSize()
75 IsoTypeWriter.writeUInt32(byteBuffer, content.length); in getContent()
76 byteBuffer.put(content); in getContent()
80 protected void _parseDetails(ByteBuffer content) { in _parseDetails() argument
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DMultipartBuilderTest.java36 + "Content-Length: 13\r\n" in singlePart()
57 + "Content-Length: 5\r\n" in threeParts()
61 + "Content-Length: 5\r\n" in threeParts()
65 + "Content-Length: 3\r\n" in threeParts()
88 + "Content-Disposition: form-data; name=\"submit-name\"\r\n" in fieldAndTwoFiles()
89 + "Content-Length: 5\r\n" in fieldAndTwoFiles()
93 + "Content-Disposition: form-data; name=\"files\"\r\n" in fieldAndTwoFiles()
94 + "Content-Type: multipart/mixed; boundary=BbC04y\r\n" in fieldAndTwoFiles()
95 + "Content-Length: 337\r\n" in fieldAndTwoFiles()
98 + "Content-Disposition: file; filename=\"file1.txt\"\r\n" in fieldAndTwoFiles()
[all …]
/external/libxml2/result/XPath/xptr/
Dstrrange8 content=a simple test
11 content=a simple test
20 content=a simple test
23 content=a simple test
28 content=multiple tests
31 content=multiple tests
36 content=anced test
39 content=anced test
48 content=a diff
51 content=cult one
[all …]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DRequestBody.java28 /** Returns the Content-Type header for this body. */
39 /** Writes the content of this request to {@code out}. */
43 * Returns a new request body that transmits {@code content}. If {@code
46 public static RequestBody create(MediaType contentType, String content) { in create() argument
55 byte[] bytes = content.getBytes(charset); in create()
59 /** Returns a new request body that transmits {@code content}. */
60 public static RequestBody create(final MediaType contentType, final ByteString content) { in create() argument
67 return content.size(); in create()
71 sink.write(content); in create()
76 /** Returns a new request body that transmits {@code content}. */
[all …]
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Dwsgiwrappers.py82 value of the ``Content-Type`` header's charset parameter if one was
265 Content-Type's charset parameter, if one is set
267 charset_match = _CHARSET_RE.search(self.headers.get('Content-Type', ''))
296 """A basic HTTP response with content, headers, and out-bound cookies
307 def __init__(self, content=b'', mimetype=None, code=200): argument
311 self.content = content
323 self.headers['Content-Type'] = mimetype
329 When the content is an iterator, the actual content is replaced with the
333 content = ''.join(self.get_content())
335 content = str(self.content)
[all …]
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
DHttpPostRequestTest.java16 public static final String CONTENT_LENGTH = "Content-Length: ";
27 String content = VALUE_TEST_SIMPLE_RAW_DATA_WITH_AMPHASIS + "\n"; in testSimpleRawPostData() local
28 int size = content.length() + header.length(); in testSimpleRawPostData()
31 String input = header + CONTENT_LENGTH + (contentLength+4) + "\r\n\r\n" + content; in testSimpleRawPostData()
43 String content = "--" + divider + "\n" + in testSimplePostWithSingleMultipartFormField() local
44 "Content-Disposition: form-data; name=\""+FIELD+"\"\n" + in testSimplePostWithSingleMultipartFormField()
48 int size = content.length() + header.length(); in testSimplePostWithSingleMultipartFormField()
51 String input = header + CONTENT_LENGTH + (contentLength+4) + "\r\n\r\n" + content; in testSimplePostWithSingleMultipartFormField()
63 String content = "--" + divider + "\n" + in testPostWithMultipleMultipartFormFields() local
64 "Content-Disposition: form-data; name=\""+FIELD+"\"\n" + in testPostWithMultipleMultipartFormFields()
[all …]
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_exceptions/
Dtest_reporter.py6 def setup_file(fn, content=None): argument
14 if content is not None:
16 f.write(content)
32 content = open(fn).read()
33 assert len(content.splitlines()) == 4, len(content.splitlines())
34 assert 'ValueError' in content
35 assert 'int' in content
36 assert 'test_reporter.py' in content
37 assert 'test_logger' in content
46 content = open(fn).read()
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
DUnknownEntry.java27 private ByteBuffer content; field in UnknownEntry
33 return content; in getContent()
36 public void setContent(ByteBuffer content) { in setContent() argument
37 this.content = (ByteBuffer) content.duplicate().rewind(); in setContent()
42 this.content = (ByteBuffer) byteBuffer.duplicate().rewind(); in parse()
47 return content.duplicate(); in get()
52 ByteBuffer bb = content.duplicate(); in toString()
57 "content=" + Hex.encodeHex(b) + in toString()
72 if (content != null ? !content.equals(that.content) : that.content != null) { in equals()
81 return content != null ? content.hashCode() : 0; in hashCode()
/external/libxml2/
Dbuf.c43 xmlChar *content; /* The buffer content UTF8 */ member
136 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufCreate()
137 if (ret->content == NULL) { in xmlBufCreate()
142 ret->content[0] = 0; in xmlBufCreate()
171 ret->content = (xmlChar *) xmlMallocAtomic(ret->size * sizeof(xmlChar)); in xmlBufCreateSize()
172 if (ret->content == NULL) { in xmlBufCreateSize()
177 ret->content[0] = 0; in xmlBufCreateSize()
179 ret->content = NULL; in xmlBufCreateSize()
189 * caller. The buffer is reset to an empty content.
207 ret = buf->content; in xmlBufDetach()
[all …]

12345678910>>...172