HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 276 - 300 of 828) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapSetNamedItemNS.java 31 import org.w3c.dom.Attr;
48 * new attribute node and add it to this map. Verify if the attr node was
99 Attr attribute;
101 Attr newAttr1;
111 attribute = (Attr) attributes.getNamedItemNS(
126 Attr attribute;
127 Attr attribute1;
136 attribute = (Attr) attributes.getNamedItemNS(
157 Attr attr; local
269 Attr attr; local
301 Attr attr; local
333 Attr attr; local
    [all...]
NodeGetLocalName.java 33 import org.w3c.dom.Attr;
85 Attr attr; local
86 Attr qattr;
94 attr = doc.createAttributeNS("http://www.w3.org/DOM/Test/attr", "attr");
95 qattr = doc.createAttributeNS("http://www.w3.org/DOM/Test/attr", "qual:qattr");
98 localAttrName = attr.getLocalName();
102 assertEquals("nodegetlocalname03_localAttrName", "attr", localAttrName)
    [all...]
NodeGetNamespaceURI.java 33 import org.w3c.dom.Attr;
87 Attr attr; local
88 Attr attrNS;
98 attr = doc.createAttributeNS(nullNS, "attr");
99 attrNS = doc.createAttributeNS("http://www.w3.org/DOM/Test/attr", "qual:qattr");
103 attrNSURINull = attr.getNamespaceURI();
106 assertEquals("nodegetnamespaceuri03_attrNSURI", "http://www.w3.org/DOM/Test/attr", attrNSURI);
NodeGetPrefix.java 33 import org.w3c.dom.Attr;
86 Attr attr; local
87 Attr qattr;
95 attr = doc.createAttributeNS("http://www.w3.org/DOM/Test/attr", "attr");
96 qattr = doc.createAttributeNS("http://www.w3.org/DOM/Test/attr", "qual:qattr");
99 attrNoPrefix = attr.getPrefix();
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
XmlParserUtils.java 122 Node attr = archiveNode.getAttributes().getNamedItem(attrName); local
123 if (attr != null) {
124 String found = attr.getNodeValue();
  /system/core/init/
ueventd.c 79 char *attr = 0; local
98 attr = args[1];
145 add_dev_perms(name, attr, perm, uid, gid, prefix);
  /external/libxml2/
xmlschemas.c 519 xmlSchemaAttributeUsePtr next; /* The next attr. use. */
521 * The attr. decl. OR a QName-ref. to an attr. decl. OR
1652 xmlSchemaAttributePtr attr; local
5889 xmlAttrPtr attr; local
5975 xmlAttrPtr attr; local
5999 xmlAttrPtr attr; local
6064 xmlAttrPtr attr; local
6362 xmlAttrPtr attr; local
6496 xmlAttrPtr attr; local
6713 xmlAttrPtr attr; local
6878 xmlAttrPtr attr; local
7016 xmlAttrPtr attr; local
7090 xmlAttrPtr attr; local
7480 xmlAttrPtr attr; local
7632 xmlAttrPtr attr; local
7764 xmlAttrPtr attr; local
8195 xmlAttrPtr attr; local
8293 xmlAttrPtr attr; local
8442 xmlAttrPtr attr, nameAttr; local
8838 xmlAttrPtr attr; local
9007 xmlAttrPtr attr; local
9119 xmlAttrPtr attr; local
9333 xmlAttrPtr attr; local
9435 xmlAttrPtr attr; local
9614 xmlAttrPtr attr; local
10681 xmlAttrPtr attr; local
10828 xmlAttrPtr attr; local
11186 xmlAttrPtr attr; local
11450 xmlAttrPtr attr; local
11754 xmlAttrPtr attr; local
11890 xmlAttrPtr attr; local
11980 xmlAttrPtr attr; local
12075 xmlAttrPtr attr; local
23864 xmlSchemaAttrInfoPtr attr; local
25058 xmlSchemaAttrInfoPtr attr; local
27534 xmlSchemaAttrInfoPtr attr; local
27709 xmlAttrPtr attr; local
    [all...]
  /bionic/libc/stdio/
flockfile.c 125 pthread_mutexattr_t attr; local
136 pthread_mutexattr_init(&attr);
137 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
138 pthread_mutex_init( &lock->mutex, &attr );
  /external/webkit/WebCore/svg/
SVGTextElement.cpp 48 void SVGTextElement::parseMappedAttribute(MappedAttribute* attr)
50 if (SVGTransformable::isKnownAttribute(attr->name())) {
52 if (!SVGTransformable::parseTransformAttribute(localTransforms, attr->value())) {
57 SVGTextPositioningElement::parseMappedAttribute(attr);
SVGStyledElement.cpp 26 #include "Attr.h"
161 void SVGStyledElement::parseMappedAttribute(MappedAttribute* attr)
163 const QualifiedName& attrName = attr->name();
168 addCSSProperty(attr, propId, attr->value());
178 setClassNameBaseValue(attr->value());
181 SVGElement::parseMappedAttribute(attr);
288 Attribute* attr = mappedAttributes()->getAttributeItem(attributeName); local
289 if (!attr || !attr->isMappedAttribute() || !attr->style()
    [all...]
SVGAnimateTransformElement.cpp 66 void SVGAnimateTransformElement::parseMappedAttribute(MappedAttribute* attr)
68 if (attr->name() == SVGNames::typeAttr) {
69 if (attr->value() == "translate")
71 else if (attr->value() == "scale")
73 else if (attr->value() == "rotate")
75 else if (attr->value() == "skewX")
77 else if (attr->value() == "skewY")
80 SVGAnimationElement::parseMappedAttribute(attr);
  /external/webkit/WebCore/wml/
WMLTimerElement.cpp 45 void WMLTimerElement::parseMappedAttribute(MappedAttribute* attr)
47 if (attr->name() == HTMLNames::nameAttr)
48 m_name = parseValueForbiddingVariableReferences(attr->value());
50 WMLElement::parseMappedAttribute(attr);
WMLInputElement.cpp 198 void WMLInputElement::parseMappedAttribute(MappedAttribute* attr)
200 if (attr->name() == HTMLNames::nameAttr)
201 m_data.setName(parseValueForbiddingVariableReferences(attr->value()));
202 else if (attr->name() == HTMLNames::typeAttr) {
203 String type = parseValueForbiddingVariableReferences(attr->value());
205 } else if (attr->name() == HTMLNames::valueAttr) {
210 } else if (attr->name() == HTMLNames::maxlengthAttr)
211 InputElement::parseMaxLengthAttribute(m_data, this, this, attr);
212 else if (attr->name() == HTMLNames::sizeAttr)
213 InputElement::parseSizeAttribute(m_data, this, attr);
    [all...]
WMLGoElement.cpp 64 void WMLGoElement::parseMappedAttribute(MappedAttribute* attr)
66 if (attr->name() == HTMLNames::methodAttr)
67 m_formDataBuilder.parseMethodType(attr->value());
68 else if (attr->name() == HTMLNames::enctypeAttr)
69 m_formDataBuilder.parseEncodingType(parseValueSubstitutingVariableReferences(attr->value()));
70 else if (attr->name() == HTMLNames::accept_charsetAttr)
71 m_formDataBuilder.setAcceptCharset(parseValueForbiddingVariableReferences(attr->value()));
73 WMLTaskElement::parseMappedAttribute(attr);
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_dev_attr.h 26 struct wps_parse_attr *attr);
  /frameworks/base/core/java/android/inputmethodservice/
ExtractButton.java 32 super(context, attrs, com.android.internal.R.attr.buttonStyle);
  /frameworks/base/core/java/android/preference/
PreferenceCategory.java 36 this(context, attrs, com.android.internal.R.attr.preferenceCategoryStyle);
  /frameworks/base/core/java/android/widget/
Button.java 52 * using the {@link android.R.attr#onClick android:onClick} attribute. For example:</p>
82 * it to your Button with the {@link android.R.attr#background android:background}
104 this(context, attrs, com.android.internal.R.attr.buttonStyle);
  /packages/apps/Contacts/src/com/android/contacts/ui/widget/
CheckableImageView.java 33 android.R.attr.state_checked
  /packages/apps/Music/src/com/android/music/
CheckableRelativeLayout.java 33 android.R.attr.state_checked
  /system/core/toolbox/
setconsole.c 128 pthread_attr_t attr; local
130 pthread_attr_init(&attr);
131 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
132 pthread_create(&thread, &attr, activate_thread, (void*)fd);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sim.c 392 struct eap_sim_attrs *attr)
400 if (attr->identity) {
402 sm->identity = os_malloc(attr->identity_len);
404 os_memcpy(sm->identity, attr->identity,
405 attr->identity_len);
406 sm->identity_len = attr->identity_len;
453 if (attr->nonce_mt == NULL || attr->selected_version < 0) {
460 if (!eap_sim_supported_ver(data, attr->selected_version)) {
462 "version %d", attr->selected_version)
683 struct eap_sim_attrs attr; local
    [all...]
  /external/webkit/WebCore/html/
HTMLFormElement.cpp 439 void HTMLFormElement::parseMappedAttribute(MappedAttribute* attr)
441 if (attr->name() == actionAttr)
442 m_url = deprecatedParseURL(attr->value());
443 else if (attr->name() == targetAttr)
444 m_target = attr->value();
445 else if (attr->name() == methodAttr)
446 m_formDataBuilder.parseMethodType(attr->value());
447 else if (attr->name() == enctypeAttr)
448 m_formDataBuilder.parseEncodingType(attr->value());
449 else if (attr->name() == accept_charsetAttr
    [all...]
  /external/bison/lib/
bitset.c 100 specified by ATTR. For variable size bitsets, N_BITS is only a
103 bitset_type_choose (bitset_bindex n_bits ATTRIBUTE_UNUSED, unsigned int attr)
106 if (attr & BITSET_FIXED && attr & BITSET_VARIABLE)
108 if (attr & BITSET_SPARSE && attr & BITSET_DENSE)
116 if (!attr)
119 if (attr & BITSET_SPARSE)
122 if (attr & BITSET_FIXED)
125 if (attr & BITSET_GREEDY
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
FieldSourcer.java 49 public void visitAttribute(Attribute attr) {
50 mOutput.write("%s /* non-standard attribute */ ", attr.type);

Completed in 800 milliseconds

<<11121314151617181920>>