HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 226 - 250 of 1624) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/lib/MC/
MCLDInput.cpp 18 m_pAttr(const_cast<Attribute*>(pProxy.attr())),
28 m_pAttr(const_cast<Attribute*>(pProxy.attr())),
  /packages/apps/Contacts/src/com/android/contacts/util/
ThemeUtils.java 39 return getAttribute(theme, android.R.attr.selectableItemBackground);
46 return getAttribute(theme, android.R.attr.activatedBackgroundIndicator);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_aka.c 263 struct eap_sim_attrs *attr)
265 if (attr->next_pseudonym) {
267 data->pseudonym = os_malloc(attr->next_pseudonym_len);
273 os_memcpy(data->pseudonym, attr->next_pseudonym,
274 attr->next_pseudonym_len);
275 data->pseudonym_len = attr->next_pseudonym_len;
282 if (attr->next_reauth_id) {
284 data->reauth_id = os_malloc(attr->next_reauth_id_len);
290 os_memcpy(data->reauth_id, attr->next_reauth_id,
291 attr->next_reauth_id_len)
1149 struct eap_sim_attrs attr; local
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPatternElement.cpp 74 void SVGPatternElement::parseMappedAttribute(Attribute* attr)
76 if (attr->name() == SVGNames::patternUnitsAttr) {
77 if (attr->value() == "userSpaceOnUse")
79 else if (attr->value() == "objectBoundingBox")
81 } else if (attr->name() == SVGNames::patternContentUnitsAttr) {
82 if (attr->value() == "userSpaceOnUse")
84 else if (attr->value() == "objectBoundingBox")
86 } else if (attr->name() == SVGNames::patternTransformAttr) {
88 if (!SVGTransformable::parseTransformAttribute(newList, attr->value()))
93 } else if (attr->name() == SVGNames::xAttr
    [all...]
SVGCircleElement.cpp 54 void SVGCircleElement::parseMappedAttribute(Attribute* attr)
56 if (attr->name() == SVGNames::cxAttr)
57 setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
58 else if (attr->name() == SVGNames::cyAttr)
59 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
60 else if (attr->name() == SVGNames::rAttr) {
61 setRBaseValue(SVGLength(LengthModeOther, attr->value()));
65 if (SVGTests::parseMappedAttribute(attr))
67 if (SVGLangSpace::parseMappedAttribute(attr))
69 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
    [all...]
SVGRectElement.cpp 59 void SVGRectElement::parseMappedAttribute(Attribute* attr)
61 if (attr->name() == SVGNames::xAttr)
62 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
63 else if (attr->name() == SVGNames::yAttr)
64 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
65 else if (attr->name() == SVGNames::rxAttr) {
66 setRxBaseValue(SVGLength(LengthModeWidth, attr->value()));
69 } else if (attr->name() == SVGNames::ryAttr) {
70 setRyBaseValue(SVGLength(LengthModeHeight, attr->value()));
73 } else if (attr->name() == SVGNames::widthAttr)
    [all...]
SVGFEMergeNodeElement.cpp 47 void SVGFEMergeNodeElement::parseMappedAttribute(Attribute* attr)
49 const String& value = attr->value();
50 if (attr->name() == SVGNames::inAttr)
53 SVGElement::parseMappedAttribute(attr);
SVGFETileElement.cpp 47 void SVGFETileElement::parseMappedAttribute(Attribute* attr)
49 const String& value = attr->value();
50 if (attr->name() == SVGNames::inAttr)
53 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
  /external/apache-xml/src/main/java/org/apache/xalan/serialize/
SerializerUtils.java 50 * @param attr Attribute node to add to SerializationHandler.
54 public static void addAttribute(SerializationHandler handler, int attr)
60 DTM dtm = transformer.getXPathContext().getDTM(attr);
62 if (SerializerUtils.isDefinedNSDecl(handler, attr, dtm))
65 String ns = dtm.getNamespaceURI(attr);
75 dtm.getLocalName(attr),
76 dtm.getNodeName(attr),
78 dtm.getNodeValue(attr), false);
210 * @param attr Namespace attribute node
211 * @param dtm The DTM that owns attr
    [all...]
  /external/libxslt/libxslt/
attributes.c 89 xmlNodePtr attr; /* the xsl:attribute definition */ member in struct:_xsltAttrElem
102 * @attr: the new xsl:attribute node
109 xsltNewAttrElem(xmlNodePtr attr) {
119 cur->attr = attr;
125 * @attr: an XSLT AttrElem
127 * Free up the memory allocated by @attr
130 xsltFreeAttrElem(xsltAttrElemPtr attr) {
131 xmlFree(attr);
159 * @attr: the new xsl:attribute nod
657 xmlAttrPtr attr; local
    [all...]
  /external/linux-tools-perf/
builtin-record.c 163 struct perf_event_attr *attr = &evsel->attr; local
166 attr->inherit = !no_inherit;
167 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
171 attr->sample_type |= PERF_SAMPLE_IP | PERF_SAMPLE_TID;
174 attr->sample_type |= PERF_SAMPLE_ID;
180 if (!attr->sample_period || (user_freq != UINT_MAX &&
183 attr->sample_type |= PERF_SAMPLE_PERIOD;
184 attr->freq = 1;
185 attr->sample_freq = freq
259 struct perf_event_attr *attr = &pos->attr; local
    [all...]
  /bionic/libc/bionic/
pthread-atfork.c 77 pthread_mutexattr_t attr; local
88 pthread_mutexattr_init(&attr);
89 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
90 pthread_mutex_init(&handler_mutex, &attr);
  /bionic/libc/kernel/common/linux/
sysdev.h 35 struct attribute attr; member in struct:sysdev_class_attribute
40 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
59 struct attribute attr; member in struct:sysdev_attribute
64 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /development/ndk/platforms/android-3/include/linux/
sysdev.h 30 struct attribute attr; member in struct:sysdev_class_attribute
35 #define SYSDEV_CLASS_ATTR(_name,_mode,_show,_store) struct sysdev_class_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
53 struct attribute attr; member in struct:sysdev_attribute
58 #define SYSDEV_ATTR(_name,_mode,_show,_store) struct sysdev_attribute attr_##_name = { .attr = {.name = __stringify(_name), .mode = _mode }, .show = _show, .store = _store, };
  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_x.cc 32 XWindowAttributes attr; local
33 if (XGetWindowAttributes(display, win, &attr) == 0) {
38 display, win, 0, 0, attr.width, attr.height, AllPlanes, ZPixmap);
  /external/expat/examples/
outline.c 49 start(void *data, const char *el, const char **attr)
58 for (i = 0; attr[i]; i += 2) {
59 printf(" %s='%s'", attr[i], attr[i + 1]);
  /external/kernel-headers/original/linux/
sysdev.h 41 struct attribute attr; member in struct:sysdev_class_attribute
48 .attr = {.name = __stringify(_name), .mode = _mode }, \
95 struct attribute attr; member in struct:sysdev_attribute
103 .attr = {.name = __stringify(_name), .mode = _mode }, \
  /external/openssl/crypto/x509/
x509_req.c 188 X509_ATTRIBUTE *attr; local
200 attr = X509_REQ_get_attr(req, idx);
201 if(attr->single) ext = attr->value.single;
202 else if(sk_ASN1_TYPE_num(attr->value.set))
203 ext = sk_ASN1_TYPE_value(attr->value.set, 0);
222 X509_ATTRIBUTE *attr = NULL; local
232 if(!(attr = X509_ATTRIBUTE_new())) goto err;
233 if(!(attr->value.set = sk_ASN1_TYPE_new_null())) goto err;
234 if(!sk_ASN1_TYPE_push(attr->value.set, at)) goto err
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_sysmutex.c 45 pthread_mutexattr_t attr; local
50 pthread_mutexattr_init(&attr);
54 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
56 if ( pthread_mutex_init(&mutex->id, &attr) != 0 ) {
  /external/qemu/elff/
dwarf_die.cc 74 bool DIEObject::get_attrib(Dwarf_At at_id, DIEAttrib* attr) const {
87 at_abbr = at_abbr->process(&attr->at_, &attr->form_);
88 die_attr = parent_cu()->process_attrib(die_attr, attr->form_, &attr->value_);
89 if (at_id == attr->at()) {
204 DIEAttrib attr; local
205 at_abbr = at_abbr->process(&attr.at_, &attr.form_);
206 die_attr = parent_cu()->process_attrib(die_attr, attr.form(), &attr.value_);
    [all...]
  /external/quake/quake/src/WinQuake/
quake.spec.sh 49 %attr(644,root,root) $3/README
50 %attr(4755,root,root) $3/squake
51 %attr(4755,root,root) $3/glquake
52 %attr(4755,root,root) $3/glquake.glx
53 %attr(4755,root,root) $3/glquake.3dfxgl
54 %attr(755,root,root) $3/quake.x11
55 %attr(755,root,root) /usr/lib/lib3dfxgl.so
56 %attr(755,root,root) /usr/lib/libMesaGL.so.2.6
  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked3.c 46 pthread_mutexattr_t attr; local
47 r = pthread_mutexattr_init( &attr );
49 r = pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
51 r= pthread_mutex_init(&mx, &attr); assert(!r);
  /external/webkit/Source/WebCore/wml/
WMLOnEventElement.cpp 49 void WMLOnEventElement::parseMappedAttribute(Attribute* attr)
51 if (attr->name() == HTMLNames::typeAttr) {
52 String parsedValue = parseValueForbiddingVariableReferences(attr->value());
65 WMLElement::parseMappedAttribute(attr);
WMLSetvarElement.cpp 48 void WMLSetvarElement::parseMappedAttribute(Attribute* attr)
50 if (attr->name() == HTMLNames::nameAttr) {
51 if (!isValidVariableName(parseValueSubstitutingVariableReferences(attr->value(), WMLErrorInvalidVariableName))) {
56 WMLElement::parseMappedAttribute(attr);
  /hardware/ti/wpan/tools/BluetoothSCOApp/gen/com/ti/bluetoothSCOapp/
R.java 11 public static final class attr { class in class:R

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 91011>>