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

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
device.h 62 struct attribute attr; member in struct:bus_attribute
88 struct attribute attr; member in struct:driver_attribute
120 struct attribute attr; member in struct:class_attribute
128 struct attribute attr; member in struct:class_device_attribute
163 struct attribute attr; member in struct:device_attribute
164 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
166 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
  /system/core/sdcard/
sdcard.c 144 void attr_from_stat(struct fuse_attr *attr, struct stat *s)
146 attr->ino = s->st_ino;
147 attr->size = s->st_size;
148 attr->blocks = s->st_blocks;
149 attr->atime = s->st_atime;
150 attr->mtime = s->st_mtime;
151 attr->ctime = s->st_ctime;
152 attr->atimensec = s->st_atime_nsec;
153 attr->mtimensec = s->st_mtime_nsec;
154 attr->ctimensec = s->st_ctime_nsec
    [all...]
  /external/webkit/WebCore/html/
HTMLViewSourceDocument.cpp 134 RefPtr<Attribute> attr = 0; local
144 attr = token->attrs->attributeItem(currAttr++);
146 attr = 0;
148 if (attr) {
150 String name = attr->name().toString();
157 const String& value = attr->value().string();
162 if (equalIgnoringCase(token->tagName, "base") && equalIgnoringCase(attr->name().localName(), "href")) {
170 if (equalIgnoringCase(attr->name().localName(), "src") || equalIgnoringCase(attr->name().localName(), "href"))
HTMLAnchorElement.cpp 271 void HTMLAnchorElement::parseMappedAttribute(MappedAttribute *attr)
273 if (attr->name() == hrefAttr) {
275 setIsLink(!attr->isNull());
279 String parsedURL = deprecatedParseURL(attr->value());
286 attr->setValue(nullAtom);
289 } else if (attr->name() == nameAttr ||
290 attr->name() == titleAttr) {
292 } else if (attr->name() == relAttr)
293 setRel(attr->value());
295 HTMLElement::parseMappedAttribute(attr);
    [all...]
HTMLMediaElement.cpp 155 void HTMLMediaElement::attributeChanged(Attribute* attr, bool preserveDecls)
157 HTMLElement::attributeChanged(attr, preserveDecls);
159 const QualifiedName& attrName = attr->name();
177 void HTMLMediaElement::parseMappedAttribute(MappedAttribute* attr)
179 const QualifiedName& attrName = attr->name();
183 m_player->setAutobuffer(!attr->isNull());
185 setAttributeEventListener(eventNames().abortEvent, createAttributeEventListener(this, attr));
187 setAttributeEventListener(eventNames().beforeloadEvent, createAttributeEventListener(this, attr));
189 setAttributeEventListener(eventNames().canplayEvent, createAttributeEventListener(this, attr));
191 setAttributeEventListener(eventNames().canplaythroughEvent, createAttributeEventListener(this, attr));
    [all...]
HTMLVideoElement.h 49 virtual void parseMappedAttribute(MappedAttribute* attr);
  /external/webkit/WebCore/svg/
SVGGlyphElement.cpp 58 void SVGGlyphElement::parseMappedAttribute(MappedAttribute* attr)
60 if (attr->name() == SVGNames::dAttr)
63 SVGStyledElement::parseMappedAttribute(attr);
  /external/webkit/WebKit/qt/Api/
qwebsettings.h 98 void setAttribute(WebAttribute attr, bool on);
99 bool testAttribute(WebAttribute attr) const;
100 void resetAttribute(WebAttribute attr);
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
AttList.java 23 import org.w3c.dom.Attr;
107 String ns = m_dh.getNamespaceOfNode(((Attr) m_attrs.item(index)));
123 return m_dh.getLocalNameOfNode(((Attr) m_attrs.item(index)));
136 return ((Attr) m_attrs.item(i)).getName();
162 return ((Attr) m_attrs.item(i)).getValue();
203 Attr attr = ((Attr) m_attrs.getNamedItem(name)); local
204 return (null != attr)
205 ? attr.getValue() : null
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
AttList.java 23 import org.w3c.dom.Attr;
98 String ns = m_dh.getNamespaceOfNode(((Attr) m_attrs.item(index)));
114 return m_dh.getLocalNameOfNode(((Attr) m_attrs.item(index)));
127 return ((Attr) m_attrs.item(i)).getName();
153 return ((Attr) m_attrs.item(i)).getValue();
194 Attr attr = ((Attr) m_attrs.getNamedItem(name)); local
195 return (null != attr)
196 ? attr.getValue() : null
    [all...]
  /external/webkit/WebCore/dom/
XMLTokenizerQt.cpp 154 Attribute* attr = attrs->attributeItem(i); local
155 if (attr->localName() == "xmlns")
156 m_defaultNamespaceURI = attr->value();
157 else if (attr->prefix() == "xmlns")
158 namespaces.append(QXmlStreamNamespaceDeclaration(attr->localName(), attr->value()));
290 const QXmlStreamAttribute& attr = attrs[i]; local
291 String attrLocalName = attr.name();
292 String attrValue = attr.value();
293 String attrURI = attr.namespaceUri()
343 const QXmlStreamAttribute &attr = attrs[i]; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sake.c 326 struct eap_sake_parse_attr attr; local
334 if (eap_sake_parse_attributes(payload, payloadlen, &attr))
337 if (!attr.rand_p || !attr.mic_p) {
343 os_memcpy(data->rand_p, attr.rand_p, EAP_SAKE_RAND_LEN);
348 if (attr.peerid) {
349 data->peerid = os_malloc(attr.peerid_len);
352 os_memcpy(data->peerid, attr.peerid, attr.peerid_len);
353 data->peerid_len = attr.peerid_len
389 struct eap_sake_parse_attr attr; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 25 import org.w3c.dom.Attr;
173 ((Attr) this).setValue(nodeValue);
248 AttrImpl attr = (AttrImpl) node; local
249 attr.namespaceAware = true;
250 attr.namespaceURI = namespaceURI;
251 attr.prefix = prefix;
252 attr.localName = qualifiedName;
469 return (NodeImpl) ((Attr) this).getOwnerElement();
519 Node attr = attributes.item(i); local
520 if (!"http://www.w3.org/2000/xmlns/".equals(attr.getNamespaceURI()
584 Node attr = attributes.item(i); local
    [all...]
  /development/apps/Development/src/com/android/development/
LogTextBox.java 46 this(context, attrs, android.R.attr.textViewStyle);
  /development/samples/ApiDemos/src/com/example/android/apis/text/
LogTextBox.java 43 this(context, attrs, android.R.attr.textViewStyle);
  /external/kernel-headers/original/linux/
coda_fs_i.h 49 struct inode *coda_iget(struct super_block *sb, struct CodaFid *fid, struct coda_vattr *attr);
  /frameworks/base/core/java/android/widget/
ImageButton.java 81 this(context, attrs, com.android.internal.R.attr.imageButtonStyle);
SeekBar.java 32 * @attr ref android.R.styleable#SeekBar_thumb
77 this(context, attrs, com.android.internal.R.attr.seekBarStyle);
  /frameworks/base/tools/layoutlib/bridge/src/com/google/android/maps/
MapView.java 50 this(context, attrs, com.android.internal.R.attr.mapViewStyle);
  /bionic/libc/bionic/
pthread_internal.h 39 pthread_attr_t attr; member in struct:pthread_internal_t
49 extern void _init_thread(pthread_internal_t * thread, pid_t kernel_id, pthread_attr_t * attr, void * stack_base);
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
ClassStubber.java 56 public void visitAttribute(Attribute attr) {
57 super.visitAttribute(attr);
  /libcore/luni/src/test/java/libcore/java/text/
OldMessageFormatFieldTest.java 96 protected MyMessageFormat(String attr) {
97 super(attr);
  /dalvik/vm/
Thread.h 31 int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type);
348 pthread_mutexattr_t attr; local
351 pthread_mutexattr_init(&attr);
352 cc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
354 pthread_mutex_init(pMutex, &attr);
355 pthread_mutexattr_destroy(&attr);
  /external/webkit/WebCore/wml/
WMLTableElement.cpp 62 void WMLTableElement::parseMappedAttribute(MappedAttribute* attr)
64 if (attr->name() == columnsAttr) {
66 m_columns = attr->value().string().toUIntStrict(&isNumber);
73 } else if (attr->name() == HTMLNames::alignAttr)
74 m_alignment = parseValueForbiddingVariableReferences(attr->value());
76 WMLElement::parseMappedAttribute(attr);
  /frameworks/base/media/libstagefright/httplive/
M3UParser.cpp 256 AString attr(line, offset, end - offset);
257 attr.trim();
261 ssize_t equalPos = attr.find("=");
266 AString key(attr, 0, equalPos);
269 AString val(attr, equalPos + 1, attr.size() - equalPos - 1);

Completed in 1276 milliseconds

<<11121314151617181920>>