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

1 2 3 4 56 7 8 91011>>

  /external/webkit/WebCore/svg/
SVGTextPathElement.cpp 49 void SVGTextPathElement::parseMappedAttribute(MappedAttribute* attr)
51 const String& value = attr->value();
53 if (attr->name() == SVGNames::startOffsetAttr)
55 else if (attr->name() == SVGNames::methodAttr) {
60 } else if (attr->name() == SVGNames::spacingAttr) {
66 if (SVGURIReference::parseMappedAttribute(attr))
68 SVGTextContentElement::parseMappedAttribute(attr);
SVGElement.cpp 193 void SVGElement::parseMappedAttribute(MappedAttribute* attr)
196 if (attr->name() == onloadAttr)
197 setAttributeEventListener(eventNames().loadEvent, createAttributeEventListener(this, attr));
198 else if (attr->name() == onclickAttr)
199 setAttributeEventListener(eventNames().clickEvent, createAttributeEventListener(this, attr));
200 else if (attr->name() == onmousedownAttr)
201 setAttributeEventListener(eventNames().mousedownEvent, createAttributeEventListener(this, attr));
202 else if (attr->name() == onmousemoveAttr)
203 setAttributeEventListener(eventNames().mousemoveEvent, createAttributeEventListener(this, attr));
204 else if (attr->name() == onmouseoutAttr
    [all...]
SVGGradientElement.cpp 53 void SVGGradientElement::parseMappedAttribute(MappedAttribute* attr)
55 if (attr->name() == SVGNames::gradientUnitsAttr) {
56 if (attr->value() == "userSpaceOnUse")
58 else if (attr->value() == "objectBoundingBox")
60 } else if (attr->name() == SVGNames::gradientTransformAttr) {
62 if (!SVGTransformable::parseTransformAttribute(gradientTransforms, attr->value())) {
66 } else if (attr->name() == SVGNames::spreadMethodAttr) {
67 if (attr->value() == "reflect")
69 else if (attr->value() == "repeat")
71 else if (attr->value() == "pad"
    [all...]
SVGCursorElement.cpp 26 #include "Attr.h"
51 void SVGCursorElement::parseMappedAttribute(MappedAttribute* attr)
53 if (attr->name() == SVGNames::xAttr)
54 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
55 else if (attr->name() == SVGNames::yAttr)
56 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
58 if (SVGTests::parseMappedAttribute(attr))
60 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
62 if (SVGURIReference::parseMappedAttribute(attr))
65 SVGElement::parseMappedAttribute(attr);
    [all...]
SVGFEGaussianBlurElement.cpp 50 void SVGFEGaussianBlurElement::parseMappedAttribute(MappedAttribute* attr)
52 const String& value = attr->value();
53 if (attr->name() == SVGNames::stdDeviationAttr) {
59 } else if (attr->name() == SVGNames::inAttr)
62 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
SVGGElement.cpp 42 void SVGGElement::parseMappedAttribute(MappedAttribute* attr)
44 if (SVGTests::parseMappedAttribute(attr))
46 if (SVGLangSpace::parseMappedAttribute(attr))
48 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
51 SVGStyledTransformableElement::parseMappedAttribute(attr);
SVGMPathElement.cpp 41 void SVGMPathElement::parseMappedAttribute(MappedAttribute* attr)
43 if (SVGURIReference::parseMappedAttribute(attr))
45 SVGElement::parseMappedAttribute(attr);
SVGURIReference.cpp 38 bool SVGURIReference::parseMappedAttribute(MappedAttribute* attr)
40 if (attr->name().matches(XLinkNames::hrefAttr)) {
41 setHrefBaseValue(attr->value());
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_sake_common.c 24 static int eap_sake_parse_add_attr(struct eap_sake_parse_attr *attr,
37 attr->rand_s = pos + 2;
46 attr->rand_p = pos + 2;
55 attr->mic_s = pos + 2;
64 attr->mic_p = pos + 2;
68 attr->serverid = pos + 2;
69 attr->serverid_len = pos[1] - 2;
73 attr->peerid = pos + 2;
74 attr->peerid_len = pos[1] - 2;
78 attr->spi_s = pos + 2
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestElementNode.java 84 String attr = _Element_getAttributeNS(elem, local
87 if (attr == null || attr.length() == 0) {
88 attr = _Element_getAttributeNS(elem,
92 if (attr != null && attr.length() > 0) {
93 return String.format("%1$s (%2$s)", attr, getDescriptor().getUiName());
  /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/webkit/WebCore/html/
HTMLTableElement.cpp 319 void HTMLTableElement::parseMappedAttribute(MappedAttribute* attr)
324 if (attr->name() == widthAttr)
325 addCSSLength(attr, CSSPropertyWidth, attr->value());
326 else if (attr->name() == heightAttr)
327 addCSSLength(attr, CSSPropertyHeight, attr->value());
328 else if (attr->name() == borderAttr) {
330 if (attr->decl()) {
331 RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSSPropertyBorderLeftWidth)
    [all...]
HTMLAppletElement.cpp 49 void HTMLAppletElement::parseMappedAttribute(MappedAttribute* attr)
51 if (attr->name() == altAttr ||
52 attr->name() == archiveAttr ||
53 attr->name() == codeAttr ||
54 attr->name() == codebaseAttr ||
55 attr->name() == mayscriptAttr ||
56 attr->name() == objectAttr) {
58 } else if (attr->name() == nameAttr) {
59 const AtomicString& newName = attr->value();
66 } else if (attr->name() == idAttributeName())
    [all...]
HTMLTableColElement.cpp 75 void HTMLTableColElement::parseMappedAttribute(MappedAttribute *attr)
77 if (attr->name() == spanAttr) {
78 _span = !attr->isNull() ? attr->value().toInt() : 1;
81 } else if (attr->name() == widthAttr) {
82 if (!attr->value().isEmpty()) {
83 addCSSLength(attr, CSSPropertyWidth, attr->value());
92 HTMLTablePartElement::parseMappedAttribute(attr);
HTMLEmbedElement.cpp 86 void HTMLEmbedElement::parseMappedAttribute(MappedAttribute* attr)
88 const AtomicString& value = attr->value();
90 if (attr->name() == typeAttr) {
97 } else if (attr->name() == codeAttr)
99 else if (attr->name() == srcAttr) {
106 } else if (attr->name() == hiddenAttr) {
110 addCSSLength(attr, CSSPropertyWidth, "0");
111 addCSSLength(attr, CSSPropertyHeight, "0");
113 } else if (attr->name() == nameAttr) {
121 HTMLPlugInElement::parseMappedAttribute(attr);
    [all...]
  /external/wpa_supplicant/
radius.c 209 struct radius_attr_type *attr; local
213 attr = radius_get_attr_type(hdr->type);
216 hdr->type, attr ? attr->name : "?Unknown?", hdr->length);
218 if (attr == NULL)
224 switch (attr->data_type) {
293 struct radius_attr_hdr *attr; local
296 attr = radius_msg_add_attr(msg,
299 if (attr == NULL) {
306 (u8 *) (attr + 1))
323 struct radius_attr_hdr *attr; local
406 struct radius_attr_hdr *attr; local
457 struct radius_attr_hdr *attr; local
567 struct radius_attr_hdr *attr = msg->attrs[i]; local
586 struct radius_attr_hdr *attr = NULL; local
669 struct radius_attr_hdr *attr; local
727 struct radius_attr_hdr *attr = msg->attrs[i]; local
974 struct radius_attr_hdr *attr; local
1096 struct radius_attr_hdr *attr = NULL; local
1120 struct radius_attr_hdr *attr = NULL; local
1172 struct radius_attr_hdr *attr = NULL; local
    [all...]
eap_sim_common.c 233 struct eap_sim_attrs *attr, int aka, int encr)
238 os_memset(attr, 0, sizeof(*attr));
239 attr->id_req = NO_ID_REQ;
240 attr->notification = -1;
241 attr->counter = -1;
242 attr->selected_version = -1;
243 attr->client_error_code = -1;
279 attr->rand = apos;
280 attr->num_chal = alen / GSM_RAND_LEN
    [all...]
  /bionic/libc/bionic/
pthread.c 167 *p_stack_size = thread->attr.stack_size;
168 return thread->attr.stack_base;
210 void _init_thread(pthread_internal_t * thread, pid_t kernel_id, pthread_attr_t * attr, void * stack_base)
212 if (attr == NULL) {
213 thread->attr = gDefaultPthreadAttr;
215 thread->attr = *attr;
217 thread->attr.stack_base = stack_base;
221 if (thread->attr.sched_policy != SCHED_NORMAL) {
223 param.sched_priority = thread->attr.sched_priority
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
AttrGetOwnerElement.java 8 import org.w3c.dom.Attr;
17 @TestTargetClass(Attr.class)
44 // Attr attr;
58 // attr = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
59 // ownerElement = attr.getOwnerElement();
75 Attr attr; local
79 attr = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att")
94 Attr attr; local
111 Attr attr; local
140 Attr attr; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/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 ) {
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps.c 74 struct wps_parse_attr attr; local
77 if (wps_parse_msg(cfg->assoc_wps_ie, &attr) < 0) {
80 } else if (attr.request_type == NULL) {
86 *attr.request_type);
87 data->request_type = *attr.request_type;
169 struct wps_parse_attr attr; local
172 * In theory, this could also verify that attr.sel_reg_config_methods
178 if (wps_parse_msg(msg, &attr) < 0 ||
179 !attr.selected_registrar || *attr.selected_registrar == 0 |
195 struct wps_parse_attr attr; local
229 struct wps_parse_attr attr; local
    [all...]
  /libcore/luni/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/bluetooth/glib/gio/
gfileinfo.c 345 GFileAttribute *attr; local
359 attr = &g_array_index (info->attributes, GFileAttribute, i);
361 attr->attribute))
363 _g_file_attribute_value_clear (&attr->value);
892 GFileAttribute attr = { 0 }; local
893 attr.attribute = attr_id;
894 g_array_insert_val (info->attributes, i, attr);
1148 static guint32 attr = 0; local
1153 if (attr == 0)
1154 attr = lookup_attribute (G_FILE_ATTRIBUTE_STANDARD_TYPE)
1171 static guint32 attr = 0; local
1194 static guint32 attr = 0; local
1217 static guint32 attr = 0; local
1240 static guint32 attr = 0; local
1263 static guint32 attr = 0; local
1286 static guint32 attr = 0; local
1309 static guint32 attr = 0; local
1336 static guint32 attr = 0; local
1359 static guint32 attr = 0; local
1412 static guint32 attr = 0; local
1436 static guint32 attr = 0; local
1460 static guint32 attr = 0; local
1485 static guint32 attr = 0; local
1510 static guint32 attr = 0; local
1535 static guint32 attr = 0; local
1560 static guint32 attr = 0; local
1586 static guint32 attr = 0; local
1612 static guint32 attr = 0; local
1638 static guint32 attr = 0; local
1664 static guint32 attr = 0; local
1690 static guint32 attr = 0; local
1747 static guint32 attr = 0; local
1773 static guint32 attr = 0; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_sim.c 293 struct eap_sim_attrs *attr)
295 if (attr->next_pseudonym) {
297 data->pseudonym = os_malloc(attr->next_pseudonym_len);
303 os_memcpy(data->pseudonym, attr->next_pseudonym,
304 attr->next_pseudonym_len);
305 data->pseudonym_len = attr->next_pseudonym_len;
312 if (attr->next_reauth_id) {
314 data->reauth_id = os_malloc(attr->next_reauth_id_len);
320 os_memcpy(data->reauth_id, attr->next_reauth_id,
321 attr->next_reauth_id_len)
897 struct eap_sim_attrs 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...]

Completed in 1098 milliseconds

1 2 3 4 56 7 8 91011>>