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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXProgressIndicator.cpp 49 if (hasAttribute(aria_valuenowAttr))
60 if (hasAttribute(aria_valuemaxAttr))
68 if (hasAttribute(aria_valueminAttr))
  /external/clang/include/clang/Basic/
Attributes.h 35 bool hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope,
  /external/clang/lib/Basic/
Attributes.cpp 6 bool 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");
  /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/lib/IR/
Attributes.cpp 135 bool Attribute::hasAttribute(AttrKind Kind) const {
136 return (pImpl && pImpl->hasAttribute(Kind)) || (!pImpl && Kind == None);
139 bool Attribute::hasAttribute(StringRef Kind) const {
141 return pImpl && pImpl->hasAttribute(Kind);
146 assert(hasAttribute(Attribute::Alignment) &&
154 assert(hasAttribute(Attribute::StackAlignment) &&
162 if (hasAttribute(Attribute::SanitizeAddress))
164 if (hasAttribute(Attribute::AlwaysInline))
166 if (hasAttribute(Attribute::Builtin))
168 if (hasAttribute(Attribute::ByVal)
    [all...]
AttributeImpl.h 55 bool hasAttribute(Attribute::AttrKind A) const;
56 bool hasAttribute(StringRef Kind) const;
158 bool hasAttribute(Attribute::AttrKind Kind) const;
159 bool hasAttribute(StringRef Kind) const;
  /external/llvm/include/llvm/IR/
Function.h 201 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex, Kind);
204 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex, Kind);
238 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
248 AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
257 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
266 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
275 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
285 return AttributeSets.hasAttribute(AttributeSet::FunctionIndex,
300 return AttributeSets.hasAttribute(1, Attribute::StructRet) ||
301 AttributeSets.hasAttribute(2, Attribute::StructRet)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedProperty.cpp 68 return isAnimating() || contextElement()->hasAttribute(attributeName());
  /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/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameElement.cpp 58 return hasAttribute(noresizeAttr);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFilterPrimitiveStandardAttributes.cpp 123 if (hasAttribute(SVGNames::xAttr))
125 if (hasAttribute(SVGNames::yAttr))
127 if (hasAttribute(SVGNames::widthAttr))
129 if (hasAttribute(SVGNames::heightAttr))
SVGFEConvolveMatrixElement.cpp 193 if (!hasAttribute(SVGNames::orderAttr)) {
208 if (hasAttribute(SVGNames::targetXAttr) && (targetXValue < 0 || targetXValue >= orderXValue))
211 if (!hasAttribute(SVGNames::targetXAttr))
213 if (hasAttribute(SVGNames::targetYAttr) && (targetYValue < 0 || targetYValue >= orderYValue))
216 if (!hasAttribute(SVGNames::targetYAttr))
223 if (!hasAttribute(SVGNames::kernelUnitLengthAttr)) {
231 if (hasAttribute(SVGNames::divisorAttr) && !divisorValue)
233 if (!hasAttribute(SVGNames::divisorAttr)) {
  /external/chromium_org/remoting/webapp/
l10n.js 82 if (element.hasAttribute(value)) {
84 } else if (element.hasAttribute(valueName)) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebElement.cpp 82 bool WebElement::hasAttribute(const WebString& attrName) const
84 return constUnwrap<Element>()->hasAttribute(attrName);
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 99 if (CalleeAttr.hasAttribute(AttributeSet::FunctionIndex,
103 } else if (CalleeAttr.hasAttribute(AttributeSet::FunctionIndex,
105 !CallerAttr.hasAttribute(AttributeSet::FunctionIndex,
109 } else if (CalleeAttr.hasAttribute(AttributeSet::FunctionIndex,
111 !CallerAttr.hasAttribute(AttributeSet::FunctionIndex,
113 !CallerAttr.hasAttribute(AttributeSet::FunctionIndex,
272 Caller->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
282 Callee->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
285 && !Caller->getAttributes().hasAttribute(AttributeSet::FunctionIndex,
291 Callee->getAttributes().hasAttribute(AttributeSet::FunctionIndex
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebElement.h 64 BLINK_EXPORT bool hasAttribute(const WebString&) const;
  /external/llvm/include/llvm/MC/
MCSectionMachO.h 71 bool hasAttribute(unsigned Value) const {

Completed in 1458 milliseconds

1 2 3 4 5 6 7 8 9