alt               107 Source/core/accessibility/AXImageMapLink.cpp     const AtomicString& alt = getAttribute(altAttr);
alt               108 Source/core/accessibility/AXImageMapLink.cpp     if (!alt.isEmpty())
alt               109 Source/core/accessibility/AXImageMapLink.cpp         return alt;
alt                83 Source/core/accessibility/AXNodeObject.cpp         const AtomicString& alt = toHTMLElement(node)->getAttribute(altAttr);
alt                84 Source/core/accessibility/AXNodeObject.cpp         if (!alt.isEmpty())
alt                85 Source/core/accessibility/AXNodeObject.cpp             return alt;
alt              1122 Source/core/accessibility/AXNodeObject.cpp         const AtomicString& alt = getAttribute(altAttr);
alt              1123 Source/core/accessibility/AXNodeObject.cpp         if (!alt.isNull())
alt              1124 Source/core/accessibility/AXNodeObject.cpp             return alt;
alt              1646 Source/core/accessibility/AXNodeObject.cpp         const AtomicString& alt = getAttribute(altAttr);
alt              1647 Source/core/accessibility/AXNodeObject.cpp         if (!alt.isNull())
alt              1648 Source/core/accessibility/AXNodeObject.cpp             textOrder.append(AccessibilityText(alt, AlternativeText));
alt               708 Source/core/accessibility/AXRenderObject.cpp             const AtomicString& alt = elt->getAttribute(altAttr);
alt               710 Source/core/accessibility/AXRenderObject.cpp             if (!alt.string().containsOnlyWhitespace())
alt               713 Source/core/accessibility/AXRenderObject.cpp             if (!alt.isNull())
alt               184 Source/core/html/HTMLImageElement.cpp     const AtomicString& alt = fastGetAttribute(altAttr);
alt               185 Source/core/html/HTMLImageElement.cpp     if (!alt.isNull())
alt               186 Source/core/html/HTMLImageElement.cpp         return alt;
alt                62 Source/core/html/HTMLImageElement.h     const AtomicString& alt() const;
alt               797 Source/core/html/HTMLInputElement.cpp     String alt = fastGetAttribute(altAttr);
alt               799 Source/core/html/HTMLInputElement.cpp     if (alt.isNull())
alt               800 Source/core/html/HTMLInputElement.cpp         alt = fastGetAttribute(titleAttr);
alt               801 Source/core/html/HTMLInputElement.cpp     if (alt.isNull())
alt               802 Source/core/html/HTMLInputElement.cpp         alt = fastGetAttribute(valueAttr);
alt               803 Source/core/html/HTMLInputElement.cpp     if (alt.isEmpty())
alt               804 Source/core/html/HTMLInputElement.cpp         alt = locale().queryString(blink::WebLocalizedString::InputElementAltText);
alt               805 Source/core/html/HTMLInputElement.cpp     return alt;
alt               193 Source/core/html/HTMLInputElement.h     const AtomicString& alt() const;
alt                38 Source/core/loader/NavigationPolicy.cpp bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy* policy)
alt                45 Source/core/loader/NavigationPolicy.cpp     if (!newTabModifier && !shift && !alt)
alt                46 Source/core/loader/NavigationPolicy.h bool navigationPolicyFromMouseEvent(unsigned short button, bool ctrl, bool shift, bool alt, bool meta, NavigationPolicy*);
alt               249 Source/core/rendering/HitTestResult.cpp         return input.alt();
alt               266 Source/web/ChromeClientImpl.cpp     bool alt = mouseEvent->modifiers & WebMouseEvent::AltKey;
alt               270 Source/web/ChromeClientImpl.cpp     navigationPolicyFromMouseEvent(buttonNumber, ctrl, shift, alt, meta, &userPolicy);