HomeSort by relevance Sort by last modified time
    Searched refs:attr (Results 451 - 475 of 1290) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/svg/
SVGStyledElement.cpp 26 #include "Attr.h"
295 void SVGStyledElement::parseMappedAttribute(Attribute* attr)
297 const QualifiedName& attrName = attr->name();
302 addCSSProperty(attr, propId, attr->value());
312 setClassNameBaseValue(attr->value());
315 SVGElement::parseMappedAttribute(attr);
392 Attribute* attr = attributeMap()->getAttributeItem(attributeName); local
393 if (!attr || !attr->isMappedAttribute() || !attr->style()
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 132 AttrImpl attr = (AttrImpl) node; local
134 if (attr.namespaceAware) {
135 attrCopy = createAttributeNS(attr.getNamespaceURI(), attr.getLocalName());
136 attrCopy.setPrefix(attr.getPrefix());
138 attrCopy = createAttribute(attr.getName());
140 attrCopy.setNodeValue(attr.getValue());
249 AttrImpl attr = (AttrImpl) node; local
250 if (attr.ownerElement != null) {
251 attr.ownerElement.removeAttributeNode(attr)
    [all...]
  /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);
  /external/llvm/lib/VMCore/
Function.cpp 120 void Argument::addAttr(Attributes attr) {
121 getParent()->addAttribute(getArgNo() + 1, attr);
125 void Argument::removeAttr(Attributes attr) {
126 getParent()->removeAttribute(getArgNo() + 1, attr);
244 void Function::addAttribute(unsigned i, Attributes attr) {
246 PAL = PAL.addAttr(i, attr);
250 void Function::removeAttribute(unsigned i, Attributes attr) {
252 PAL = PAL.removeAttr(i, attr);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodecomparedocumentposition35.js 91 var attr;
102 attr = elem.getAttributeNode("dir");
103 elementPosition = elem.compareDocumentPosition(attr);
105 attrPosition = attr.compareDocumentPosition(elem);
nodelookupnamespaceuri16.js 91 var attr;
101 attr = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
102 attNode = elem.setAttributeNodeNS(attr);
103 namespaceURI = attr.lookupNamespaceURI("xml");
nodelookupprefix16.js 90 var attr;
100 attr = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace","xml:lang");
101 attNode = elem.setAttributeNodeNS(attr);
102 prefix = attr.lookupPrefix("http://www.w3.org/XML/1998/namespace");
nodesettextcontent05.js 80 Using setTextContent on a default Attr node, attempt to set its value to NA. Retreive
93 var attr;
103 attr = elem.getAttributeNode("dir");
104 attr.textContent = "NA";
106 textContent = attr.textContent;
canonicalform11.js 98 var attr;
120 attr = elem.getAttributeNode("title");
121 assertNotNull("titlePresent",attr);
122 attrSpecified = attr.specified;
125 attrValue = attr.nodeValue;
elementsetidattribute07.js 94 var attr;
113 attr = attributesMap.getNamedItem("hasMiddleName");
114 id = attr.isId;
119 attr = attributesMap.getNamedItem("hasMiddleName");
120 id = attr.isId;
elementsetidattribute09.js 95 var attr;
115 attr = attributesMap.getNamedItem("hasMiddleName");
116 id = attr.isId;
121 attr = attributesMap.getNamedItem("annual");
122 id = attr.isId;
  /external/webkit/Source/WebCore/html/
HTMLOptGroupElement.cpp 74 void HTMLOptGroupElement::parseMappedAttribute(Attribute* attr)
76 HTMLFormControlElement::parseMappedAttribute(attr);
  /external/webkit/Source/WebCore/wml/
WMLOptGroupElement.cpp 86 void WMLOptGroupElement::parseMappedAttribute(Attribute* attr)
88 WMLFormControlElement::parseMappedAttribute(attr);
WMLTableElement.cpp 67 void WMLTableElement::parseMappedAttribute(Attribute* attr)
69 if (attr->name() == columnsAttr) {
71 m_columns = attr->value().string().toUIntStrict(&isNumber);
78 } else if (attr->name() == HTMLNames::alignAttr)
79 m_alignment = parseValueForbiddingVariableReferences(attr->value());
81 WMLElement::parseMappedAttribute(attr);
  /libcore/luni/src/test/java/libcore/java/text/
OldMessageFormatFieldTest.java 96 protected MyMessageFormat(String attr) {
97 super(attr);
  /packages/apps/Launcher2/src/com/android/launcher2/
HolographicViewHelper.java 49 states.addState(new int[] {android.R.attr.state_pressed}, d);
50 states.addState(new int[] {android.R.attr.state_focused}, d);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ClipboardSupport.java 342 for (IDragAttribute attr : pastedElement.getAttributes()) {
344 attr.getName(),
345 attr.getUri(),
346 attr.getValue(),
376 for (IDragAttribute attr : childElement.getAttributes()) {
378 attr.getName(),
379 attr.getUri(),
380 attr.getValue(),
  /system/extras/fatblock/
fat.h 90 uint8_t attr; member in struct:fat_dirent
121 char *name, uint8_t attr,
  /cts/tests/tests/content/src/android/content/cts/
ContextTest.java 129 android.R.attr.windowNoTitle,
130 android.R.attr.panelColorForeground,
131 android.R.attr.panelColorBackground
236 final AttributeSet attr = Xml.asAttributeSet(parser); local
237 assertNotNull(attr);
238 return attr;
  /dalvik/vm/
Thread.h 31 int pthread_mutexattr_settype(pthread_mutexattr_t *attr, int type);
415 pthread_mutexattr_t attr; local
418 pthread_mutexattr_init(&attr);
419 cc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ERRORCHECK_NP);
421 pthread_mutex_init(pMutex, &attr);
422 pthread_mutexattr_destroy(&attr);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 26 import org.w3c.dom.Attr;
53 public class DOM2DTMdefaultNamespaceDeclarationNode implements Attr,TypeInfo
210 * for <code>Attr</code> nodes as for any other type of node. Note that
221 * attribute for <code>Attr</code> nodes, the
330 Node attr = map.item(i); local
331 String attrPrefix = attr.getPrefix();
332 String value = attr.getNodeValue();
333 namespace = attr.getNamespaceURI();
337 attr.getNodeName().equals("xmlns")) {
342 attr.getLocalName().equals(specifiedPrefix))
    [all...]
  /external/javassist/src/main/javassist/bytecode/
AttributeInfo.java 192 AttributeInfo attr = (AttributeInfo)list.get(i); local
193 size += attr.length();
233 AttributeInfo attr = (AttributeInfo)list.get(i); local
234 attr.write(out);
245 AttributeInfo attr = (AttributeInfo)list.get(i); local
246 newList.add(attr.copy(cp, null));
  /external/valgrind/main/drd/
drd_pthread_intercepts.c 372 int pthread_create_intercept(pthread_t* thread, const pthread_attr_t* attr,
404 if (attr)
406 if (pthread_attr_getdetachstate(attr, &thread_args_p->detachstate) != 0)
416 CALL_FN_W_WWWW(ret, fn, thread, attr, DRD_(thread_wrapper), thread_args_p);
447 (pthread_t *thread, const pthread_attr_t *attr,
449 (thread, attr, start, arg));
536 const pthread_mutexattr_t* attr)
544 if (attr)
545 pthread_mutexattr_gettype(attr, &mt);
549 CALL_FN_W_WW(ret, fn, mutex, attr);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.cc 66 void StunMessage::AddAttribute(StunAttribute* attr) {
67 attrs_->push_back(attr);
68 length_ += attr->length() + 4;
176 StunAttribute* attr = StunAttribute::Create(attr_type, attr_length);
177 if (!attr || !attr->Read(buf))
180 attrs_->push_back(attr);
484 uint16 attr; local
485 if (!buf->ReadUInt16(&attr))
487 attr_types_->push_back(attr);
    [all...]

Completed in 354 milliseconds

<<11121314151617181920>>