/external/bouncycastle/src/main/java/org/bouncycastle/x509/ |
X509Attribute.java | 17 Attribute attr; field in class:X509Attribute 25 this.attr = Attribute.getInstance(at); 39 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value)); 53 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value)); 58 return attr.getAttrType().getId(); 63 ASN1Set s = attr.getAttrValues(); 76 return attr.toASN1Object();
|
/external/webkit/WebCore/svg/ |
SVGPolyElement.cpp | 63 void SVGPolyElement::parseMappedAttribute(MappedAttribute* attr) 65 const AtomicString& value = attr->value(); 66 if (attr->name() == SVGNames::pointsAttr) { 75 if (SVGTests::parseMappedAttribute(attr)) 77 if (SVGLangSpace::parseMappedAttribute(attr)) 79 if (SVGExternalResourcesRequired::parseMappedAttribute(attr)) 81 SVGStyledTransformableElement::parseMappedAttribute(attr);
|
SVGTests.cpp | 96 bool SVGTests::parseMappedAttribute(MappedAttribute* attr) 98 if (attr->name() == SVGNames::requiredFeaturesAttr) { 99 requiredFeatures()->reset(attr->value()); 101 } else if (attr->name() == SVGNames::requiredExtensionsAttr) { 102 requiredExtensions()->reset(attr->value()); 104 } else if (attr->name() == SVGNames::systemLanguageAttr) { 105 systemLanguage()->reset(attr->value());
|
SVGRectElement.cpp | 51 void SVGRectElement::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())); 57 else if (attr->name() == SVGNames::rxAttr) { 58 setRxBaseValue(SVGLength(LengthModeWidth, attr->value())); 61 } else if (attr->name() == SVGNames::ryAttr) { 62 setRyBaseValue(SVGLength(LengthModeHeight, attr->value())); 65 } else if (attr->name() == SVGNames::widthAttr) [all...] |
SVGFETileElement.cpp | 26 #include "Attr.h" 42 void SVGFETileElement::parseMappedAttribute(MappedAttribute* attr) 44 const String& value = attr->value(); 45 if (attr->name() == SVGNames::inAttr) 48 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
|
SVGStopElement.cpp | 44 void SVGStopElement::parseMappedAttribute(MappedAttribute* attr) 46 if (attr->name() == SVGNames::offsetAttr) { 47 const String& value = attr->value(); 55 SVGStyledElement::parseMappedAttribute(attr);
|
SVGZoomAndPan.cpp | 51 bool SVGZoomAndPan::parseMappedAttribute(MappedAttribute* attr) 53 if (attr->name() == SVGNames::zoomAndPanAttr) { 54 const UChar* start = attr->value().characters(); 55 const UChar* end = start + attr->value().length();
|
SVGFEDisplacementMapElement.cpp | 55 void SVGFEDisplacementMapElement::parseMappedAttribute(MappedAttribute* attr) 57 const String& value = attr->value(); 58 if (attr->name() == SVGNames::xChannelSelectorAttr) 60 else if (attr->name() == SVGNames::yChannelSelectorAttr) 62 else if (attr->name() == SVGNames::inAttr) 64 else if (attr->name() == SVGNames::in2Attr) 66 else if (attr->name() == SVGNames::scaleAttr) 69 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
|
SVGFETurbulenceElement.cpp | 47 void SVGFETurbulenceElement::parseMappedAttribute(MappedAttribute* attr) 49 const String& value = attr->value(); 50 if (attr->name() == SVGNames::typeAttr) { 55 } else if (attr->name() == SVGNames::stitchTilesAttr) { 60 } else if (attr->name() == SVGNames::baseFrequencyAttr) { 66 } else if (attr->name() == SVGNames::seedAttr) 68 else if (attr->name() == SVGNames::numOctavesAttr) 71 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
|
SVGFilterPrimitiveStandardAttributes.cpp | 51 void SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(MappedAttribute* attr) 53 const AtomicString& value = attr->value(); 54 if (attr->name() == SVGNames::xAttr) 56 else if (attr->name() == SVGNames::yAttr) 58 else if (attr->name() == SVGNames::widthAttr) 60 else if (attr->name() == SVGNames::heightAttr) 62 else if (attr->name() == SVGNames::resultAttr) 65 return SVGStyledElement::parseMappedAttribute(attr);
|
SVGImageLoader.cpp | 55 String SVGImageLoader::sourceURI(const AtomicString& attr) const 57 return deprecatedParseURL(KURL(element()->baseURI(), attr).string());
|
/external/wpa_supplicant/ |
eap_sake_common.c | 23 static int eap_sake_parse_add_attr(struct eap_sake_parse_attr *attr, 36 attr->rand_s = pos + 2; 45 attr->rand_p = pos + 2; 54 attr->mic_s = pos + 2; 63 attr->mic_p = pos + 2; 67 attr->serverid = pos + 2; 68 attr->serverid_len = pos[1] - 2; 72 attr->peerid = pos + 2; 73 attr->peerid_len = pos[1] - 2; 77 attr->spi_s = pos + 2 [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
pthread.h | 110 int pthread_attr_init(pthread_attr_t * attr); 111 int pthread_attr_destroy(pthread_attr_t * attr); 113 int pthread_attr_setdetachstate(pthread_attr_t * attr, int state); 114 int pthread_attr_getdetachstate(pthread_attr_t const * attr, int * state); 116 int pthread_attr_setschedpolicy(pthread_attr_t * attr, int policy); 117 int pthread_attr_getschedpolicy(pthread_attr_t const * attr, int * policy); 119 int pthread_attr_setschedparam(pthread_attr_t * attr, struct sched_param const * param); 120 int pthread_attr_getschedparam(pthread_attr_t const * attr, struct sched_param * param); 122 int pthread_attr_setstacksize(pthread_attr_t * attr, size_t stack_size); 123 int pthread_attr_getstacksize(pthread_attr_t const * attr, size_t * stack_size) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/ |
pthread.h | 110 int pthread_attr_init(pthread_attr_t * attr); 111 int pthread_attr_destroy(pthread_attr_t * attr); 113 int pthread_attr_setdetachstate(pthread_attr_t * attr, int state); 114 int pthread_attr_getdetachstate(pthread_attr_t const * attr, int * state); 116 int pthread_attr_setschedpolicy(pthread_attr_t * attr, int policy); 117 int pthread_attr_getschedpolicy(pthread_attr_t const * attr, int * policy); 119 int pthread_attr_setschedparam(pthread_attr_t * attr, struct sched_param const * param); 120 int pthread_attr_getschedparam(pthread_attr_t const * attr, struct sched_param * param); 122 int pthread_attr_setstacksize(pthread_attr_t * attr, size_t stack_size); 123 int pthread_attr_getstacksize(pthread_attr_t const * attr, size_t * stack_size) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/ |
pthread.h | 110 int pthread_attr_init(pthread_attr_t * attr); 111 int pthread_attr_destroy(pthread_attr_t * attr); 113 int pthread_attr_setdetachstate(pthread_attr_t * attr, int state); 114 int pthread_attr_getdetachstate(pthread_attr_t const * attr, int * state); 116 int pthread_attr_setschedpolicy(pthread_attr_t * attr, int policy); 117 int pthread_attr_getschedpolicy(pthread_attr_t const * attr, int * policy); 119 int pthread_attr_setschedparam(pthread_attr_t * attr, struct sched_param const * param); 120 int pthread_attr_getschedparam(pthread_attr_t const * attr, struct sched_param * param); 122 int pthread_attr_setstacksize(pthread_attr_t * attr, size_t stack_size); 123 int pthread_attr_getstacksize(pthread_attr_t const * attr, size_t * stack_size) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
pthread.h | 110 int pthread_attr_init(pthread_attr_t * attr); 111 int pthread_attr_destroy(pthread_attr_t * attr); 113 int pthread_attr_setdetachstate(pthread_attr_t * attr, int state); 114 int pthread_attr_getdetachstate(pthread_attr_t const * attr, int * state); 116 int pthread_attr_setschedpolicy(pthread_attr_t * attr, int policy); 117 int pthread_attr_getschedpolicy(pthread_attr_t const * attr, int * policy); 119 int pthread_attr_setschedparam(pthread_attr_t * attr, struct sched_param const * param); 120 int pthread_attr_getschedparam(pthread_attr_t const * attr, struct sched_param * param); 122 int pthread_attr_setstacksize(pthread_attr_t * attr, size_t stack_size); 123 int pthread_attr_getstacksize(pthread_attr_t const * attr, size_t * stack_size) [all...] |
/external/webkit/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];
|
/packages/apps/Gallery3D/src/com/cooliris/app/ |
Res.java | 24 public static final R.attr attr = new R.attr(); field in class:Res
|
/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 | 277 int wps_process_cred(struct wps_parse_attr *attr, 283 if (wps_process_cred_network_idx(cred, attr->network_idx) || 284 wps_process_cred_ssid(cred, attr->ssid, attr->ssid_len) || 285 wps_process_cred_auth_type(cred, attr->auth_type) || 286 wps_process_cred_encr_type(cred, attr->encr_type) || 287 wps_process_cred_network_key_idx(cred, attr->network_key_idx) || 288 wps_process_cred_network_key(cred, attr->network_key, 289 attr->network_key_len) || 290 wps_process_cred_mac_addr(cred, attr->mac_addr) | [all...] |
/device/samsung/crespo/alsa-utils/alsactl/ |
init_sysfs.c | 73 struct sysfs_attr *attr; local 96 attr = malloc(sizeof(struct sysfs_attr)); 97 if (attr == NULL) 99 memset(attr, 0x00, sizeof(struct sysfs_attr)); 100 strlcpy(attr->path, path, sizeof(attr->path)); 102 list_add(&attr->node, &attr_list); 121 strlcpy(attr->value_local, &pos[1], sizeof(attr->value_local)); 122 attr->value = attr->value_local [all...] |
/system/core/init/ |
devices.h | 24 extern int add_dev_perms(const char *name, const char *attr,
|
/external/webkit/WebCore/html/ |
HTMLElement.cpp | 144 void HTMLElement::parseMappedAttribute(MappedAttribute *attr) 146 if (attr->name() == idAttributeName() || attr->name() == classAttr || attr->name() == styleAttr) 147 return StyledElement::parseMappedAttribute(attr); 150 if (attr->name() == alignAttr) { 151 if (equalIgnoringCase(attr->value(), "middle")) 152 addCSSProperty(attr, CSSPropertyTextAlign, "center"); 154 addCSSProperty(attr, CSSPropertyTextAlign, attr->value()) [all...] |
/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,
|