HomeSort by relevance Sort by last modified time
    Searched refs:attributes (Results 26 - 50 of 679) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapremovenameditemns04.java 36 * Attempt to remove the xmlns and dmstc attributes of the first element node with the localName
37 * employee. Verify if the 2 attributes were successfully removed.
71 NamedNodeMap attributes; local
79 attributes = element.getAttributes();
80 attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
81 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
83 attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
84 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
namednodemapsetnameditemns06.java 34 * Retreieve the first element whose localName is address and its attributes into a named node map.
36 * Retreieve the second element whose localName is address and its attributes into a named node map.
72 NamedNodeMap attributes; local
80 attributes = element.getAttributes();
81 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic");
83 attributes = element.getAttributes();
88 newNode = attributes.setNamedItemNS(attr);
namednodemapsetnameditemns07.java 38 * Retreieve the attributes of first element whose localName is address into a named node map.
40 * from the NamedNodeMap. Retreieve the attributes of second element whose localName is address
78 NamedNodeMap attributes; local
86 attributes = element.getAttributes();
87 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic");
89 attributes = element.getAttributes();
94 newNode = attributes.setNamedItemNS(attr);
namednodemapsetnameditemns08.java 36 * Retreieve the first element whose localName is address and its attributes into a named node map.
38 * localName is address and its attributes into a named node map. Invoke setNamedItemNS on the
74 NamedNodeMap attributes; local
82 attributes = element.getAttributes();
83 attr = (Attr) attributes.getNamedItemNS("http://www.usa.com", "domestic");
85 attributes = element.getAttributes();
90 newNode = attributes.setNamedItemNS(attr);
  /system/media/opensles/libopensles/
locks.c 98 * attributes
102 void object_unlock_exclusive_attributes_(IObject *this, unsigned attributes,
105 void object_unlock_exclusive_attributes(IObject *this, unsigned attributes)
123 if (attributes & ATTR_GAIN) {
126 attributes &= ~ATTR_GAIN; // no need to process asynchronously also
147 if (attributes & ATTR_POSITION) {
152 attributes &= ~ATTR_POSITION; // no need to process asynchronously also
167 if (attributes & ATTR_TRANSPORT) {
170 attributes &= ~ATTR_TRANSPORT; // no need to process asynchronously also
181 attributes &= ~ATTR_TRANSPORT; // no need to process asynchronously als
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorKey.java 29 import org.xml.sax.Attributes;
60 * @param attributes The attributes attached to the element. If
61 * there are no attributes, it shall be an empty
62 * Attributes object.
65 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
73 setPropertiesFromAttributes(handler, rawName, attributes, kd);
83 * @param attributes The list of attributes
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/
AndroidManifestParser.java 33 import org.xml.sax.Attributes;
125 * java.lang.String, org.xml.sax.Attributes)
128 public void startElement(String uri, String localName, String name, Attributes attributes)
142 mManifestData.mPackage = getAttributeValue(attributes,
147 String tmp = getAttributeValue(attributes,
161 value = getAttributeValue(attributes,
168 value = getAttributeValue(attributes,
177 mManifestData.setMinSdkVersionString(getAttributeValue(attributes,
180 mManifestData.setTargetSdkVersionString(getAttributeValue(attributes,
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapSetNamedItemNS.java 47 * http://www.nist.gov", and put its attributes into a named node map. Create a
97 NamedNodeMap attributes; local
108 attributes = element.getAttributes();
111 attribute = (Attr) attributes.getNamedItemNS(
124 NamedNodeMap attributes; local
134 attributes = element.getAttributes();
135 attributes.setNamedItemNS(attribute1);
136 attribute = (Attr) attributes.getNamedItemNS(
151 NamedNodeMap attributes; local
164 attributes = element.getAttributes()
194 NamedNodeMap attributes; local
266 NamedNodeMap attributes; local
298 NamedNodeMap attributes; local
330 NamedNodeMap attributes; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/parser/
SmilContentHandler.java 23 import org.xml.sax.Attributes;
57 public void startElement(String uri, String localName, String qName, Attributes attributes) {
62 if (attributes != null) {
63 for (int i = 0; i < attributes.getLength(); i++) {
66 " lname = " + attributes.getLocalName(i) +
67 " value = " + attributes.getValue(i));
69 element.setAttribute(attributes.getLocalName(i),
70 attributes.getValue(i));
  /external/proguard/src/proguard/optimize/peephole/
RetargetedInnerClassAttributeRemover.java 32 * This ClassVisitor removes InnerClasses and EnclosingMethod attributes in
53 Attribute[] attributes = programClass.attributes; local
57 // Copy over all non-retargeted attributes.
60 Attribute attribute = attributes[index];
68 attributes[newAtributesCount++] = attribute;
75 attributes[index] = null;
  /external/webkit/WebCore/html/canvas/
WebGLContextAttributes.cpp 40 PassRefPtr<WebGLContextAttributes> WebGLContextAttributes::create(GraphicsContext3D::Attributes attributes)
42 return adoptRef(new WebGLContextAttributes(attributes));
50 WebGLContextAttributes::WebGLContextAttributes(GraphicsContext3D::Attributes attributes)
52 , m_attrs(attributes)
110 GraphicsContext3D::Attributes WebGLContextAttributes::attributes() const function in class:WebCore::WebGLContextAttributes
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
namednodemapremovenameditem.java 35 * object of the attributes of the last child. Once the
77 NamedNodeMap attributes; local
84 attributes = testAddress.getAttributes();
85 assertNotNull("attributesNotNull", attributes);
86 removedNode = attributes.removeNamedItem("street");
87 streetAttr = (Attr) attributes.getNamedItem("street");
namednodemapremovenameditemgetvalue.java 36 * object of the attributes of the last child. Once the
41 * immediately be the attributes value.
79 NamedNodeMap attributes; local
86 attributes = testEmployee.getAttributes();
87 assertNotNull("attributesNotNull", attributes);
88 removedNode = attributes.removeNamedItem("street");
89 streetAttr = (Attr) attributes.getNamedItem("street");
attreffectivevalue.java 31 * If an Attr is explicitly assigned any value, then that value is the attributes effective value.
65 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("domestic");
attrentityreplacement.java 70 NamedNodeMap attributes; local
76 attributes = testNode.getAttributes();
77 streetAttr = (Attr) attributes.getNamedItem("street");
attrname.java 66 NamedNodeMap attributes; local
72 attributes = testNode.getAttributes();
73 streetAttr = (Attr) attributes.getNamedItem("street");
attrnextsiblingnull.java 65 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("domestic");
attrparentnodenull.java 65 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("domestic");
attrprevioussiblingnull.java 65 NamedNodeMap attributes; local
71 attributes = testNode.getAttributes();
72 domesticAttr = (Attr) attributes.getNamedItem("domestic");
  /external/webkit/WebCore/svg/
SVGPatternElement.cpp 191 PatternAttributes attributes = collectPatternProperties(); local
194 if (!attributes.patternContentElement() || !renderer() || !renderer()->style())
201 if (attributes.boundingBoxMode())
202 patternBoundaries = FloatRect(attributes.x().valueAsPercentage() * targetRect.width(),
203 attributes.y().valueAsPercentage() * targetRect.height(),
204 attributes.width().valueAsPercentage() * targetRect.width(),
205 attributes.height().valueAsPercentage() * targetRect.height());
207 patternBoundaries = FloatRect(attributes.x().value(this),
208 attributes.y().value(this),
209 attributes.width().value(this)
307 PatternAttributes attributes; local
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageXmlParser.java 22 import org.xml.sax.Attributes;
61 public void startElement(String uri, String localName, String name, Attributes attributes)
65 final String entryUriValue = attributes.getValue("appPackageName");
66 final String testPackageNameSpace = attributes.getValue("appNameSpace");
67 final String packageName = attributes.getValue("name");
68 final String runnerName = attributes.getValue("runner");
69 final String hostSideTest = attributes.getValue("hostSideOnly");
70 final String jarPath = attributes.getValue("jarPath");
71 final String signatureCheck = attributes.getValue("signatureCheck")
    [all...]
  /external/openssl/crypto/asn1/
x_req.c 66 * encode the attributes field if it is empty. This is in
68 * this by making the attributes field OPTIONAL then using
75 * the information is now contained in the attributes field:
78 * 3. If it is not empty then some attributes are present.
88 rinf->attributes = sk_X509_ATTRIBUTE_new_null();
89 if(!rinf->attributes) return 0;
101 ASN1_IMP_SET_OF_OPT(X509_REQ_INFO, attributes, X509_ATTRIBUTE, 0)
  /external/proguard/src/proguard/classfile/
ProgramField.java 58 Attribute[] attributes,
61 super(u2accessFlags, u2nameIndex, u2descriptorIndex, u2attributesCount, attributes);
79 attributes[index].accept(programClass, this, attributeVisitor);
ProgramMethod.java 58 Attribute[] attributes,
61 super(u2accessFlags, u2nameIndex, u2descriptorIndex, u2attributesCount, attributes);
79 attributes[index].accept(programClass, this, attributeVisitor);
  /external/webkit/WebKit/qt/Api/
qwebsettings.cpp 70 QHash<int, bool> attributes; member in class:QWebSettingsPrivate
148 bool value = attributes.value(QWebSettings::AutoLoadImages,
149 global->attributes.value(QWebSettings::AutoLoadImages));
152 value = attributes.value(QWebSettings::JavascriptEnabled,
153 global->attributes.value(QWebSettings::JavascriptEnabled));
156 value = attributes.value(QWebSettings::AcceleratedCompositingEnabled,
157 global->attributes.value(QWebSettings::AcceleratedCompositingEnabled));
161 value = attributes.value(QWebSettings::JavascriptCanOpenWindows,
162 global->attributes.value(QWebSettings::JavascriptCanOpenWindows));
165 value = attributes.value(QWebSettings::JavaEnabled
    [all...]

Completed in 1107 milliseconds

12 3 4 5 6 7 8 91011>>