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

1 2 3 4 5

  /external/clang/include/clang/Basic/
Attributes.h 33 int hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope,
  /external/clang/lib/Basic/
Attributes.cpp 6 int clang::hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope,
  /frameworks/compile/slang/
legacy_bitcode.h 23 if (A.hasAttribute(i, llvm::Attribute::Alignment)) {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementHasAttribute.java 10 * The method hasAttribute returns true when an attribute with a given name is
12 * hasAttribute method to check if the documentElement has attributres.
54 state = element.hasAttribute("");
68 // state = element.hasAttribute("defaultAttr");
80 state = element.hasAttribute("domestic");
83 state = element.hasAttribute("domestic");
96 state = element.hasAttribute("domestic");
HasAttribute.java 10 * The "hasAttribute()" method for an Element should return true if the element
12 * and the "hasAttribute()" method should return false since the element does
20 public final class HasAttribute extends DOMTestCase {
57 state = testNode.hasAttribute("domestic");
70 // state = testNode.hasAttribute("street");
81 state = testNode.hasAttribute("nomatch");
92 state = testNode.hasAttribute("dmstc:domestic");
  /external/llvm/lib/IR/
Attributes.cpp 147 bool Attribute::hasAttribute(AttrKind Kind) const {
148 return (pImpl && pImpl->hasAttribute(Kind)) || (!pImpl && Kind == None);
151 bool Attribute::hasAttribute(StringRef Kind) const {
153 return pImpl && pImpl->hasAttribute(Kind);
158 assert(hasAttribute(Attribute::Alignment) &&
166 assert(hasAttribute(Attribute::StackAlignment) &&
173 assert(hasAttribute(Attribute::Dereferenceable) &&
180 assert(hasAttribute(Attribute::DereferenceableOrNull) &&
189 if (hasAttribute(Attribute::SanitizeAddress))
191 if (hasAttribute(Attribute::AlwaysInline)
    [all...]
AttributeImpl.h 55 bool hasAttribute(Attribute::AttrKind A) const;
56 bool hasAttribute(StringRef Kind) const;
159 bool hasAttribute(Attribute::AttrKind Kind) const;
160 bool hasAttribute(StringRef Kind) const;
  /external/parameter-framework/parameter/
LinearParameterAdaptation.cpp 66 if (xmlElement.hasAttribute("SlopeNumerator")) {
75 if (xmlElement.hasAttribute("SlopeDenominator")) {
LogarithmicParameterAdaptation.cpp 60 if (xmlElement.hasAttribute("LogarithmBase")) {
73 if (xmlElement.hasAttribute("FloorValue")) {
ParameterAdaptation.cpp 70 if (xmlElement.hasAttribute("Offset")) {
TypeElement.cpp 106 if (xmlElement.hasAttribute("ArrayLength")) {
113 if (xmlElement.hasAttribute("Mapping")) {
ComponentType.cpp 90 if (xmlElement.hasAttribute("Extends")) {
IntegerParameterType.cpp 110 if (xmlElement.hasAttribute("Min")) {
120 if (xmlElement.hasAttribute("Max")) {
130 if (xmlElement.hasAttribute("Min")) {
137 if (xmlElement.hasAttribute("Max")) {
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
elementhasattribute03.java 34 * The method hasAttribute returns true when an attribute with a given name is specified
36 * Create an element Node and an attribute Node. Invoke hasAttribute method
38 * Invoke the hasAttribute method on the element and verify if it returns true.
74 state = element.hasAttribute("domestic");
77 state = element.hasAttribute("domestic");
elementhasattribute01.java 47 * The method hasAttribute returns true when an attribute with a given name is specified
49 * Invoke the hasAttribute method to check if the documentElement has attributres.
88 state = element.hasAttribute("");
elementhasattribute04.java 34 * The method hasAttribute returns true when an attribute with a given name is specified
37 * Invoke the hasAttribute method on the element and verify if the method returns true.
74 state = element.hasAttribute("domestic");
hasAttribute01.java 34 * The "hasAttribute()" method for an Element should
36 * Retrieve the first "address" element and the "hasAttribute()" method
71 state = testNode.hasAttribute("domestic");
hasAttribute03.java 34 * The "hasAttribute()" method for an Element should
36 * Retrieve the first "address" element and the "hasAttribute()" method
71 state = testNode.hasAttribute("nomatch");
  /external/llvm/include/llvm/IR/
Function.h 188 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex, Kind);
191 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex, Kind);
243 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
253 AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
262 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
271 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
280 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
290 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
305 return AttributeSets.hasAttribute(1, Attribute::StructRet) ||
306 AttributeSets.hasAttribute(2, Attribute::StructRet)
    [all...]
  /external/deqp/executor/
xeTestCaseListParser.cpp 104 const char* name = m_xmlParser.hasAttribute("Name") ? m_xmlParser.getAttribute("Name") : DE_NULL;
105 const char* description = m_xmlParser.hasAttribute("Description") ? m_xmlParser.getAttribute("Description") : DE_NULL;
106 const char* caseType = m_xmlParser.hasAttribute("CaseType") ? m_xmlParser.getAttribute("CaseType") : DE_NULL;
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidationContentHandler.java 134 boolean hasAttribute = false;
139 hasAttribute = true;
148 if (!hasAttribute) {
  /external/llvm/lib/Target/Mips/
MipsTargetMachine.cpp 129 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
132 std::string FS = !FSAttr.hasAttribute(Attribute::None)
136 !F.getFnAttribute("mips16").hasAttribute(Attribute::None);
138 !F.getFnAttribute("nomips16").hasAttribute(Attribute::None);
146 bool softFloat = !SFAttr.hasAttribute(Attribute::None)
  /external/llvm/lib/Target/X86/
X86TargetMachine.cpp 122 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
125 std::string FS = !FSAttr.hasAttribute(Attribute::None)
135 bool SoftFloat = !SFAttr.hasAttribute(Attribute::None)
  /external/llvm/include/llvm/MC/
MCSectionMachO.h 63 bool hasAttribute(unsigned Value) const {
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 61 if (F.getAttributes().hasAttribute(Idx, Attribute::SExt)) {

Completed in 418 milliseconds

1 2 3 4 5