HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 176 - 200 of 1277) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebCore/html/
HTMLObjectElement.cpp 80 void HTMLObjectElement::parseMappedAttribute(Attribute* attr)
82 if (attr->name() == typeAttr) {
83 m_serviceType = attr->value().lower();
91 } else if (attr->name() == dataAttr) {
92 m_url = stripLeadingAndTrailingHTMLSpaces(attr->value());
101 } else if (attr->name() == classidAttr) {
102 m_classId = attr->value();
105 } else if (attr->name() == onloadAttr)
106 setAttributeEventListener(eventNames().loadEvent, createAttributeEventListener(this, attr));
107 else if (attr->name() == onbeforeloadAttr
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGClipPathElement.cpp 52 void SVGClipPathElement::parseMappedAttribute(Attribute* attr)
54 if (attr->name() == SVGNames::clipPathUnitsAttr) {
55 if (attr->value() == "userSpaceOnUse")
57 else if (attr->value() == "objectBoundingBox")
60 if (SVGTests::parseMappedAttribute(attr))
62 if (SVGLangSpace::parseMappedAttribute(attr))
64 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
66 SVGStyledTransformableElement::parseMappedAttribute(attr);
SVGPatternElement.cpp 74 void SVGPatternElement::parseMappedAttribute(Attribute* attr)
76 if (attr->name() == SVGNames::patternUnitsAttr) {
77 if (attr->value() == "userSpaceOnUse")
79 else if (attr->value() == "objectBoundingBox")
81 } else if (attr->name() == SVGNames::patternContentUnitsAttr) {
82 if (attr->value() == "userSpaceOnUse")
84 else if (attr->value() == "objectBoundingBox")
86 } else if (attr->name() == SVGNames::patternTransformAttr) {
88 if (!SVGTransformable::parseTransformAttribute(newList, attr->value()))
93 } else if (attr->name() == SVGNames::xAttr
    [all...]
SVGCircleElement.cpp 54 void SVGCircleElement::parseMappedAttribute(Attribute* attr)
56 if (attr->name() == SVGNames::cxAttr)
57 setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
58 else if (attr->name() == SVGNames::cyAttr)
59 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
60 else if (attr->name() == SVGNames::rAttr) {
61 setRBaseValue(SVGLength(LengthModeOther, attr->value()));
65 if (SVGTests::parseMappedAttribute(attr))
67 if (SVGLangSpace::parseMappedAttribute(attr))
69 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
    [all...]
SVGRectElement.cpp 59 void SVGRectElement::parseMappedAttribute(Attribute* attr)
61 if (attr->name() == SVGNames::xAttr)
62 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
63 else if (attr->name() == SVGNames::yAttr)
64 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
65 else if (attr->name() == SVGNames::rxAttr) {
66 setRxBaseValue(SVGLength(LengthModeWidth, attr->value()));
69 } else if (attr->name() == SVGNames::ryAttr) {
70 setRyBaseValue(SVGLength(LengthModeHeight, attr->value()));
73 } else if (attr->name() == SVGNames::widthAttr)
    [all...]
SVGFEMergeNodeElement.cpp 47 void SVGFEMergeNodeElement::parseMappedAttribute(Attribute* attr)
49 const String& value = attr->value();
50 if (attr->name() == SVGNames::inAttr)
53 SVGElement::parseMappedAttribute(attr);
  /external/webkit/Source/WebCore/wml/
WMLDoElement.cpp 104 void WMLDoElement::parseMappedAttribute(Attribute* attr)
106 if (attr->name() == HTMLNames::typeAttr)
107 m_type = parseValueForbiddingVariableReferences(attr->value());
108 else if (attr->name() == HTMLNames::nameAttr)
109 m_name = parseValueForbiddingVariableReferences(attr->value());
110 else if (attr->name() == optionalAttr)
111 m_isOptional = (attr->value() == "true");
113 WMLElement::parseMappedAttribute(attr);
WMLImageLoader.cpp 50 String WMLImageLoader::sourceURI(const AtomicString& attr) const
52 return KURL(element()->baseURI(), stripLeadingAndTrailingHTMLSpaces(attr));
WMLOptionElement.cpp 83 void WMLOptionElement::parseMappedAttribute(Attribute* attr)
85 if (attr->name() == HTMLNames::valueAttr)
86 m_data.setValue(parseValueSubstitutingVariableReferences(attr->value()));
87 else if (attr->name() == HTMLNames::titleAttr)
88 m_data.setLabel(parseValueSubstitutingVariableReferences(attr->value()));
89 else if (attr->name() == onpickAttr) {
91 RefPtr<WMLIntrinsicEvent> event = WMLIntrinsicEvent::create(document(), attr->value());
96 WMLFormControlElement::parseMappedAttribute(attr);
  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 39 return getAttribute(theme, android.R.attr.selectableItemBackground);
46 return getAttribute(theme, android.R.attr.activatedBackgroundIndicator);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_aka.c 263 struct eap_sim_attrs *attr)
265 if (attr->next_pseudonym) {
267 data->pseudonym = os_malloc(attr->next_pseudonym_len);
273 os_memcpy(data->pseudonym, attr->next_pseudonym,
274 attr->next_pseudonym_len);
275 data->pseudonym_len = attr->next_pseudonym_len;
282 if (attr->next_reauth_id) {
284 data->reauth_id = os_malloc(attr->next_reauth_id_len);
290 os_memcpy(data->reauth_id, attr->next_reauth_id,
291 attr->next_reauth_id_len)
1149 struct eap_sim_attrs attr; local
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_aka.c 261 struct eap_sim_attrs *attr)
263 if (attr->next_pseudonym) {
265 data->pseudonym = os_malloc(attr->next_pseudonym_len);
271 os_memcpy(data->pseudonym, attr->next_pseudonym,
272 attr->next_pseudonym_len);
273 data->pseudonym_len = attr->next_pseudonym_len;
280 if (attr->next_reauth_id) {
282 data->reauth_id = os_malloc(attr->next_reauth_id_len);
288 os_memcpy(data->reauth_id, attr->next_reauth_id,
289 attr->next_reauth_id_len)
1147 struct eap_sim_attrs attr; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/serialize/
SerializerUtils.java 50 * @param attr Attribute node to add to SerializationHandler.
54 public static void addAttribute(SerializationHandler handler, int attr)
60 DTM dtm = transformer.getXPathContext().getDTM(attr);
62 if (SerializerUtils.isDefinedNSDecl(handler, attr, dtm))
65 String ns = dtm.getNamespaceURI(attr);
75 dtm.getLocalName(attr),
76 dtm.getNodeName(attr),
78 dtm.getNodeValue(attr), false);
210 * @param attr Namespace attribute node
211 * @param dtm The DTM that owns attr
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_unity.c 86 isakmp_unity_req(iph1, attr)
88 struct isakmp_data *attr;
100 type = ntohs(attr->type);
108 s_isakmp_cfg_type(type), ntohs(attr->lorv));
144 reply_attr = isakmp_cfg_string(iph1, attr, buf);
150 reply_attr = isakmp_cfg_short(iph1, attr,
155 reply_attr = isakmp_cfg_short(iph1, attr,
160 reply_attr = isakmp_cfg_copy(iph1, attr);
165 attr, isakmp_cfg_config.default_domain);
170 reply_attr = isakmp_cfg_split(iph1, attr,
    [all...]
  /external/libxslt/libxslt/
attributes.c 89 xmlNodePtr attr; /* the xsl:attribute definition */ member in struct:_xsltAttrElem
102 * @attr: the new xsl:attribute node
109 xsltNewAttrElem(xmlNodePtr attr) {
119 cur->attr = attr;
125 * @attr: an XSLT AttrElem
127 * Free up the memory allocated by @attr
130 xsltFreeAttrElem(xsltAttrElemPtr attr) {
131 xmlFree(attr);
159 * @attr: the new xsl:attribute nod
657 xmlAttrPtr attr; local
    [all...]
  /bionic/libc/kernel/common/linux/
sysdev.h 30 struct attribute attr; member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
53 struct attribute attr; member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /development/ndk/platforms/android-3/include/linux/
sysdev.h 30 struct attribute attr; member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
53 struct attribute attr; member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_x.cc 32 XWindowAttributes attr; local
33 if (XGetWindowAttributes(display, win, &attr) == 0) {
38 display, win, 0, 0, attr.width, attr.height, AllPlanes, ZPixmap);
  /external/elfutils/libdw/
libdw.h 226 extern int dwarf_hasform (Dwarf_Attribute *attr, unsigned int search_form);
229 extern unsigned int dwarf_whatattr (Dwarf_Attribute *attr);
232 extern unsigned int dwarf_whatform (Dwarf_Attribute *attr);
239 extern int dwarf_formudata (Dwarf_Attribute *attr, Dwarf_Word *return_uval)
243 extern int dwarf_formsdata (Dwarf_Attribute *attr, Dwarf_Sword *return_uval)
247 extern int dwarf_formaddr (Dwarf_Attribute *attr, Dwarf_Addr *return_addr)
251 extern int dwarf_formref (Dwarf_Attribute *attr, Dwarf_Off *return_offset)
255 extern int dwarf_formblock (Dwarf_Attribute *attr, Dwarf_Block *return_block)
259 extern int dwarf_formflag (Dwarf_Attribute *attr, bool *return_bool)
391 extern int dwarf_getloclist (Dwarf_Attribute *attr, Dwarf_Loc **llbuf
    [all...]
  /external/expat/examples/
outline.c 49 start(void *data, const char *el, const char **attr)
58 for (i = 0; attr[i]; i += 2) {
59 printf(" %s='%s'", attr[i], attr[i + 1]);
  /external/kernel-headers/original/linux/
sysdev.h 41 struct attribute attr; member in struct:sysdev_class_attribute
48 .attr = {.name = __stringify(_name), .mode = _mode }, \
95 struct attribute attr; member in struct:sysdev_attribute
103 .attr = {.name = __stringify(_name), .mode = _mode }, \
  /external/openssl/crypto/x509/
x509_req.c 188 X509_ATTRIBUTE *attr; local
200 attr = X509_REQ_get_attr(req, idx);
201 if(attr->single) ext = attr->value.single;
202 else if(sk_ASN1_TYPE_num(attr->value.set))
203 ext = sk_ASN1_TYPE_value(attr->value.set, 0);
222 X509_ATTRIBUTE *attr = NULL; local
232 if(!(attr = X509_ATTRIBUTE_new())) goto err;
233 if(!(attr->value.set = sk_ASN1_TYPE_new_null())) goto err;
234 if(!sk_ASN1_TYPE_push(attr->value.set, at)) goto err
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_sysmutex.c 45 pthread_mutexattr_t attr; local
50 pthread_mutexattr_init(&attr);
54 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
56 if ( pthread_mutex_init(&mutex->id, &attr) != 0 ) {
  /external/qemu/elff/
dwarf_die.cc 74 bool DIEObject::get_attrib(Dwarf_At at_id, DIEAttrib* attr) const {
87 at_abbr = at_abbr->process(&attr->at_, &attr->form_);
88 die_attr = parent_cu()->process_attrib(die_attr, attr->form_, &attr->value_);
89 if (at_id == attr->at()) {
204 DIEAttrib attr; local
205 at_abbr = at_abbr->process(&attr.at_, &attr.form_);
206 die_attr = parent_cu()->process_attrib(die_attr, attr.form(), &attr.value_);
    [all...]
  /external/quake/quake/src/WinQuake/
quake.spec.sh 49 %attr(644,root,root) $3/README
50 %attr(4755,root,root) $3/squake
51 %attr(4755,root,root) $3/glquake
52 %attr(4755,root,root) $3/glquake.glx
53 %attr(4755,root,root) $3/glquake.3dfxgl
54 %attr(755,root,root) $3/quake.x11
55 %attr(755,root,root) /usr/lib/lib3dfxgl.so
56 %attr(755,root,root) /usr/lib/libMesaGL.so.2.6

Completed in 318 milliseconds

1 2 3 4 5 6 78 91011>>