Searched defs:content (Results 1 - 15 of 15) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/w3c/dom/
H A DText.java17 * and represents the textual content (termed <a href='http://www.w3.org/TR/2004/REC-xml-20040204#syntax'>character data</a> in XML) of an <code>Element</code> or <code>Attr</code>. If there is no
18 * markup inside an element's content, the text is contained in a single
31 * <p> No lexical check is done on the content of a <code>Text</code> node
34 * characters "&lt;&amp;" if the textual content is part of an element or of
44 * will contain all the content up to the <code>offset</code> point. A
45 * new node of the same type, which contains all the content at and
63 * element content whitespace</a>, often abusively called "ignorable whitespace". The text node is
64 * determined to contain whitespace in element content during the load
116 * @param content The content o
123 replaceWholeText(String content) argument
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
H A DContentInfo.java20 private DEREncodable content; field in class:ContentInfo
46 content = ((ASN1TaggedObject)e.nextElement()).getObject();
52 DEREncodable content)
55 this.content = content;
65 return content;
73 * content
83 if (content != null)
85 v.add(new BERTaggedObject(0, content));
50 ContentInfo( DERObjectIdentifier contentType, DEREncodable content) argument
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/pkcs/
H A DContentInfo.java20 private DEREncodable content; field in class:ContentInfo
46 content = ((DERTaggedObject)e.nextElement()).getObject();
52 DEREncodable content)
55 this.content = content;
65 return content;
73 * content
83 if (content != null)
85 v.add(new BERTaggedObject(0, content));
50 ContentInfo( DERObjectIdentifier contentType, DEREncodable content) argument
H A DEncryptedData.java62 DEREncodable content)
68 v.add(new BERTaggedObject(false, 0, content));
59 EncryptedData( DERObjectIdentifier contentType, AlgorithmIdentifier encryptionAlgorithm, DEREncodable content) argument
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
H A DContentHandlerTest.java50 Object content = handler.getContent(conn, classes);
51 assertEquals("Foo", ((Foo) content).getFoo());
54 content = handler.getContent(conn, classes);
55 assertEquals("FooSub", ((Foo) content).getFoo());
59 content = handler.getContent(conn, classes2);
60 assertNull(content);
75 Object content = handler.getContent(conn);
76 assertEquals("Foo", ((Foo) content).getFoo());
93 private Object content; field in class:ContentHandlerImpl
97 return content;
100 setContent(Object content) argument
[all...]
/dalvik/libcore/security/src/main/java/java/security/
H A DSignedObject.java36 private byte[] content; field in class:SignedObject
46 byte[] tmp = new byte[content.length];
47 System.arraycopy(content, 0, tmp, 0, content.length);
48 content = tmp;
85 content = baos.toByteArray();
88 signingEngine.update(content);
105 content));
153 verificationEngine.update(content);
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
H A DTextImpl.java66 // constitute "element content whitespace" is defined by the containing
84 public final Text replaceWholeText(String content) throws DOMException { argument
95 // ...except the current node if we have content for it
96 if (n == this && content != null && content.length() > 0) {
97 setData(content);
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs7/
H A DContentInfo.java41 * content [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL
56 private Object content; field in class:ContentInfo
59 public ContentInfo(int[] oid, Object content) { argument
61 this.content = content;
64 private ContentInfo(int[] oid, Object content, byte[] encoding) { argument
66 this.content = content;
72 return (SignedData)content;
78 return content;
[all...]
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCharsetProviderTest.java108 private void setupFile(String path, String content) throws Exception { argument
117 writer.write(content);
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/netscape/
H A DNetscapeCertRequest.java52 DERBitString content; field in class:NetscapeCertRequest
111 content = new DERBitString(pkac);
146 content = new DERBitString(new DERSequence(content_der));
204 sig.update(content.getBytes());
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DBerOutputStream.java50 * Current encoded content
52 public Object content; field in class:BerOutputStream
83 System.arraycopy(content, 0, encoded, offset, length);
89 BitString bStr = (BitString) content;
96 if (((Boolean) content).booleanValue()) {
113 System.arraycopy(content, 0, encoded, offset, length);
118 System.arraycopy(content, 0, encoded, offset, length);
123 System.arraycopy(content, 0, encoded, offset, length);
128 System.arraycopy(content, 0, encoded, offset, length);
134 int[] oid = (int[]) content;
[all...]
H A DBerInputStream.java86 * length an content octets
168 * Current decoded content
170 public Object content; field in class:BerInputStream
178 * Current decoded content offset
243 // tag length long_form content
263 // content: check unused bits
307 // check encoded content
379 // check content: milliseconds
520 // check encoded content
574 // check content
[all...]
/dalvik/libcore/icu/src/main/native/
H A DResources.cpp314 jstring content = formatDate(env, shortFormat, daylightSavingDate); local
315 env->SetObjectArrayElement(shortDlTimeArray, i, content);
316 env->DeleteLocalRef(content);
318 content = formatDate(env, shortFormat, standardDate);
319 env->SetObjectArrayElement(shortStdTimeArray, i, content);
320 env->DeleteLocalRef(content);
322 content = formatDate(env, longFormat, daylightSavingDate);
323 env->SetObjectArrayElement(longDlTimeArray, i, content);
324 env->DeleteLocalRef(content);
326 content
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java1606 * This attribute returns the text content of this node and its
1613 * element content whitespaces . Similarly, on setting, no parsing is
1614 * performed either, the input string is taken as pure textual content.
1615 * <br>The string returned is made of the text content of this node
1656 * This attribute returns the text content of this node and its
1663 * element content whitespaces . Similarly, on setting, no parsing is
1664 * performed either, the input string is taken as pure textual content.
1665 * <br>The string returned is made of the text content of this node
1826 public Text replaceWholeText(String content) argument
1841 if (content
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java1848 * This attribute returns the text content of this node and its
1855 * element content whitespaces . Similarly, on setting, no parsing is
1856 * performed either, the input string is taken as pure textual content.
1857 * <br>The string returned is made of the text content of this node
1898 * This attribute returns the text content of this node and its
1905 * element content whitespaces . Similarly, on setting, no parsing is
1906 * performed either, the input string is taken as pure textual content.
1907 * <br>The string returned is made of the text content of this node
2067 public Text replaceWholeText(String content) argument
2082 if (content
[all...]

Completed in 1209 milliseconds