Home
last modified time | relevance | path

Searched refs:newAttr (Results 1 – 9 of 9) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/xmllite/
Dxmlelement.cc104 XmlAttr * newAttr = NULL; in XmlElement() local
106 newAttr = new XmlAttr(*pAttr); in XmlElement()
107 *ppLastAttr = newAttr; in XmlElement()
108 ppLastAttr = &(newAttr->pNextAttr_); in XmlElement()
110 pLastAttr_ = newAttr; in XmlElement()
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
Dxmlelement.cc95 XmlAttr* newAttr = NULL; in XmlElement() local
97 newAttr = new XmlAttr(*attr); in XmlElement()
98 *plast_attr = newAttr; in XmlElement()
99 plast_attr = &(newAttr->next_attr_); in XmlElement()
101 last_attr_ = newAttr; in XmlElement()
/external/clang/include/clang/Sema/
DAttributeList.h674 void add(AttributeList *newAttr) { in add() argument
675 assert(newAttr); in add()
676 assert(newAttr->getNext() == 0); in add()
677 newAttr->setNext(list); in add()
678 list = newAttr; in add()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.idl33 …r setAttributeNode([Default=Undefined, StrictTypeChecking] optional Attr newAttr); // Removed from…
48 …setAttributeNodeNS([Default=Undefined, StrictTypeChecking] optional Attr newAttr); // Removed from…
/external/apache-xml/src/main/java/org/apache/xml/utils/
DUnImplNode.java307 public Attr setAttributeNode(Attr newAttr) throws DOMException in setAttributeNode() argument
443 public Attr setAttributeNodeNS(Attr newAttr) throws DOMException in setAttributeNodeNS() argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java1149 public final Attr setAttributeNode(Attr newAttr) throws DOMException in setAttributeNode() argument
1257 public final Attr setAttributeNodeNS(Attr newAttr) throws DOMException in setAttributeNodeNS() argument
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py1603 newAttr = self.CHARSET_RE.sub(rewrite, contentType)
1605 newAttr)
/external/clang/lib/Sema/
DSemaDeclAttr.cpp2336 clang::Attr *newAttr; in handleVisibilityAttr() local
2338 newAttr = S.mergeTypeVisibilityAttr(D, Attr.getRange(), in handleVisibilityAttr()
2342 newAttr = S.mergeVisibilityAttr(D, Attr.getRange(), type, Index); in handleVisibilityAttr()
2344 if (newAttr) in handleVisibilityAttr()
2345 D->addAttr(newAttr); in handleVisibilityAttr()
DSemaDecl.cpp2186 InheritableAttr *newAttr = in mergeParamDeclAttributes() local
2188 newAttr->setInherited(true); in mergeParamDeclAttributes()
2189 newDecl->addAttr(newAttr); in mergeParamDeclAttributes()