HomeSort by relevance Sort by last modified time
    Searched refs:Attr (Results 1 - 25 of 541) 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"
20 Attr::~Attr() { }
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 25 const AttributeList &Attr, Sema &S) const {
30 const AttributeList &Attr, Sema &S) {
32 if (Attr.getNumArgs() != 1) {
33 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
34 << Attr.getName() << 1;
40 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArg(0));
43 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
44 << Attr.getName() << AANT_ArgumentIntegerConstant
51 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
57 d->addAttr(::new (S.Context) MSP430InterruptAttr(Attr.getLoc(), S.Context, Num))
    [all...]
SemaDeclAttr.cpp 210 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
212 if (Attr.getNumArgs() != Num) {
213 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
214 << Attr.getName() << Num;
224 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
226 if (Attr.getNumArgs() < Num) {
227 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
324 const AttributeList &Attr) {
341 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
342 << Attr.getName()->getName() << QT
    [all...]
TargetAttributesSema.h 23 const AttributeList &Attr, Sema &S) const;
  /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)
50 Attr::Attr(Document* document, const QualifiedName& name, const AtomicString& standaloneValue)
61 PassRefPtr<Attr> Attr::create(Element* element, const QualifiedName& name)
63 RefPtr<Attr> attr = adoptRef(new Attr(element, name)) local
70 RefPtr<Attr> attr = adoptRef(new Attr(document, name, value)); local
    [all...]
Attr.h 37 // Attr can have Text children
43 class Attr FINAL : public ContainerNode {
45 static PassRefPtr<Attr> create(Element*, const QualifiedName&);
46 static PassRefPtr<Attr> create(Document*, const QualifiedName&, const AtomicString& value);
47 virtual ~Attr();
67 Attr(Element*, const QualifiedName&);
68 Attr(Document*, const QualifiedName&, const AtomicString& value);
92 // Attr wraps either an element/name, or a name/value pair (when it's a standalone Node.)
102 inline Attr* toAttr(Node* node)
105 return static_cast<Attr*>(node)
    [all...]
Attr.idl 21 interface Attr : Node {
  /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...]
  /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/chromium_org/third_party/libjingle/source/talk/examples/chat/
textchatreceivetask.cc 55 SignalTextChatReceived(Jid(stanza->Attr(QN_FROM)), Jid(stanza->Attr(QN_TO)),
  /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/chromium/third_party/libjingle/source/talk/p2p/client/
sessionsendtask.h 65 if (stanza->Attr(buzz::QN_TYPE) == "set") {
68 ASSERT((stanza->Attr(buzz::QN_TYPE) == "result") ||
69 (stanza->Attr(buzz::QN_TYPE) == "error"));
75 set_task_id(stanza_->Attr(buzz::QN_ID));
92 if (stanza_->Attr(buzz::QN_TYPE) == buzz::STR_SET) {
108 if (next->Attr(buzz::QN_TYPE) == buzz::STR_RESULT) {
119 buzz::Jid(stanza_->Attr(buzz::QN_TO)), task_id()))
121 if (stanza->Attr(buzz::QN_TYPE) == buzz::STR_RESULT ||
122 stanza->Attr(buzz::QN_TYPE) == buzz::STR_ERROR) {
  /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/clang/include/clang/AST/
Attr.h 1 //===--- Attr.h - Classes for representing attributes ----------*- C++ -*-===//
10 // This file defines the Attr interface and subclasses.
40 /// Attr - This represents one attribute.
41 class Attr {
48 /// 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/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 416 milliseconds

1 2 3 4 5 6 7 8 91011>>