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

1 2 3 4 5 6 78 91011>>

  /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/webkit/WebCore/html/
HTMLIsIndexElement.h 37 virtual void parseMappedAttribute(MappedAttribute *attr);
HTMLVideoElement.cpp 94 void HTMLVideoElement::parseMappedAttribute(MappedAttribute* attr)
96 const QualifiedName& attrName = attr->name();
99 m_posterURL = document()->completeURL(attr->value());
112 addCSSLength(attr, CSSPropertyWidth, attr->value());
114 addCSSLength(attr, CSSPropertyHeight, attr->value());
116 HTMLMediaElement::parseMappedAttribute(attr);
175 bool HTMLVideoElement::isURLAttribute(Attribute* attr) const
177 return attr->name() == posterAttr
    [all...]
  /external/webkit/WebCore/svg/
SVGFEComponentTransferElement.cpp 26 #include "Attr.h"
47 void SVGFEComponentTransferElement::parseMappedAttribute(MappedAttribute* attr)
49 const String& value = attr->value();
50 if (attr->name() == SVGNames::inAttr)
53 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
SVGFEImageElement.cpp 27 #include "Attr.h"
71 void SVGFEImageElement::parseMappedAttribute(MappedAttribute* attr)
73 const String& value = attr->value();
74 if (attr->name() == SVGNames::preserveAspectRatioAttr)
77 if (SVGURIReference::parseMappedAttribute(attr)) {
81 if (SVGLangSpace::parseMappedAttribute(attr))
83 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
86 SVGFilterPrimitiveStandardAttributes::parseMappedAttribute(attr);
SVGMaskElement.cpp 71 void SVGMaskElement::parseMappedAttribute(MappedAttribute* attr)
73 if (attr->name() == SVGNames::maskUnitsAttr) {
74 if (attr->value() == "userSpaceOnUse")
76 else if (attr->value() == "objectBoundingBox")
78 } else if (attr->name() == SVGNames::maskContentUnitsAttr) {
79 if (attr->value() == "userSpaceOnUse")
81 else if (attr->value() == "objectBoundingBox")
83 } else if (attr->name() == SVGNames::xAttr)
84 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
85 else if (attr->name() == SVGNames::yAttr
    [all...]
SVGStyleElement.cpp 80 void SVGStyleElement::parseMappedAttribute(MappedAttribute* attr)
82 if (attr->name() == SVGNames::titleAttr && m_sheet)
83 m_sheet->setTitle(attr->value());
85 if (SVGLangSpace::parseMappedAttribute(attr))
87 SVGElement::parseMappedAttribute(attr);
  /external/webkit/WebCore/wml/
WMLOnEventElement.cpp 44 void WMLOnEventElement::parseMappedAttribute(MappedAttribute* attr)
46 if (attr->name() == HTMLNames::typeAttr) {
47 String parsedValue = parseValueForbiddingVariableReferences(attr->value());
60 WMLElement::parseMappedAttribute(attr);
WMLSetvarElement.cpp 43 void WMLSetvarElement::parseMappedAttribute(MappedAttribute* attr)
45 if (attr->name() == HTMLNames::nameAttr) {
46 if (!isValidVariableName(parseValueSubstitutingVariableReferences(attr->value(), WMLErrorInvalidVariableName))) {
51 WMLElement::parseMappedAttribute(attr);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
attrgetownerelement02.java 41 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#Attr-ownerElement">http://www.w3.org/TR/DOM-Level-2-Core/core#Attr-ownerElement</a>
75 Attr attr; local
76 Attr newAttr;
79 attr = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att");
80 newAttr = element.setAttributeNodeNS(attr);
81 ownerElement = attr.getOwnerElement();
namednodemapsetnameditemns09.java 75 Attr attr; local
81 attr = doc.createAttributeNS("http://www.w3.org/DOM/Test", "test");
86 newNode = entities.setNamedItemNS(attr);
96 newNode = notations.setNamedItemNS(attr);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1OpenType.java 54 AttributeType attr = (AttributeType) pool.get(oid); local
55 if (attr == null || (!attr.type.checkTag(in.tag))) {
58 in.content = attr.type.decode(in);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
plugin.h 40 extern void register_attribute (const struct attribute_spec *attr);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
plugin.h 40 extern void register_attribute (const struct attribute_spec *attr);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/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, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/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, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/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, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/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, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/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, };
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/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, };
  /system/extras/tests/bionic/libc/common/
test_pthread_getcpuclockid.c 72 pthread_attr_t attr; local
75 pthread_attr_init(&attr);
76 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
79 pthread_create( &threads[nn], &attr, thread_func, (void*)nn );
  /external/qemu/
compatfd.c 72 pthread_attr_t attr; local
91 pthread_attr_init(&attr);
92 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
94 pthread_create(&tid, &attr, sigwait_compat, info);
96 pthread_attr_destroy(&attr);
  /frameworks/base/core/java/android/util/
StateSet.java 158 case R.attr.state_window_focused:
161 case R.attr.state_pressed:
164 case R.attr.state_selected:
167 case R.attr.state_focused:
170 case R.attr.state_enabled:
  /frameworks/base/opengl/tests/configdump/
configdump.cpp 79 for (int attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) {
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
82 printf("\t%-32s: %10d (0x%08x)\n", attributes[attr].name, value, value);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_sim_common.c 503 struct eap_sim_attrs *attr, int aka, int encr)
508 os_memset(attr, 0, sizeof(*attr));
509 attr->id_req = NO_ID_REQ;
510 attr->notification = -1;
511 attr->counter = -1;
512 attr->selected_version = -1;
513 attr->client_error_code = -1;
549 attr->rand = apos;
550 attr->num_chal = alen / GSM_RAND_LEN
    [all...]

Completed in 609 milliseconds

1 2 3 4 5 6 78 91011>>