HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 201 - 225 of 1870) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/html/
HTMLAppletElement.cpp 50 void HTMLAppletElement::parseMappedAttribute(Attribute* attr)
52 if (attr->name() == altAttr ||
53 attr->name() == archiveAttr ||
54 attr->name() == codeAttr ||
55 attr->name() == codebaseAttr ||
56 attr->name() == mayscriptAttr ||
57 attr->name() == objectAttr) {
59 } else if (attr->name() == nameAttr) {
60 const AtomicString& newName = attr->value();
67 } else if (isIdAttributeName(attr->name()))
    [all...]
HTMLKeygenElement.cpp 90 void HTMLKeygenElement::parseMappedAttribute(Attribute* attr)
93 if (attr->name() == disabledAttr)
94 shadowSelect()->setAttribute(attr->name(), attr->value());
96 if (attr->name() == challengeAttr)
97 m_challenge = attr->value();
98 else if (attr->name() == keytypeAttr)
99 m_keyType = attr->value();
101 HTMLFormControlElement::parseMappedAttribute(attr);
HTMLEmbedElement.cpp 88 void HTMLEmbedElement::parseMappedAttribute(Attribute* attr)
90 const AtomicString& value = attr->value();
92 if (attr->name() == typeAttr) {
99 } else if (attr->name() == codeAttr)
101 else if (attr->name() == srcAttr) {
108 } else if (attr->name() == hiddenAttr) {
112 addCSSLength(attr, CSSPropertyWidth, "0");
113 addCSSLength(attr, CSSPropertyHeight, "0");
115 } else if (attr->name() == nameAttr) {
123 HTMLPlugInImageElement::parseMappedAttribute(attr);
    [all...]
HTMLScriptElement.cpp 51 bool HTMLScriptElement::isURLAttribute(Attribute* attr) const
53 return attr->name() == srcAttr;
62 void HTMLScriptElement::attributeChanged(Attribute* attr, bool preserveDecls)
64 if (attr->name() == asyncAttr)
66 HTMLElement::attributeChanged(attr, preserveDecls);
69 void HTMLScriptElement::parseMappedAttribute(Attribute* attr)
71 const QualifiedName& attrName = attr->name();
74 handleSourceAttribute(attr->value());
76 setAttributeEventListener(eventNames().loadEvent, createAttributeEventListener(this, attr));
78 setAttributeEventListener(eventNames().beforeloadEvent, createAttributeEventListener(this, attr));
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGEllipseElement.cpp 56 void SVGEllipseElement::parseMappedAttribute(Attribute* attr)
58 if (attr->name() == SVGNames::cxAttr)
59 setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
60 else if (attr->name() == SVGNames::cyAttr)
61 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
62 else if (attr->name() == SVGNames::rxAttr) {
63 setRxBaseValue(SVGLength(LengthModeWidth, attr->value()));
66 } else if (attr->name() == SVGNames::ryAttr) {
67 setRyBaseValue(SVGLength(LengthModeHeight, attr->value()));
71 if (SVGTests::parseMappedAttribute(attr))
    [all...]
SVGGradientElement.cpp 54 void SVGGradientElement::parseMappedAttribute(Attribute* attr)
56 if (attr->name() == SVGNames::gradientUnitsAttr) {
57 if (attr->value() == "userSpaceOnUse")
59 else if (attr->value() == "objectBoundingBox")
61 } else if (attr->name() == SVGNames::gradientTransformAttr) {
63 if (!SVGTransformable::parseTransformAttribute(newList, attr->value()))
68 } else if (attr->name() == SVGNames::spreadMethodAttr) {
69 if (attr->value() == "reflect")
71 else if (attr->value() == "repeat")
73 else if (attr->value() == "pad"
    [all...]
SVGLineElement.cpp 56 void SVGLineElement::parseMappedAttribute(Attribute* attr)
58 if (attr->name() == SVGNames::x1Attr)
59 setX1BaseValue(SVGLength(LengthModeWidth, attr->value()));
60 else if (attr->name() == SVGNames::y1Attr)
61 setY1BaseValue(SVGLength(LengthModeHeight, attr->value()));
62 else if (attr->name() == SVGNames::x2Attr)
63 setX2BaseValue(SVGLength(LengthModeWidth, attr->value()));
64 else if (attr->name() == SVGNames::y2Attr)
65 setY2BaseValue(SVGLength(LengthModeHeight, attr->value()));
67 if (SVGTests::parseMappedAttribute(attr))
    [all...]
SVGGElement.cpp 46 void SVGGElement::parseMappedAttribute(Attribute* attr)
48 if (SVGTests::parseMappedAttribute(attr))
50 if (SVGLangSpace::parseMappedAttribute(attr))
52 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
55 SVGStyledTransformableElement::parseMappedAttribute(attr);
SVGImageElement.cpp 62 void SVGImageElement::parseMappedAttribute(Attribute* attr)
64 if (attr->name() == SVGNames::xAttr)
65 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
66 else if (attr->name() == SVGNames::yAttr)
67 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
68 else if (attr->name() == SVGNames::preserveAspectRatioAttr)
69 SVGPreserveAspectRatio::parsePreserveAspectRatio(this, attr->value());
70 else if (attr->name() == SVGNames::widthAttr) {
71 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value()));
72 addCSSProperty(attr, CSSPropertyWidth, attr->value())
    [all...]
SVGMarkerElement.cpp 81 void SVGMarkerElement::parseMappedAttribute(Attribute* attr)
83 if (attr->name() == SVGNames::markerUnitsAttr) {
84 if (attr->value() == "userSpaceOnUse")
86 else if (attr->value() == "strokeWidth")
88 } else if (attr->name() == SVGNames::refXAttr)
89 setRefXBaseValue(SVGLength(LengthModeWidth, attr->value()));
90 else if (attr->name() == SVGNames::refYAttr)
91 setRefYBaseValue(SVGLength(LengthModeHeight, attr->value()));
92 else if (attr->name() == SVGNames::markerWidthAttr)
93 setMarkerWidthBaseValue(SVGLength(LengthModeWidth, attr->value()))
    [all...]
SVGMaskElement.cpp 65 void SVGMaskElement::parseMappedAttribute(Attribute* attr)
67 if (attr->name() == SVGNames::maskUnitsAttr) {
68 if (attr->value() == "userSpaceOnUse")
70 else if (attr->value() == "objectBoundingBox")
72 } else if (attr->name() == SVGNames::maskContentUnitsAttr) {
73 if (attr->value() == "userSpaceOnUse")
75 else if (attr->value() == "objectBoundingBox")
77 } else if (attr->name() == SVGNames::xAttr)
78 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
79 else if (attr->name() == SVGNames::yAttr
    [all...]
SVGTextPositioningElement.cpp 47 void SVGTextPositioningElement::parseMappedAttribute(Attribute* attr)
49 if (attr->name() == SVGNames::xAttr) {
51 newList.parse(attr->value(), LengthModeWidth);
54 } else if (attr->name() == SVGNames::yAttr) {
56 newList.parse(attr->value(), LengthModeHeight);
59 } else if (attr->name() == SVGNames::dxAttr) {
61 newList.parse(attr->value(), LengthModeWidth);
64 } else if (attr->name() == SVGNames::dyAttr) {
66 newList.parse(attr->value(), LengthModeHeight);
69 } else if (attr->name() == SVGNames::rotateAttr)
    [all...]
SVGURIReference.cpp 30 bool SVGURIReference::parseMappedAttribute(Attribute* attr)
32 if (attr->name().matches(XLinkNames::hrefAttr)) {
33 setHrefBaseValue(attr->value());
  /external/elfutils/backends/
ppc64_retval.c 72 Dwarf_Attribute *attr = dwarf_attr_integrate (functypedie, DW_AT_type, local
74 if (attr == NULL)
79 Dwarf_Die *typedie = dwarf_formref_die (attr, &die_mem);
87 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
88 typedie = dwarf_formref_die (attr, &die_mem);
101 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
102 typedie = dwarf_formref_die (attr, &die_mem);
162 attr = dwarf_attr_integrate (typedie, DW_AT_type, &attr_mem);
163 typedie = dwarf_formref_die (attr, &die_mem);
  /external/wpa_supplicant_8/src/eap_peer/
eap_sim.c 296 struct eap_sim_attrs *attr)
298 if (attr->next_pseudonym) {
306 attr->next_pseudonym,
307 attr->next_pseudonym_len);
318 data->pseudonym = os_malloc(attr->next_pseudonym_len +
326 os_memcpy(data->pseudonym, attr->next_pseudonym,
327 attr->next_pseudonym_len);
329 os_memcpy(data->pseudonym + attr->next_pseudonym_len,
332 data->pseudonym_len = attr->next_pseudonym_len + realm_len;
336 if (attr->next_reauth_id)
926 struct eap_sim_attrs attr; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemAttributeSet.java 118 ElemAttribute attr = (ElemAttribute) getFirstChildElem(); local
120 while (null != attr)
122 attr.execute(transformer);
124 attr = (ElemAttribute) attr.getNextSiblingElem();
  /external/openssh/contrib/suse/
openssh.spec 199 %attr(0755,root,root) %dir %{_sysconfdir}/ssh
200 %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config
201 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/sshd_config
202 %attr(0600,root,root) %config(noreplace) %{_sysconfdir}/ssh/moduli
203 %attr(0644,root,root) %config(noreplace) /etc/pam.d/sshd
204 %attr(0755,root,root) %config /etc/init.d/sshd
205 %attr(0755,root,root) %{_bindir}/ssh-keygen
206 %attr(0755,root,root) %{_bindir}/scp
207 %attr(0755,root,root) %{_bindir}/ssh
208 %attr(-,root,root) %{_bindir}/slogi
    [all...]
  /external/qemu/
compatfd.c 72 pthread_attr_t attr; local
94 pthread_attr_init(&attr);
95 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
97 pthread_create(&tid, &attr, sigwait_compat, info);
99 pthread_attr_destroy(&attr);
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_sysmutex.c 44 pthread_mutexattr_t attr; local
49 pthread_mutexattr_init(&attr);
51 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
53 pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
57 if ( pthread_mutex_init(&mutex->id, &attr) != 0 ) {
  /frameworks/av/media/libstagefright/tests/
DummyRecorder.cpp 43 pthread_attr_t attr; local
44 pthread_attr_init(&attr);
45 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
46 int err = pthread_create(&mThread, &attr, threadWrapper, this);
47 pthread_attr_destroy(&attr);
  /frameworks/native/include/utils/
Mutex.h 99 pthread_mutexattr_t attr; local
100 pthread_mutexattr_init(&attr);
101 pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
102 pthread_mutex_init(&mMutex, &attr);
103 pthread_mutexattr_destroy(&attr);
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouterThemeHelper.java 39 public static int getThemeResource(Context context, int attr) {
41 return context.getTheme().resolveAttribute(attr, value, true) ? value.resourceId : 0;
44 public static Drawable getThemeDrawable(Context context, int attr) {
45 int res = getThemeResource(context, attr);
51 return context.getTheme().resolveAttribute(R.attr.isLightTheme, value, true)
  /external/wpa_supplicant_8/src/wps/
wps_enrollee.c 649 struct wps_parse_attr attr; local
656 if (wps_parse_msg(&msg, &attr) < 0 ||
657 wps_process_cred(&attr, &wps->cred))
747 struct wps_parse_attr *attr,
755 if (wps_process_ap_settings(attr, &cred) < 0)
875 struct wps_parse_attr *attr)
886 if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
887 wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
888 wps_process_uuid_r(wps, attr->uuid_r) ||
889 wps_process_dev_pw_id(wps, attr->dev_password_id))
1162 struct wps_parse_attr attr; local
1244 struct wps_parse_attr attr; local
1290 struct wps_parse_attr attr; local
1376 struct wps_parse_attr attr; local
    [all...]
  /external/kernel-headers/original/linux/
sysfs.h 37 .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, \
43 .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, \
47 #define __ATTR_NULL { .attr = { .name = NULL } }
49 #define attr_name(_attr) (_attr).attr.name
54 struct attribute attr; member in struct:bin_attribute
59 int (*mmap)(struct kobject *, struct bin_attribute *attr,
106 sysfs_chmod_file(struct kobject *kobj, struct attribute *attr, mode_t mode);
117 int sysfs_create_bin_file(struct kobject * kobj, struct bin_attribute * attr);
118 int sysfs_remove_bin_file(struct kobject * kobj, struct bin_attribute * attr);
122 void sysfs_notify(struct kobject * k, char *dir, char *attr);
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/test/
skip.py 36 attr = getattr(klass, name)
37 if not callable(attr):
41 setattr(klass, name, _skipped_method(attr, message, logger))

Completed in 408 milliseconds

1 2 3 4 5 6 7 891011>>