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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Sema/
SemaDeclAttr.cpp 171 static unsigned getNumAttributeArgs(const AttributeList &Attr) {
173 return Attr.getNumArgs() + Attr.hasParsedType();
177 static bool checkAttributeNumArgsImpl(Sema &S, const AttributeList &Attr,
180 if (Comp(getNumAttributeArgs(Attr), Num)) {
181 S.Diag(Attr.getLoc(), Diag) << Attr.getName() << Num;
190 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr,
192 return checkAttributeNumArgsImpl(S, Attr, Num,
199 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr,
    [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 TargetInfo &Target,
9 StringRef Name = Attr->getName();
  /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/clang/include/clang/Basic/
Attributes.h 34 const IdentifierInfo *Attr, const TargetInfo &Target,
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFAbbreviationDeclaration.h 23 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {}
24 uint16_t Attr;
46 uint32_t findAttributeIndex(uint16_t attr) const;
  /external/skia/include/xml/
SkDOM.h 29 typedef SkDOMAttr Attr;
52 const Attr* getFirstAttr(const Node*) const;
53 const Attr* getNextAttr(const Node*, const Attr*) const;
54 const char* getAttrName(const Node*, const Attr*) const;
55 const char* getAttrValue(const Node*, const Attr*) const;
83 const Attr* fAttr;
84 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/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/clang/include/clang/AST/
Attr.h 1 //===--- Attr.h - Classes for representing attributes ----------*- C++ -*-===//
10 // This file defines the Attr interface and subclasses.
43 /// Attr - This represents one attribute.
44 class Attr {
51 /// attribute defined in Attr.td file.
78 Attr(attr::Kind AK, SourceRange R, unsigned SpellingListIndex,
86 attr::Kind getKind() const {
87 return static_cast<attr::Kind>(AttrKind);
108 Attr *clone(ASTContext &C) const
    [all...]
  /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");
  /external/llvm/lib/DebugInfo/DWARF/
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)
  /prebuilts/gdb/darwin-x86/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')))
  /prebuilts/gdb/linux-x86/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')))
  /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')))
  /prebuilts/python/linux-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')))
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 68 } else if (AttributedTypeLoc Attr = TL.getAs<AttributedTypeLoc>()) {
69 if (handleAttr(Attr, D))
71 TL = Attr.getModifiedLoc();
113 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs.back();
115 Attr.Kind = Kind;
116 Attr.Loc = Loc;
117 Attr.ModifiedType = TL.getModifiedLoc().getType();
118 Attr.Dcl = D;
119 Attr.FullyMigratable = FullyMigratable;
186 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs[i]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleWizard.java 47 import org.w3c.dom.Attr;
86 private Set<Attr> mInSelection;
87 private List<Attr> mAllAttributes;
89 private Map<Attr, Integer> mFrequencyCount;
90 private Set<Attr> mShown;
91 private List<Attr> mInitialChecked;
92 private List<Attr> mAllChecked;
93 private List<Map.Entry<String, List<Attr>>> mRoot;
94 private Map<String, List<Attr>> mAvailableAttributes;
170 Attr attribute = (Attr) event.getElement()
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
mucroomdiscoverytask.cc 39 const std::string name(identity->Attr(QN_NAME));
51 features.insert(feature->Attr(QN_VAR));
58 const std::string key(field->Attr(QN_VAR));
59 extended_info[key] = field->Attr(QN_XDATA_VALUE);

Completed in 676 milliseconds

1 2 3 4 5 6 7 8 91011>>