HomeSort by relevance Sort by last modified time
    Searched refs:Attr (Results 1 - 25 of 589) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/AST/
AttrImpl.cpp 10 // This file contains out-of-line virtual methods for Attr classes.
14 #include "clang/AST/Attr.h"
21 Attr::~Attr() { }
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Attr.cpp 24 #include "core/dom/Attr.h"
40 Attr::Attr(Element& element, const QualifiedName& name)
49 Attr::Attr(Document& document, const QualifiedName& name, const AtomicString& standaloneValue)
59 PassRefPtrWillBeRawPtr<Attr> Attr::create(Element& element, const QualifiedName& name)
61 RefPtrWillBeRawPtr<Attr> attr = adoptRefWillBeNoop(new Attr(element, name)) local
68 RefPtrWillBeRawPtr<Attr> attr = adoptRefWillBeNoop(new Attr(document, name, value)); local
    [all...]
Attr.h 35 // Attr can have Text children
41 class Attr FINAL : public ContainerNode {
43 static PassRefPtrWillBeRawPtr<Attr> create(Element&, const QualifiedName&);
44 static PassRefPtrWillBeRawPtr<Attr> create(Document&, const QualifiedName&, const AtomicString& value);
45 virtual ~Attr();
69 Attr(Element&, const QualifiedName&);
70 Attr(Document&, const QualifiedName&, const AtomicString& value);
90 // Attr wraps either an element/name, or a name/value pair (when it's a standalone Node.)
102 DEFINE_NODE_TYPE_CASTS(Attr, isAttributeNode());
  /external/clang/lib/Sema/
SemaDeclAttr.cpp 146 static unsigned getNumAttributeArgs(const AttributeList &Attr) {
148 return Attr.getNumArgs() + Attr.hasParsedType();
153 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
155 if (getNumAttributeArgs(Attr) != Num) {
156 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
157 << Attr.getName() << Num;
166 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
168 if (getNumAttributeArgs(Attr) < Num) {
169 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Element.java 22 * <code>Attr</code> object by name or an attribute value by name. In XML,
24 * <code>Attr</code> object should be retrieved to examine the possibly
50 * @return The <code>Attr</code> value as a string, or the empty string
63 * references, the user must create an <code>Attr</code> node plus any
105 * @return The <code>Attr</code> node with the specified name (
109 public Attr getAttributeNode(String name);
118 * @param newAttr The <code>Attr</code> node to add to the attribute list.
120 * attribute, the replaced <code>Attr</code> node is returned,
128 * explicitly clone <code>Attr</code> nodes to re-use them in other
131 public Attr setAttributeNode(Attr newAttr
    [all...]
Attr.java 16 * The <code>Attr</code> interface represents an attribute in an
19 * <p><code>Attr</code> objects inherit the <code>Node</code> interface, but
24 * <code>null</code> value for <code>Attr</code> objects. The DOM takes the
29 * <code>Attr</code> nodes may not be immediate children of a
33 * DOM need to be aware that <code>Attr</code> nodes have some things in
43 * attribute on the <code>Attr</code> instance can also be used to retrieve
58 * the child nodes of the <code>Attr</code> node may be either
68 * <code>nodeValue</code> attributes of an <code>Attr</code> node initially
73 * the string value directly or by changing the <code>Attr</code> child
90 * <th>Initial <code>Attr.value</code></th
    [all...]
  /external/clang/lib/Basic/
Attributes.cpp 7 const IdentifierInfo *Attr, const llvm::Triple &T,
9 StringRef Name = Attr->getName();
  /packages/apps/Mms/src/com/android/mms/dom/
ElementImpl.java 20 import org.w3c.dom.Attr;
45 Attr attrNode = getAttributeNode(name);
58 public Attr getAttributeNode(String name) {
59 return (Attr)mAttributes.getNamedItem(name);
62 public Attr getAttributeNodeNS(String namespaceURI, String localName) {
100 public Attr removeAttributeNode(Attr oldAttr) throws DOMException {
106 Attr attribute = getAttributeNode(name);
120 public Attr setAttributeNode(Attr newAttr) throws DOMException
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 28 import org.w3c.dom.Attr;
104 Attr attribute;
112 attribute = (Attr) attributes.getNamedItemNS("http://www.nist.gov",
121 Attr attribute;
122 Attr newAttr1;
123 Attr newAttr2;
133 attribute = (Attr) attributes.getNamedItemNS(
142 Attr attribute;
143 Attr newAttr1;
152 attribute = (Attr) attributes.getNamedItemNS
    [all...]
AttrGetOwnerElement.java 3 import org.w3c.dom.Attr;
38 // Attr attr;
52 // attr = (Attr) attributes.getNamedItemNS(nullNS, "defaultAttr");
53 // ownerElement = attr.getOwnerElement();
63 Attr attr; local
67 attr = doc.createAttributeNS("http://www.w3.org/DOM/L1", "L1:att");
68 element.setAttributeNodeNS(attr);
76 Attr attr; local
87 Attr attr; local
110 Attr attr; local
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 26 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {}
27 uint16_t Attr;
50 uint32_t findAttributeIndex(uint16_t attr) const;
DWARFAbbreviationDeclaration.cpp 41 uint16_t Attr = Data.getULEB128(OffsetPtr);
52 if (Attr == 0 && Form == 0)
54 AttributeSpecs.push_back(AttributeSpec(Attr, Form));
74 const char *attrString = AttributeString(Spec.Attr);
78 OS << format("DW_AT_Unknown_%x", Spec.Attr);
91 DWARFAbbreviationDeclaration::findAttributeIndex(uint16_t attr) const {
93 if (AttributeSpecs[i].Attr == attr)
  /external/chromium_org/third_party/skia/include/xml/
SkDOM.h 26 typedef SkDOMAttr Attr;
46 const Attr* getFirstAttr(const Node*) const;
47 const Attr* getNextAttr(const Node*, const Attr*) const;
48 const char* getAttrName(const Node*, const Attr*) const;
49 const char* getAttrValue(const Node*, const Attr*) const;
77 const Attr* fAttr;
78 const Attr* fStop;
  /external/skia/include/xml/
SkDOM.h 26 typedef SkDOMAttr Attr;
46 const Attr* getFirstAttr(const Node*) const;
47 const Attr* getNextAttr(const Node*, const Attr*) const;
48 const char* getAttrName(const Node*, const Attr*) const;
49 const char* getAttrValue(const Node*, const Attr*) const;
77 const Attr* fAttr;
78 const Attr* fStop;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapremovenameditemns03.java 74 Attr attribute;
75 Attr newAttribute;
76 Attr attribute1;
77 Attr attribute2;
86 attribute = (Attr) attributes.removeNamedItemNS("http://www.w3.org/DOM/L1", "att");
87 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att");
namednodemapremovenameditemns04.java 73 Attr attribute;
74 Attr attributeRemoved;
80 attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
81 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
83 attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
84 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
namednodemapgetnameditemns03.java 38 * Verify if the attr node has been retreived successfully by checking its nodeName atttribute.
74 Attr attribute;
75 Attr newAttr1;
76 Attr newAttr2;
77 Attr newAttribute;
86 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/DOM/L2", "att");
namednodemapgetnameditemns06.java 38 * Verify if the attr node has been retreived successfully by checking its nodeName atttribute.
75 Attr attribute;
76 Attr newAttr1;
77 Attr newAttribute;
87 attribute = (Attr) attributesMap1.getNamedItemNS("http://www.w3.org/DOM/L1", "street");
90 attribute = (Attr) attributesMap2.getNamedItemNS("http://www.w3.org/DOM/L1", "street");
  /external/clang/include/clang/AST/
Attr.h 1 //===--- Attr.h - Classes for representing attributes ----------*- C++ -*-===//
10 // This file defines the Attr interface and subclasses.
41 /// Attr - This represents one attribute.
42 class Attr {
49 /// attribute defined in Attr.td file.
55 virtual ~Attr();
76 Attr(attr::Kind AK, SourceRange R, unsigned SpellingListIndex = 0)
82 attr::Kind getKind() const {
83 return static_cast<attr::Kind>(AttrKind)
    [all...]
  /external/llvm/lib/Support/
ARMBuildAttrs.cpp 17 ARMBuildAttrs::AttrType Attr;
73 StringRef AttrTypeAsString(unsigned Attr, bool HasTagPrefix) {
74 return AttrTypeAsString(static_cast<AttrType>(Attr), HasTagPrefix);
77 StringRef AttrTypeAsString(AttrType Attr, bool HasTagPrefix) {
80 if (ARMAttributeTags[TI].Attr == Attr)
90 return ARMAttributeTags[TI].Attr;
Threading.cpp 47 pthread_attr_t Attr;
51 if (::pthread_attr_init(&Attr) != 0)
56 if (::pthread_attr_setstacksize(&Attr, RequestedStackSize) != 0)
61 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
68 ::pthread_attr_destroy(&Attr);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/client/
sessionsendtask.h 68 if (stanza->Attr(buzz::QN_TYPE) == "set") {
71 ASSERT((stanza->Attr(buzz::QN_TYPE) == "result") ||
72 (stanza->Attr(buzz::QN_TYPE) == "error"));
78 set_task_id(stanza_->Attr(buzz::QN_ID));
103 if (stanza_->Attr(buzz::QN_TYPE) == buzz::STR_SET) {
116 if (next->Attr(buzz::QN_TYPE) == buzz::STR_RESULT) {
128 buzz::Jid(stanza_->Attr(buzz::QN_TO)), task_id()))
130 if (stanza->Attr(buzz::QN_TYPE) == buzz::STR_RESULT ||
131 stanza->Attr(buzz::QN_TYPE) == buzz::STR_ERROR) {
  /external/chromium_org/remoting/host/
host_change_notification_listener.cc 48 if (stanza->Name() != buzz::QN_IQ || stanza->Attr(buzz::QN_TYPE) != "set")
57 host_changed_element->Attr(QName(kChromotingXmlNamespace, "hostid"));
58 const std::string& from = stanza->Attr(buzz::QN_FROM);
59 const std::string& to = stanza->Attr(buzz::QN_TO);
63 host_changed_element->Attr(QName(kChromotingXmlNamespace, "operation"));
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_namednodemapremovenameditem.java 68 Attr newAttribute;
71 Attr streetAttr;
79 streetAttr = (Attr) attributes.getNamedItem("class");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_callable.py 11 from lib2to3.fixer_util import Call, Name, String, Attr, touch_import
36 args.extend(Attr(Name(u'collections'), Name(u'Callable')))

Completed in 504 milliseconds

1 2 3 4 5 6 7 8 91011>>