HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 301 - 325 of 1290) sorted by null

<<11121314151617181920>>

  /ndk/build/awk/
xml.awk 94 return 1; # now return, XML_TYPE/TAG/ATTR/RPATH are set
163 for (attr in XML_ATTR) {
164 printf " %s='%s'", attr, XML_ATTR[attr];
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_registrar.c 685 struct wps_parse_attr attr; local
692 if (wps_parse_msg(wps_data, &attr) < 0)
694 if (!wps_version_supported(attr.version)) {
696 "version 0x%x", attr.version ? *attr.version : 0);
700 if (attr.config_methods == NULL) {
706 methods = WPA_GET_BE16(attr.config_methods);
712 if (attr.uuid_e == NULL) {
718 wps_registrar_add_pbc_session(reg, addr, attr.uuid_e);
719 if (wps_registrar_pbc_overlap(reg, addr, attr.uuid_e))
2166 struct wps_parse_attr attr; local
2243 struct wps_parse_attr attr; local
2316 struct wps_parse_attr attr; local
2398 struct wps_parse_attr attr; local
2519 struct wps_parse_attr attr; local
2530 struct wps_parse_attr attr; local
2605 struct wps_parse_attr attr; local
    [all...]
  /frameworks/base/include/utils/
threads.h 276 pthread_mutexattr_t attr; local
277 pthread_mutexattr_init(&attr);
278 pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
279 pthread_mutex_init(&mMutex, &attr);
280 pthread_mutexattr_destroy(&attr);
368 pthread_rwlockattr_t attr; local
369 pthread_rwlockattr_init(&attr);
370 pthread_rwlockattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
371 pthread_rwlock_init(&mRWLock, &attr);
372 pthread_rwlockattr_destroy(&attr);
442 pthread_condattr_t attr; local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLInputElement.cpp 571 void HTMLInputElement::parseMappedAttribute(Attribute* attr)
573 if (attr->name() == nameAttr) {
575 m_data.setName(attr->value());
577 HTMLFormControlElementWithState::parseMappedAttribute(attr);
578 } else if (attr->name() == autocompleteAttr) {
579 if (equalIgnoringCase(attr->value(), "off")) {
585 if (attr->isEmpty())
593 } else if (attr->name() == typeAttr) {
595 } else if (attr->name() == valueAttr) {
601 } else if (attr->name() == checkedAttr)
    [all...]
HTMLAreaElement.cpp 55 void HTMLAreaElement::parseMappedAttribute(Attribute* attr)
57 if (attr->name() == shapeAttr) {
58 if (equalIgnoringCase(attr->value(), "default"))
60 else if (equalIgnoringCase(attr->value(), "circle"))
62 else if (equalIgnoringCase(attr->value(), "poly"))
64 else if (equalIgnoringCase(attr->value(), "rect"))
66 } else if (attr->name() == coordsAttr) {
67 m_coords = newCoordsArray(attr->value().string(), m_coordsLen);
68 } else if (attr->name() == altAttr || attr->name() == accesskeyAttr)
    [all...]
HTMLVideoElement.cpp 94 void HTMLVideoElement::parseMappedAttribute(Attribute* attr)
96 const QualifiedName& attrName = attr->name();
115 addCSSLength(attr, CSSPropertyWidth, attr->value());
117 addCSSLength(attr, CSSPropertyHeight, attr->value());
119 HTMLMediaElement::parseMappedAttribute(attr);
HTMLFormControlElement.cpp 93 void HTMLFormControlElement::parseMappedAttribute(Attribute* attr)
95 if (attr->name() == disabledAttr) {
97 m_disabled = !attr->isNull();
103 } else if (attr->name() == readonlyAttr) {
105 m_readOnly = !attr->isNull();
111 } else if (attr->name() == requiredAttr) {
113 m_required = !attr->isNull();
119 HTMLElement::parseMappedAttribute(attr);
468 void HTMLFormControlElement::attributeChanged(Attribute* attr, bool preserveDecls)
470 if (attr->name() == formAttr)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 135 for (int attr = dtm.getFirstAttribute(node);
136 DTM.NULL != attr; attr = dtm.getNextAttribute(attr))
138 SerializerUtils.addAttribute(m_handler, attr);
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptconverter_p.h 135 JSPropertyAttributes attr = 0; local
137 attr |= kJSPropertyAttributeReadOnly;
139 attr |= kJSPropertyAttributeDontDelete;
141 attr |= kJSPropertyAttributeDontEnum;
142 return attr;
  /external/webkit/Source/WebCore/platform/sql/chromium/
SQLiteFileSystemChromiumPosix.cpp 117 int attr = static_cast<int>(PlatformBridge::databaseGetFileAttributes(fileName)); local
118 if (attr < 0) {
125 *res = 1; // if the file doesn't exist, attr < 0
128 *res = (attr & W_OK) && (attr & R_OK);
131 *res = (attr & R_OK);
  /external/webkit/Source/WebCore/svg/
SVGFEGaussianBlurElement.cpp 68 void SVGFEGaussianBlurElement::parseMappedAttribute(Attribute* attr)
70 const String& value = attr->value();
71 if (attr->name() == SVGNames::stdDeviationAttr) {
77 } else if (attr->name() == SVGNames::inAttr)
80 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
SVGFEImageElement.cpp 27 #include "Attr.h"
79 void SVGFEImageElement::parseMappedAttribute(Attribute* attr)
81 const String& value = attr->value();
82 if (attr->name() == SVGNames::preserveAspectRatioAttr)
85 if (SVGURIReference::parseMappedAttribute(attr)) {
89 if (SVGLangSpace::parseMappedAttribute(attr))
91 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
94 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
SVGTests.cpp 70 bool SVGTests::parseMappedAttribute(Attribute* attr)
72 if (attr->name() == SVGNames::requiredFeaturesAttr) {
73 m_requiredFeatures.value.reset(attr->value());
76 if (attr->name() == SVGNames::requiredExtensionsAttr) {
77 m_requiredExtensions.value.reset(attr->value());
80 if (attr->name() == SVGNames::systemLanguageAttr) {
81 m_systemLanguage.value.reset(attr->value());
SVGTextPathElement.cpp 52 void SVGTextPathElement::parseMappedAttribute(Attribute* attr)
54 const String& value = attr->value();
56 if (attr->name() == SVGNames::startOffsetAttr)
58 else if (attr->name() == SVGNames::methodAttr) {
63 } else if (attr->name() == SVGNames::spacingAttr) {
69 if (SVGURIReference::parseMappedAttribute(attr))
71 SVGTextContentElement::parseMappedAttribute(attr);
SVGFECompositeElement.cpp 53 void SVGFECompositeElement::parseMappedAttribute(Attribute* attr)
55 const String& value = attr->value();
56 if (attr->name() == SVGNames::operatorAttr) {
69 } else if (attr->name() == SVGNames::inAttr)
71 else if (attr->name() == SVGNames::in2Attr)
73 else if (attr->name() == SVGNames::k1Attr)
75 else if (attr->name() == SVGNames::k2Attr)
77 else if (attr->name() == SVGNames::k3Attr)
79 else if (attr->name() == SVGNames::k4Attr)
82 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
    [all...]
SVGLinearGradientElement.cpp 63 void SVGLinearGradientElement::parseMappedAttribute(Attribute* attr)
65 if (attr->name() == SVGNames::x1Attr)
66 setX1BaseValue(SVGLength(LengthModeWidth, attr->value()));
67 else if (attr->name() == SVGNames::y1Attr)
68 setY1BaseValue(SVGLength(LengthModeHeight, attr->value()));
69 else if (attr->name() == SVGNames::x2Attr)
70 setX2BaseValue(SVGLength(LengthModeWidth, attr->value()));
71 else if (attr->name() == SVGNames::y2Attr)
72 setY2BaseValue(SVGLength(LengthModeHeight, attr->value()));
74 SVGGradientElement::parseMappedAttribute(attr);
    [all...]
SVGFEConvolveMatrixElement.cpp 25 #include "Attr.h"
85 void SVGFEConvolveMatrixElement::parseMappedAttribute(Attribute* attr)
87 const String& value = attr->value();
88 if (attr->name() == SVGNames::inAttr)
90 else if (attr->name() == SVGNames::orderAttr) {
96 } else if (attr->name() == SVGNames::edgeModeAttr) {
103 } else if (attr->name() == SVGNames::kernelMatrixAttr) {
108 } else if (attr->name() == SVGNames::divisorAttr)
110 else if (attr->name() == SVGNames::biasAttr)
112 else if (attr->name() == SVGNames::targetXAttr
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_sake.c 153 struct eap_sake_parse_attr attr; local
163 if (eap_sake_parse_attributes(payload, payload_len, &attr))
166 if (!attr.perm_id_req && !attr.any_id_req) {
197 struct eap_sake_parse_attr attr; local
213 if (eap_sake_parse_attributes(payload, payload_len, &attr))
216 if (!attr.rand_s) {
222 os_memcpy(data->rand_s, attr.rand_s, EAP_SAKE_RAND_LEN);
236 if (attr.serverid) {
238 attr.serverid, attr.serverid_len)
297 struct eap_sake_parse_attr attr; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_sake.c 154 struct eap_sake_parse_attr attr; local
164 if (eap_sake_parse_attributes(payload, payload_len, &attr))
167 if (!attr.perm_id_req && !attr.any_id_req) {
198 struct eap_sake_parse_attr attr; local
214 if (eap_sake_parse_attributes(payload, payload_len, &attr))
217 if (!attr.rand_s) {
223 os_memcpy(data->rand_s, attr.rand_s, EAP_SAKE_RAND_LEN);
237 if (attr.serverid) {
239 attr.serverid, attr.serverid_len)
298 struct eap_sake_parse_attr attr; local
    [all...]
  /external/clang/include/clang/AST/
Attr.h 1 //===--- Attr.h - Classes for representing expressions ----------*- C++ -*-===//
10 // This file defines the Attr interface and subclasses.
58 /// Attr - This represents one attribute.
59 class Attr {
67 virtual ~Attr();
88 Attr(attr::Kind AK, SourceRange R)
93 attr::Kind getKind() const {
94 return static_cast<attr::Kind>(AttrKind);
104 virtual Attr* clone(ASTContext &C) const = 0
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 53 import org.w3c.dom.Attr;
223 String attr = getDescAttribute(); local
224 if (attr != null) {
227 if (attr.contains(name)) {
228 return attr;
230 return String.format("%1$s (%2$s)", attr, name);
245 String attr = _Element_getAttributeNS(elem, local
248 if (attr == null || attr.length() == 0) {
249 attr = _Element_getAttributeNS(elem
308 String attr = getDescAttribute(); local
1053 Attr attr = doc.createAttributeNS(XmlnsAttributeDescriptor.XMLNS_URI, local
1550 Attr attr; local
1751 Node attr = attrs.item(n); local
1782 Attr attr = doc.createAttributeNS(XMLNS_URI, prefix); local
    [all...]
  /external/libxml2/
valid.c 509 xmlGenericError(xmlGenericErrorContext, "?attr? ");
5994 xmlAttributePtr attr; local
6420 xmlAttrPtr attr; local
6485 xmlAttrPtr attr; local
    [all...]
  /external/elfutils/libdw/
dwarf_getloclist.c 52 dwarf_getloclist (attr, llbuf, listlen)
53 Dwarf_Attribute *attr;
58 if (attr->code != DW_AT_location
59 && attr->code != DW_AT_data_member_location
60 && attr->code != DW_AT_vtable_elem_location
61 && attr->code != DW_AT_string_length
62 && attr->code != DW_AT_use_location
63 && attr->code != DW_AT_return_addr)
69 struct Dwarf_CU *cu = attr->cu;
74 if (dwarf_formblock (attr, &block) != 0
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLCardElement.cpp 217 void WMLCardElement::parseMappedAttribute(Attribute* attr)
221 if (attr->name() == onenterforwardAttr)
223 else if (attr->name() == onenterbackwardAttr)
225 else if (attr->name() == ontimerAttr)
227 else if (attr->name() == newcontextAttr)
228 m_isNewContext = (attr->value() == "true");
229 else if (attr->name() == orderedAttr)
230 m_isOrdered = (attr->value() == "true");
232 WMLElement::parseMappedAttribute(attr);
240 RefPtr<WMLIntrinsicEvent> event = WMLIntrinsicEvent::create(document(), attr->value())
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_parse.c 330 struct wps_parse_attr attr; local
334 if (wps_parse_msg(buf, &attr))
336 if (attr.dev_name && attr.dev_name_len < sizeof(msg->device_name) &&
338 os_memcpy(msg->device_name, attr.dev_name, attr.dev_name_len);
339 if (attr.config_methods) {
341 WPA_GET_BE16(attr.config_methods);
345 if (attr.dev_password_id) {
346 msg->dev_password_id = WPA_GET_BE16(attr.dev_password_id)
    [all...]

Completed in 1951 milliseconds

<<11121314151617181920>>