Searched refs:altText (Results 1 – 11 of 11) sorted by relevance
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | LeftRecursiveRuleAnalyzer.java | 100 String altText = text(altTree); in binaryAlt() local 101 altText = altText.trim(); in binaryAlt() 102 altText += "{}"; // add empty alt to prevent pred hoisting in binaryAlt() 107 binaryAlts.put(alt, altText + (rewriteText != null ? " " + rewriteText : "")); in binaryAlt() 126 String altText = text(altTree); in ternaryAlt() local 127 altText = altText.trim(); in ternaryAlt() 128 altText += "{}"; // add empty alt to prevent pred hoisting in ternaryAlt() 133 ternaryAlts.put(alt, altText + (rewriteText != null ? " " + rewriteText : "")); in ternaryAlt() 150 String altText = text(altTree); in prefixAlt() local 151 altText = altText.trim(); in prefixAlt() [all …]
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
D | LogoBridge.java | 34 public final String altText; field in LogoBridge.Logo 36 public Logo(Bitmap image, String onClickUrl, String altText) { in Logo() argument 39 this.altText = altText; in Logo() 97 private static Logo createLogo(Bitmap image, String onClickUrl, String altText) { in createLogo() argument 98 return new Logo(image, onClickUrl, altText); in createLogo()
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/ |
D | mathjax.js | 258 var altText = tex['alt'] || tex['title']; 259 if (altText) { 262 this.postMsg('TexToMml', callback, {alt: altText, id: newId}); 271 var altText = asciiMathNode['alt'] || asciiMathNode['title']; 272 if (altText) { 275 this.postMsg('AsciiMathToMml', callback, {alt: altText, id: newId});
|
/external/chromium_org/third_party/WebKit/Source/core/paint/ |
D | ImagePainter.cpp | 124 if (!m_renderImage.altText().isEmpty()) { in paintReplaced() 134 …TextRun textRun = constructTextRun(&m_renderImage, font, m_renderImage.altText(), m_renderImage.st… in paintReplaced()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderImage.h | 67 String altText() const { return m_altText; } in altText() function
|
D | RenderImage.cpp | 387 m_altText = toHTMLInputElement(node())->altText(); in updateAltText() 389 m_altText = toHTMLImageElement(node())->altText(); in updateAltText()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLImageElement.h | 60 const AtomicString& altText() const;
|
D | HTMLInputElement.h | 157 String altText() const;
|
D | HTMLImageElement.cpp | 257 const AtomicString& HTMLImageElement::altText() const in altText() function in blink::HTMLImageElement
|
D | HTMLInputElement.cpp | 784 String HTMLInputElement::altText() const in altText() function in blink::HTMLInputElement
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | TextIterator.cpp | 833 m_text = toRenderImage(renderer)->altText(); in handleReplacedElement()
|