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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/text/mac/
TextBoundaries.mm 37 NSAttributedString* attr = [[NSAttributedString alloc] initWithString:string];
38 NSRange range = [attr doubleClickAtIndex:(position >= len) ? len - 1 : position];
39 [attr release];
49 NSAttributedString* attr = [[NSAttributedString alloc] initWithString:string];
50 int result = [attr nextWordFromIndex:position forward:forward];
51 [attr release];
  /external/webkit/Source/WebCore/svg/
SVGImageLoader.cpp 50 String SVGImageLoader::sourceURI(const AtomicString& attr) const
54 return KURL(base, stripLeadingAndTrailingHTMLSpaces(attr)).string();
55 return element()->document()->completeURL(stripLeadingAndTrailingHTMLSpaces(attr));
SVGZoomAndPan.cpp 37 bool SVGZoomAndPan::parseMappedAttribute(Attribute* attr)
39 if (attr->name() == SVGNames::zoomAndPanAttr) {
40 const UChar* start = attr->value().characters();
41 const UChar* end = start + attr->value().length();
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_enrollee.c 639 struct wps_parse_attr attr; local
645 if (wps_parse_msg(&msg, &attr) < 0 ||
646 wps_process_cred(&attr, &wps->cred))
700 struct wps_parse_attr *attr,
708 if (wps_process_ap_settings(attr, &cred) < 0)
741 struct wps_parse_attr *attr)
752 if (wps_process_registrar_nonce(wps, attr->registrar_nonce) ||
753 wps_process_enrollee_nonce(wps, attr->enrollee_nonce) ||
754 wps_process_uuid_r(wps, attr->uuid_r) ||
755 wps_process_pubkey(wps, attr->public_key, attr->public_key_len) |
977 struct wps_parse_attr attr; local
1051 struct wps_parse_attr attr; local
1103 struct wps_parse_attr attr; local
1190 struct wps_parse_attr attr; local
    [all...]
wps_attr_process.c 286 int wps_process_cred(struct wps_parse_attr *attr,
292 if (wps_process_cred_network_idx(cred, attr->network_idx) ||
293 wps_process_cred_ssid(cred, attr->ssid, attr->ssid_len) ||
294 wps_process_cred_auth_type(cred, attr->auth_type) ||
295 wps_process_cred_encr_type(cred, attr->encr_type) ||
296 wps_process_cred_network_key_idx(cred, attr->network_key_idx) ||
297 wps_process_cred_network_key(cred, attr->network_key,
298 attr->network_key_len) ||
299 wps_process_cred_mac_addr(cred, attr->mac_addr) |
    [all...]
  /external/clang/include/clang/Basic/
AttrKinds.h 1 //===----- Attr.h - Enum values for C Attribute Kinds ----------*- C++ -*-===//
10 // This file defines the attr::Kind enum
19 namespace attr { namespace in namespace:clang
23 #define ATTR(X) X,
30 } // end namespace attr
  /external/valgrind/main/helgrind/tests/
tc10_rec_lock.c 17 pthread_mutexattr_t attr; local
20 r = pthread_mutexattr_init( &attr );
22 r = pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
24 r = pthread_mutex_init( &mx1, &attr );
  /system/core/init/
devices.h 24 extern int add_dev_perms(const char *name, const char *attr,
  /external/wpa_supplicant_8/src/wps/
wps_attr_process.c 293 int wps_process_cred(struct wps_parse_attr *attr,
299 if (wps_process_cred_network_idx(cred, attr->network_idx) ||
300 wps_process_cred_ssid(cred, attr->ssid, attr->ssid_len) ||
301 wps_process_cred_auth_type(cred, attr->auth_type) ||
302 wps_process_cred_encr_type(cred, attr->encr_type) ||
303 wps_process_cred_network_key_idx(cred, attr->network_key_idx) ||
304 wps_process_cred_network_key(cred, attr->network_key,
305 attr->network_key_len) ||
306 wps_process_cred_mac_addr(cred, attr->mac_addr) |
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLFontElement.cpp 171 void HTMLFontElement::parseMappedAttribute(Attribute* attr)
173 if (attr->name() == sizeAttr) {
175 if (cssValueFromFontSizeNumber(attr->value(), size))
176 addCSSProperty(attr, CSSPropertyFontSize, size);
177 } else if (attr->name() == colorAttr) {
178 addCSSColor(attr, CSSPropertyColor, attr->value());
179 } else if (attr->name() == faceAttr) {
180 addCSSProperty(attr, CSSPropertyFontFamily, attr->value())
    [all...]
HTMLBRElement.cpp 61 void HTMLBRElement::parseMappedAttribute(Attribute* attr)
63 if (attr->name() == clearAttr) {
66 const AtomicString& str = attr->value();
69 addCSSProperty(attr, CSSPropertyClear, "both");
71 addCSSProperty(attr, CSSPropertyClear, str);
74 HTMLElement::parseMappedAttribute(attr);
HTMLFrameElement.cpp 83 void HTMLFrameElement::parseMappedAttribute(Attribute* attr)
85 if (attr->name() == frameborderAttr) {
86 m_frameBorder = attr->value().toInt();
87 m_frameBorderSet = !attr->isNull();
89 } else if (attr->name() == noresizeAttr) {
92 // FIXME: Since this does not check attr->isNull(), it can
95 HTMLFrameElementBase::parseMappedAttribute(attr);
  /bionic/libc/kernel/common/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /development/ndk/platforms/android-3/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /external/oprofile/libutil++/
xml_output.cpp 52 string init_attr(tag_t attr, size_t value)
57 init_xml_int_attr(attr, value, buf, MAX_XML_BUF);
63 string init_attr(tag_t attr, double value)
68 init_xml_dbl_attr(attr, value, buf, MAX_XML_BUF);
74 string init_attr(tag_t attr, string const & str)
79 init_xml_str_attr(attr, str.c_str(), buf, MAX_XML_BUF);
  /external/skia/src/ports/
SkXMLParser_tinyxml.cpp 29 const TiXmlAttribute* attr = elem->FirstAttribute(); local
30 while (attr)
32 //printf("walk_elem_attr(%s=\"%s\") ", attr->Name(), attr->Value());
34 parser->addAttribute(attr->Name(), attr->Value());
35 attr = attr->Next();
  /external/webkit/Source/WebCore/dom/
Attribute.cpp 27 #include "Attr.h"
34 typedef HashMap<Attribute*, Attr*> AttributeAttrMap;
46 Attr* Attribute::attr() const function in class:WebCore::Attribute
57 PassRefPtr<Attr> Attribute::createAttrIfNeeded(Element* e)
59 RefPtr<Attr> r;
65 r = Attr::create(e, e->document(), this); // This will end up calling Attribute::bindAttr.
72 void Attribute::bindAttr(Attr* attr)
76 attributeAttrMap().set(this, attr);
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
sysfs.h 31 #define __ATTR(_name,_mode,_show,_store) { .attr = {.name = __stringify(_name), .mode = _mode, .owner = THIS_MODULE }, .show = _show, .store = _store, }
33 #define __ATTR_RO(_name) { .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, .show = _name##_show, }
35 #define __ATTR_NULL { .attr = { .name = NULL } }
37 #define attr_name(_attr) (_attr).attr.name
42 struct attribute attr; member in struct:bin_attribute
47 int (*mmap)(struct kobject *, struct bin_attribute *attr,

Completed in 529 milliseconds

1 2 3 45 6 7 8 91011>>