HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 1 - 25 of 840) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_whatattr.c 24 dwarf_whatattr (attr)
25 Dwarf_Attribute *attr;
27 return attr == NULL ? 0 : attr->code;
dwarf_whatform.c 24 dwarf_whatform (attr)
25 Dwarf_Attribute *attr;
27 return attr == NULL ? 0 : attr->form;
dwarf_formaddr.c 24 dwarf_formaddr (attr, return_addr)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
31 if (unlikely (attr->form != DW_FORM_addr))
37 if (attr->cu->address_size == 8)
38 *return_addr = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
40 *return_addr = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
dwarf_hasform.c 24 dwarf_hasform (attr, search_form)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
31 return attr->form == search_form;
dwarf_formsdata.c 24 dwarf_formsdata (attr, return_sval)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 *return_sval = *attr->valp;
41 *return_sval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_sval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_sval = read_8ubyte_unaligned (attr->cu->dbg, attr->valp)
    [all...]
dwarf_formudata.c 24 dwarf_formudata (attr, return_uval)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 *return_uval = *attr->valp;
41 *return_uval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_uval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_uval = read_8ubyte_unaligned (attr->cu->dbg, attr->valp)
    [all...]
dwarf_formflag.c 24 dwarf_formflag (attr, return_bool)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
31 if (unlikely (attr->form != DW_FORM_flag))
37 *return_bool = *attr->valp != 0;
dwarf_formref.c 24 dwarf_formref (attr, return_offset)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 *return_offset = *attr->valp;
41 *return_offset = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_offset = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_offset = read_8ubyte_unaligned (attr->cu->dbg, attr->valp)
    [all...]
dwarf_formblock.c 24 dwarf_formblock (attr, return_block)
25 Dwarf_Attribute *attr;
28 if (attr == NULL)
34 switch (attr->form)
37 return_block->length = *(uint8_t *) attr->valp;
38 return_block->data = attr->valp + 1;
42 return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
43 return_block->data = attr->valp + 2;
47 return_block->length = read_4ubyte_unaligned (attr->cu->dbg, attr->valp)
    [all...]
  /external/webkit/WebCore/html/
HTMLTablePartElement.cpp 62 void HTMLTablePartElement::parseMappedAttribute(MappedAttribute *attr)
64 if (attr->name() == bgcolorAttr)
65 addCSSColor(attr, CSSPropertyBackgroundColor, attr->value());
66 else if (attr->name() == backgroundAttr) {
67 String url = deprecatedParseURL(attr->value());
69 addCSSImageProperty(attr, CSSPropertyBackgroundImage, document()->completeURL(url).string());
70 } else if (attr->name() == bordercolorAttr) {
71 if (!attr->value().isEmpty()) {
72 addCSSColor(attr, CSSPropertyBorderColor, attr->value())
    [all...]
HTMLHRElement.cpp 58 void HTMLHRElement::parseMappedAttribute(MappedAttribute *attr)
60 if (attr->name() == alignAttr) {
61 if (equalIgnoringCase(attr->value(), "left")) {
62 addCSSProperty(attr, CSSPropertyMarginLeft, "0");
63 addCSSProperty(attr, CSSPropertyMarginRight, CSSValueAuto);
64 } else if (equalIgnoringCase(attr->value(), "right")) {
65 addCSSProperty(attr, CSSPropertyMarginLeft, CSSValueAuto);
66 addCSSProperty(attr, CSSPropertyMarginRight, "0");
68 addCSSProperty(attr, CSSPropertyMarginLeft, CSSValueAuto);
69 addCSSProperty(attr, CSSPropertyMarginRight, CSSValueAuto)
    [all...]
HTMLMarqueeElement.cpp 67 void HTMLMarqueeElement::parseMappedAttribute(MappedAttribute *attr)
69 if (attr->name() == widthAttr) {
70 if (!attr->value().isEmpty())
71 addCSSLength(attr, CSSPropertyWidth, attr->value());
72 } else if (attr->name() == heightAttr) {
73 if (!attr->value().isEmpty())
74 addCSSLength(attr, CSSPropertyHeight, attr->value());
75 } else if (attr->name() == bgcolorAttr)
    [all...]
HTMLOListElement.cpp 52 void HTMLOListElement::parseMappedAttribute(MappedAttribute* attr)
54 if (attr->name() == typeAttr) {
55 if (attr->value() == "a")
56 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerAlpha);
57 else if (attr->value() == "A")
58 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueUpperAlpha);
59 else if (attr->value() == "i")
60 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerRoman);
61 else if (attr->value() == "I")
62 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueUpperRoman)
    [all...]
HTMLParamElement.cpp 44 void HTMLParamElement::parseMappedAttribute(MappedAttribute* attr)
46 if (attr->name() == idAttributeName()) {
48 HTMLElement::parseMappedAttribute(attr);
51 m_name = attr->value();
52 } else if (attr->name() == nameAttr) {
53 m_name = attr->value();
54 } else if (attr->name() == valueAttr) {
55 m_value = attr->value();
57 HTMLElement::parseMappedAttribute(attr);
60 bool HTMLParamElement::isURLAttribute(Attribute* attr) cons
63 Attribute* attr = attributes()->getAttributeItem(nameAttr); local
    [all...]
HTMLLIElement.cpp 53 void HTMLLIElement::parseMappedAttribute(MappedAttribute* attr)
55 if (attr->name() == valueAttr) {
56 m_requestedValue = attr->value().toInt();
63 } else if (attr->name() == typeAttr) {
64 if (attr->value() == "a")
65 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerAlpha);
66 else if (attr->value() == "A")
67 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueUpperAlpha);
68 else if (attr->value() == "i")
69 addCSSProperty(attr, CSSPropertyListStyleType, CSSValueLowerRoman)
    [all...]
HTMLDivElement.cpp 54 void HTMLDivElement::parseMappedAttribute(MappedAttribute *attr)
56 if (attr->name() == alignAttr) {
57 String v = attr->value();
58 if (equalIgnoringCase(attr->value(), "middle") || equalIgnoringCase(attr->value(), "center"))
59 addCSSProperty(attr, CSSPropertyTextAlign, CSSValueWebkitCenter);
60 else if (equalIgnoringCase(attr->value(), "left"))
61 addCSSProperty(attr, CSSPropertyTextAlign, CSSValueWebkitLeft);
62 else if (equalIgnoringCase(attr->value(), "right"))
63 addCSSProperty(attr, CSSPropertyTextAlign, CSSValueWebkitRight)
    [all...]
  /external/bluetooth/glib/gio/
gfileattribute-priv.h 46 void _g_file_attribute_value_free (GFileAttributeValue *attr);
47 void _g_file_attribute_value_clear (GFileAttributeValue *attr);
48 void _g_file_attribute_value_set (GFileAttributeValue *attr,
51 gpointer _g_file_attribute_value_peek_as_pointer (GFileAttributeValue *attr);
53 char * _g_file_attribute_value_as_string (const GFileAttributeValue *attr);
55 const char * _g_file_attribute_value_get_string (const GFileAttributeValue *attr);
56 const char * _g_file_attribute_value_get_byte_string (const GFileAttributeValue *attr);
57 gboolean _g_file_attribute_value_get_boolean (const GFileAttributeValue *attr);
58 guint32 _g_file_attribute_value_get_uint32 (const GFileAttributeValue *attr);
59 gint32 _g_file_attribute_value_get_int32 (const GFileAttributeValue *attr);
    [all...]
gfileattribute.c 110 * about extended user attributes. See attr(5). The "user." prefix of the
117 * See attr(5). Note that this information is only available if GLib
215 * @attr: a #GFileAttributeValue.
217 * Frees the memory used by @attr.
221 _g_file_attribute_value_free (GFileAttributeValue *attr)
223 g_return_if_fail (attr != NULL);
225 _g_file_attribute_value_clear (attr);
226 g_free (attr);
231 * @attr: a #GFileAttributeValue.
233 * Clears the value of @attr and sets its type to
289 GFileAttributeValue *attr; local
321 GFileAttributeValue *attr; local
    [all...]
  /external/skia/include/svg/
SkSVGAttribute.h 34 #define SVG_ATTRIBUTE(attr) { #attr, SK_OFFSETOF(BASE_CLASS, f_##attr) }
37 #define SVG_ATTRIBUTE(attr) { #attr }
41 #define SVG_ADD_ATTRIBUTE(attr) \
42 if (f_##attr.size() > 0) \
43 parser._addAttributeLen(#attr, f_##attr.c_str(), f_##attr.size()
    [all...]
  /external/elfutils/tests/
run-show-abbrev.sh 26 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
27 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
28 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
29 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
30 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
31 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
32 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
34 abbrev[19]: attr[0]: code = 1, form = 19, offset = 19
35 abbrev[19]: attr[1]: code = 63, form = 12, offset = 21
36 abbrev[19]: attr[2]: code = 3, form = 8, offset = 2
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_attr_parse.c 21 static int wps_set_attr(struct wps_parse_attr *attr, u16 type,
31 attr->version = pos;
39 attr->msg_type = pos;
47 attr->enrollee_nonce = pos;
55 attr->registrar_nonce = pos;
63 attr->uuid_e = pos;
71 attr->uuid_r = pos;
79 attr->auth_type_flags = pos;
87 attr->encr_type_flags = pos;
95 attr->conn_type_flags = pos
    [all...]
  /external/webkit/WebCore/wml/
WMLMetaElement.cpp 41 void WMLMetaElement::parseMappedAttribute(MappedAttribute* attr)
43 if (attr->name() == HTMLNames::http_equivAttr)
44 m_equiv = parseValueForbiddingVariableReferences(attr->value());
45 else if (attr->name() == HTMLNames::contentAttr)
46 m_content = parseValueForbiddingVariableReferences(attr->value());
47 else if (attr->name() == HTMLNames::nameAttr) {
50 WMLElement::parseMappedAttribute(attr);
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzGL.m 56 NSOpenGLPixelFormatAttribute attr[32];
69 attr[i++] = NSOpenGLPFAFullScreen;
77 attr[i++] = NSOpenGLPFAColorSize;
78 attr[i++] = colorBits;
80 attr[i++] = NSOpenGLPFADepthSize;
81 attr[i++] = this->gl_config.depth_size;
84 attr[i++] = NSOpenGLPFADoubleBuffer;
88 attr[i++] = NSOpenGLPFAStereo;
92 attr[i++] = NSOpenGLPFAStencilSize;
93 attr[i++] = this->gl_config.stencil_size
    [all...]
  /system/extras/tests/bionic/libc/common/
test_pthread_mutex.c 111 static void do_test_mutex_1(pthread_mutexattr_t *attr)
116 TZERO(pthread_mutex_init(lock, attr));
122 static void set_mutexattr_type(pthread_mutexattr_t *attr, int type)
125 TZERO(pthread_mutexattr_settype(attr, type));
127 TZERO(pthread_mutexattr_gettype(attr, &newtype));
135 pthread_mutexattr_t attr[1]; local
141 TZERO(pthread_mutexattr_init(attr));
143 set_mutexattr_type(attr, PTHREAD_MUTEX_NORMAL);
144 do_test_mutex_1(attr);
146 set_mutexattr_type(attr, PTHREAD_MUTEX_RECURSIVE)
222 pthread_mutexattr_t attr[1]; local
345 pthread_mutexattr_t attr[1]; local
    [all...]
  /external/webkit/WebCore/dom/
NamedMappedAttrMap.cpp 50 Attribute* attr = attributeItem(i); local
51 if (attr->isMappedAttribute() &&
52 static_cast<MappedAttribute*>(attr)->decl())
66 Attribute* attr = attributeItem(i); local
67 if (attr->isMappedAttribute() &&
68 static_cast<MappedAttribute*>(attr)->decl()) {
69 Attribute* otherAttr = otherMap->getAttributeItem(attr->name());
70 if (!otherAttr || (attr->value() != otherAttr->value()))

Completed in 335 milliseconds

1 2 3 4 5 6 7 8 91011>>