HomeSort by relevance Sort by last modified time
    Searched full:attributes (Results 926 - 950 of 8380) sorted by null

<<31323334353637383940>>

  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementDef.java 51 * @param attributes An array of allowed attribute defs, or null.
56 XSLTElementDef[] elements, XSLTAttributeDef[] attributes,
59 build(namespace, name, nameAlias, elements, attributes, contentHandler,
79 * @param attributes An array of allowed attribute defs, or null.
85 XSLTElementDef[] elements, XSLTAttributeDef[] attributes,
89 build(namespace, name, nameAlias, elements, attributes, contentHandler,
110 * @param attributes An array of allowed attribute defs, or null.
117 XSLTElementDef[] elements, XSLTAttributeDef[] attributes,
122 elements, attributes,
134 * @param attributes An array of allowed attribute defs, or null
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
ExpatSaxParserTest.java 34 import org.xml.sax.Attributes;
65 String qName, Attributes attributes)
141 Attributes attributes) throws SAXException {
146 // Validate attributes.
147 assertEquals(1, attributes.getLength());
148 assertEquals("", attributes.getURI(0));
149 assertEquals("dad", attributes.getLocalName(0));
150 assertEquals("bob", attributes.getValue(0))
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlDocument.java 99 public static Tag createTag(HTML.Element element, List<TagAttribute> attributes) {
100 return createTag(element, attributes, null, null);
108 List<TagAttribute> attributes, String originalHtmlBeforeAttributes,
110 return new Tag(element, attributes, false, originalHtmlBeforeAttributes,
119 List<TagAttribute> attributes) {
120 return createSelfTerminatingTag(element, attributes, null, null);
128 List<TagAttribute> attributes, String originalHtmlBeforeAttributes,
130 return new Tag(element, attributes, true, originalHtmlBeforeAttributes,
507 private List<TagAttribute> attributes; field in class:HtmlDocument.Tag
517 * @param attributes list of TagAttribute objects, may be nul
1245 List<TagAttribute> attributes = tag.getAttributes(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlDocument.java 100 public static Tag createTag(HTML.Element element, List<TagAttribute> attributes) {
101 return createTag(element, attributes, null, null);
109 List<TagAttribute> attributes, String originalHtmlBeforeAttributes,
111 return new Tag(element, attributes, false, originalHtmlBeforeAttributes,
120 List<TagAttribute> attributes) {
121 return createSelfTerminatingTag(element, attributes, null, null);
129 List<TagAttribute> attributes, String originalHtmlBeforeAttributes,
131 return new Tag(element, attributes, true, originalHtmlBeforeAttributes,
508 private List<TagAttribute> attributes; field in class:HtmlDocument.Tag
518 * @param attributes list of TagAttribute objects, may be nul
1246 List<TagAttribute> attributes = tag.getAttributes(); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
webrequest_rules_registry_unittest.cc 192 // Create a condition with the attributes specified. An example value of
193 // |attributes| is: "\"resourceType\": [\"stylesheet\"], \n".
194 linked_ptr<base::Value> CreateCondition(const std::string& attributes) {
198 json_description += attributes;
206 // |attributes| specified (one entry one condition). An example value of a
207 // string from |attributes| is: "\"resourceType\": [\"stylesheet\"], \n".
210 const std::vector<const std::string*>& attributes) {
219 attributes.begin();
220 it != attributes.end(); ++it)
570 std::vector<const std::string*> attributes; local
617 std::vector<const std::string*> attributes; local
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 112 throw new XMPException("Invalid attributes of rdf:RDF element", BADRDF);
148 * attributes == set ( ( idAttr | nodeIdAttr | aboutAttr )?, propertyAttr* ) )
190 * attributes == set ( ( idAttr | nodeIdAttr | aboutAttr )?, propertyAttr* ) )
195 * anything other than an RDF term. The rdf:ID and rdf:nodeID attributes are simply ignored,
196 * as are rdf:about attributes on inner nodes.
207 // Used to detect attributes that are mutually exclusive.
231 throw new XMPException("Mutally exclusive about, ID, nodeID attributes",
310 * start-element ( URI == propertyElementURIs, attributes == set ( idAttr? ) )
316 * URI == propertyElementURIs, attributes == set ( idAttr?, datatypeAttr?) )
322 * URI == propertyElementURIs, attributes == set ( idAttr?, parseLiteral )
371 NamedNodeMap attributes = xmlNode.getAttributes(); local
    [all...]
  /dalvik/dx/tests/002-minimal-valid/
small-class.txt 37 # attributes[0]
  /dalvik/dx/tests/017-method-attrib-Code/
small-class.txt 33 # attributes[0]
  /dalvik/dx/tests/018-method-attrib-Exceptions/
small-class.txt 35 # attributes[0]
  /developers/build/prebuilts/gradle/ActionBarCompat-Styled/ActionBarCompat-StyledSample/src/main/res/values/
styles.xml 29 necessary attributes are available in the android: namespace on older versions of Android.
30 This means that for certain attributes we must set the attributes provided in
52 For the following styles, the attributes are available in the android namespace which
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-Styled/ActionBarCompat-StyledSample/src/main/res/values/
styles.xml 29 necessary attributes are available in the android: namespace on older versions of Android.
30 This means that for certain attributes we must set the attributes provided in
52 For the following styles, the attributes are available in the android namespace which
  /development/samples/CubeLiveWallpaper/res/xml/
cube1.xml 20 <!-- The attributes in this XML file provide configuration information -->
cube2.xml 20 <!-- The attributes in this XML file provide configuration information -->
  /development/samples/Support4Demos/res/values/
attrs.xml 18 <!-- These are the attributes that we want to retrieve for
  /development/samples/VoiceRecognitionService/res/xml/
recognizer.xml 20 <!-- The attributes in this XML file provide configuration information
  /development/samples/XmlAdapters/res/values/
attrs.xml 31 <!-- Attributes used in bind items for XML cursor adapters. -->
53 <!-- Attributes used in select items for XML cursor adapters.-->
59 <!-- Attributes used to map values to new values in XML cursor adapters' bind items. -->
67 <!-- Attributes used to map values to new values in XML cursor adapters' bind items. -->
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/pkcs10/
CertificationRequestInfoTest.java 50 List attributes = new ArrayList(); local
52 attributes.add(new AttributeTypeAndValue("1.2.840.113549.1.9.1",
56 version, subject, spki, attributes);
64 assertEquals(attributes, certReqInfo.getAttributes());
  /external/apache-http/src/org/apache/http/cookie/
ClientCookie.java 37 * original cookie attributes exactly as they were specified by the
40 * <tt>Cookie</tt> header should include certain attributes only if
49 // RFC2109 attributes
58 // RFC2965 attributes
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedDataGenerator.java 158 * add a signer - no attributes other than the default ones will be
176 * add a signer, specifying the digest encryption algorithm to use - no attributes other than the default ones will be
197 * add a signer - no attributes other than the default ones will be
211 * add a signer, specifying the digest encryption algorithm to use - no attributes other than the default ones will be
227 * add a signer with extra signed/unsigned attributes.
232 * @param signedAttr table of attributes to be included in signature
233 * @param unsignedAttr table of attributes to be included as unsigned
248 * add a signer, specifying the digest encryption algorithm, with extra signed/unsigned attributes.
254 * @param signedAttr table of attributes to be included in signature
255 * @param unsignedAttr table of attributes to be included as unsigne
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
SignerInfo.java 73 Attributes authenticatedAttributes,
76 Attributes unauthenticatedAttributes)
175 * authenticatedAttributes [0] IMPLICIT Attributes OPTIONAL,
178 * unauthenticatedAttributes [1] IMPLICIT Attributes OPTIONAL
  /external/chromium/chrome/browser/search_engines/
template_url_parser.cc 40 // Various XML attributes used.
295 const xmlChar** attributes = atts; local
303 while (*attributes) {
304 std::string name(XMLCharToString(*attributes));
305 const xmlChar* value = attributes[1];
321 attributes += 2;
340 const xmlChar** attributes = atts; local
344 while (*attributes) {
345 std::string name(XMLCharToString(*attributes));
346 const xmlChar* value = attributes[1]
366 const xmlChar** attributes = atts; local
    [all...]
  /external/chromium_org/base/win/
startup_information.h 16 // Manages the lifetime of additional attributes in STARTUPINFOEX.
  /external/chromium_org/build/android/gyp/
generate_v14_compatible_resources.py 9 There are two reasons that we cannot just use API 17 attributes,
36 # Almost all the attributes that has "Start" or "End" in
117 assert_not_deprecated: Whether deprecated attributes (e.g. paddingLeft) will
125 # Iterate all the elements' attributes to find attributes to convert.
127 for name, value in list(element.attributes.items()):
128 # Convert any API 17 Start/End attributes to Left/Right attributes.
130 # Note: gravity attributes are not necessary to convert because
135 del element.attributes[name
    [all...]
  /external/chromium_org/chromeos/dbus/
nfc_device_client.h 73 // using the parameters in |attributes|. |attributes| is a dictionary,
78 // NfcRecordClient::Properties). |attributes| should at least contain a
94 const base::DictionaryValue& attributes,
nfc_tag_client.h 84 // using the parameters in |attributes|. |attributes| is a dictionary,
89 // NfcRecordClient::Properties). |attributes| should at least contain a
105 const base::DictionaryValue& attributes,

Completed in 3354 milliseconds

<<31323334353637383940>>