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

1 23 4 5 6 7 8 91011>>

  /development/ndk/platforms/android-9/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/ppp/pppd/plugins/radius/
dict.c 46 DICT_ATTR *attr; local
182 if ((attr =
190 strcpy (attr->name, namestr);
192 attr->vendorcode = vdict->vendorcode;
194 attr->vendorcode = VENDOR_NONE;
196 attr->value = value;
197 attr->type = type;
201 attr->next = vdict->attributes;
202 vdict->attributes = attr;
204 attr->next = dictionary_attributes
297 DICT_ATTR *attr; local
334 DICT_ATTR *attr; local
    [all...]
  /external/webkit/WebCore/svg/
SVGTextPositioningElement.cpp 48 void SVGTextPositioningElement::parseMappedAttribute(MappedAttribute* attr)
50 if (attr->name() == SVGNames::xAttr)
51 xBaseValue()->parse(attr->value(), LengthModeWidth);
52 else if (attr->name() == SVGNames::yAttr)
53 yBaseValue()->parse(attr->value(), LengthModeHeight);
54 else if (attr->name() == SVGNames::dxAttr)
55 dxBaseValue()->parse(attr->value(), LengthModeWidth);
56 else if (attr->name() == SVGNames::dyAttr)
57 dyBaseValue()->parse(attr->value(), LengthModeHeight);
58 else if (attr->name() == SVGNames::rotateAttr
    [all...]
SVGFEMergeNodeElement.cpp 39 void SVGFEMergeNodeElement::parseMappedAttribute(MappedAttribute* attr)
41 const String& value = attr->value();
42 if (attr->name() == SVGNames::inAttr)
45 SVGElement::parseMappedAttribute(attr);
SVGCircleElement.cpp 49 void SVGCircleElement::parseMappedAttribute(MappedAttribute* attr)
51 if (attr->name() == SVGNames::cxAttr)
52 setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
53 else if (attr->name() == SVGNames::cyAttr)
54 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
55 else if (attr->name() == SVGNames::rAttr) {
56 setRBaseValue(SVGLength(LengthModeOther, attr->value()));
60 if (SVGTests::parseMappedAttribute(attr))
62 if (SVGLangSpace::parseMappedAttribute(attr))
64 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
    [all...]
SVGImageElement.cpp 56 void SVGImageElement::parseMappedAttribute(MappedAttribute *attr)
58 if (attr->name() == SVGNames::xAttr)
59 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
60 else if (attr->name() == SVGNames::yAttr)
61 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
62 else if (attr->name() == SVGNames::preserveAspectRatioAttr)
63 SVGPreserveAspectRatio::parsePreserveAspectRatio(this, attr->value());
64 else if (attr->name() == SVGNames::widthAttr) {
65 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value()));
66 addCSSProperty(attr, CSSPropertyWidth, attr->value())
    [all...]
SVGLangSpace.cpp 66 bool SVGLangSpace::parseMappedAttribute(MappedAttribute* attr)
68 if (attr->name().matches(XMLNames::langAttr)) {
69 setXmllang(attr->value());
71 } else if (attr->name().matches(XMLNames::spaceAttr)) {
72 setXmlspace(attr->value());
SVGSymbolElement.cpp 42 void SVGSymbolElement::parseMappedAttribute(MappedAttribute* attr)
44 if (SVGLangSpace::parseMappedAttribute(attr))
46 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
48 if (SVGFitToViewBox::parseMappedAttribute(document(), attr))
51 SVGStyledElement::parseMappedAttribute(attr);
SVGMarkerElement.cpp 64 void SVGMarkerElement::parseMappedAttribute(MappedAttribute* attr)
66 if (attr->name() == SVGNames::markerUnitsAttr) {
67 if (attr->value() == "userSpaceOnUse")
69 else if (attr->value() == "strokeWidth")
71 } else if (attr->name() == SVGNames::refXAttr)
72 setRefXBaseValue(SVGLength(LengthModeWidth, attr->value()));
73 else if (attr->name() == SVGNames::refYAttr)
74 setRefYBaseValue(SVGLength(LengthModeHeight, attr->value()));
75 else if (attr->name() == SVGNames::markerWidthAttr)
76 setMarkerWidthBaseValue(SVGLength(LengthModeWidth, attr->value()))
    [all...]
SVGEllipseElement.cpp 50 void SVGEllipseElement::parseMappedAttribute(MappedAttribute* attr)
52 if (attr->name() == SVGNames::cxAttr)
53 setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
54 else if (attr->name() == SVGNames::cyAttr)
55 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
56 else if (attr->name() == SVGNames::rxAttr) {
57 setRxBaseValue(SVGLength(LengthModeWidth, attr->value()));
60 } else if (attr->name() == SVGNames::ryAttr) {
61 setRyBaseValue(SVGLength(LengthModeHeight, attr->value()));
65 if (SVGTests::parseMappedAttribute(attr))
    [all...]
SVGLineElement.cpp 50 void SVGLineElement::parseMappedAttribute(MappedAttribute* attr)
52 if (attr->name() == SVGNames::x1Attr)
53 setX1BaseValue(SVGLength(LengthModeWidth, attr->value()));
54 else if (attr->name() == SVGNames::y1Attr)
55 setY1BaseValue(SVGLength(LengthModeHeight, attr->value()));
56 else if (attr->name() == SVGNames::x2Attr)
57 setX2BaseValue(SVGLength(LengthModeWidth, attr->value()));
58 else if (attr->name() == SVGNames::y2Attr)
59 setY2BaseValue(SVGLength(LengthModeHeight, attr->value()));
61 if (SVGTests::parseMappedAttribute(attr))
    [all...]
  /external/webkit/WebCore/wml/
WMLElement.cpp 61 void WMLElement::parseMappedAttribute(MappedAttribute* attr)
63 if (attr->name() == idAttributeName()
64 || attr->name() == HTMLNames::classAttr
65 || attr->name() == HTMLNames::styleAttr)
66 return StyledElement::parseMappedAttribute(attr);
68 if (attr->name() == HTMLNames::alignAttr) {
69 if (equalIgnoringCase(attr->value(), "middle"))
70 addCSSProperty(attr, CSSPropertyTextAlign, "center");
72 addCSSProperty(attr, CSSPropertyTextAlign, attr->value())
    [all...]
  /external/webkit/WebCore/html/
HTMLFontElement.cpp 133 void HTMLFontElement::parseMappedAttribute(MappedAttribute *attr)
135 if (attr->name() == sizeAttr) {
137 if (cssValueFromFontSizeNumber(attr->value(), size))
138 addCSSProperty(attr, CSSPropertyFontSize, size);
139 } else if (attr->name() == colorAttr) {
140 addCSSColor(attr, CSSPropertyColor, attr->value());
141 } else if (attr->name() == faceAttr) {
142 addCSSProperty(attr, CSSPropertyFontFamily, attr->value())
    [all...]
HTMLImageElement.cpp 80 void HTMLImageElement::parseMappedAttribute(MappedAttribute* attr)
82 const QualifiedName& attrName = attr->name();
89 addCSSLength(attr, CSSPropertyWidth, attr->value());
91 addCSSLength(attr, CSSPropertyHeight, attr->value());
94 addCSSLength(attr, CSSPropertyBorderWidth, attr->value().toInt() ? attr->value() : "0");
95 addCSSProperty(attr, CSSPropertyBorderTopStyle, CSSValueSolid)
    [all...]
HTMLUListElement.cpp 49 void HTMLUListElement::parseMappedAttribute(MappedAttribute *attr)
51 if (attr->name() == typeAttr)
52 addCSSProperty(attr, CSSPropertyListStyleType, attr->value());
54 HTMLElement::parseMappedAttribute(attr);
  /development/ndk/platforms/android-8/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/emma/core/java12/com/vladium/emma/report/html/doc/
AttributeSet.java 37 public abstract AttributeSet set (Attribute attr, String value);
38 public abstract AttributeSet set (Attribute attr, int value);
59 final Attribute attr = (Attribute) entry.getKey (); local
67 out.write (attr.getName ());
88 public AttributeSet set (final Attribute attr, final String value) // null removes?
90 m_attrMap.put (attr, value);
95 public AttributeSet set (final Attribute attr, final int value)
97 m_attrMap.put (attr, new Integer (value)); // TODO: use int factory here
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/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-8/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/bindings/js/
ScriptEventListener.cpp 53 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Node* node, Attribute* attr)
56 ASSERT(attr);
57 if (attr->isNull())
70 if (!scriptController->xssAuditor()->canCreateInlineEventListener(attr->localName().string(), attr->value())) {
83 return JSLazyEventListener::create(attr->localName().string(), eventParameterName(node->isSVGElement()), attr->value(), node, sourceURL, lineNumber, wrapper, mainThreadNormalWorld());
86 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Frame* frame, Attribute* attr)
91 ASSERT(attr);
92 if (attr->isNull()
    [all...]
  /system/extras/tests/bionic/libc/bionic/
test_mutex.c 59 pthread_mutexattr_t attr; local
62 expect( pthread_mutexattr_init( &attr ), 0 );
64 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_NORMAL ), 0 );
65 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
68 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_ERRORCHECK ), 0 );
69 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
72 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE ), 0 );
73 expect( pthread_mutexattr_gettype( &attr, &attr_type ), 0 );
77 expect( pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_NORMAL ), 0 );
78 expect( pthread_mutex_init( &lock, &attr ), 0 )
    [all...]
  /external/webkit/WebCore/dom/
StyledElement.cpp 69 CSSMappedAttributeDeclaration* StyledElement::getMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr)
73 return mappedAttributeDecls->get(MappedAttributeKey(entryType, attr->name().localName().impl(), attr->value().impl()));
83 void StyledElement::setMappedAttributeDecl(MappedAttributeEntry entryType, Attribute* attr, CSSMappedAttributeDeclaration* decl)
87 mappedAttributeDecls->set(MappedAttributeKey(entryType, attr->name().localName().impl(), attr->value().impl()), decl);
146 void StyledElement::attributeChanged(Attribute* attr, bool preserveDecls)
148 if (!attr->isMappedAttribute()) {
149 Element::attributeChanged(attr, preserveDecls);
153 MappedAttribute* mappedAttr = static_cast<MappedAttribute*>(attr);
    [all...]
  /external/quake/quake/src/WinQuake/
quake-shareware.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(644,root,root) $3/help.txt
56 %attr(644,root,root) $3/licinfo.txt
57 %attr(644,root,root) $3/manual.txt
58 %attr(644,root,root) $3/readme.tx
    [all...]
  /development/ndk/platforms/android-3/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...]
  /development/ndk/platforms/android-5/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...]

Completed in 781 milliseconds

1 23 4 5 6 7 8 91011>>