/external/icu4c/layout/ |
GlyphLookupTables.cpp | 15 le_bool GlyphLookupTableHeader::coversScript(LETag scriptTag) const 19 return scriptListOffset != 0 && scriptListTable->findScript(scriptTag) != NULL; 22 le_bool GlyphLookupTableHeader::coversScriptAndLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch) const 25 const LangSysTable *langSysTable = scriptListTable->findLanguage(scriptTag, languageTag, exactMatch);
|
GlyphLookupTables.h | 27 le_bool coversScript(LETag scriptTag) const; 28 le_bool coversScriptAndLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch = FALSE) const;
|
ScriptAndLanguage.cpp | 35 const ScriptTable *ScriptListTable::findScript(LETag scriptTag) const 57 if (SWAPT(scriptRecordArray[s].tag) == scriptTag) { 63 scriptTableOffset = OpenTypeUtilities::getTagOffset(scriptTag, scriptRecordArray, count); 73 const LangSysTable *ScriptListTable::findLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch) const 75 const ScriptTable *scriptTable = findScript(scriptTag);
|
GlyphPositioningTables.cpp | 20 LETag scriptTag, LETag languageTag, 28 GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success);
|
GlyphSubstitutionTables.cpp | 22 LETag scriptTag, 35 GlyphSubstitutionLookupProcessor processor(this, scriptTag, languageTag, filter, featureMap, featureMapCount, featureOrder, success);
|
ScriptAndLanguage.h | 46 const ScriptTable *findScript(LETag scriptTag) const; 47 const LangSysTable *findLanguage(LETag scriptTag, LETag languageTag, le_bool exactMatch = FALSE) const;
|
GlyphPosnLookupProc.h | 30 LETag scriptTag,
|
GlyphPositioningTables.h | 30 le_bool rightToLeft, LETag scriptTag, LETag languageTag,
|
GlyphSubstLookupProc.h | 31 LETag scriptTag,
|
GlyphSubstitutionTables.h | 30 LETag scriptTag,
|
GlyphPosnLookupProc.cpp | 36 LETag scriptTag, 47 scriptTag,
|
GlyphSubstLookupProc.cpp | 30 LETag scriptTag, 42 scriptTag, languageTag, featureMap, featureMapCount, featureOrder, success), fFilter(filter)
|
LookupProcessor.h | 53 LETag scriptTag,
|
LayoutEngine.cpp | 209 LETag scriptTag = OpenTypeLayoutEngine::getScriptTag(fScriptCode); 213 if (canonGSUBTable->coversScript(scriptTag)) { 268 outCharCount = canonGSUBTable->process(fakeGlyphStorage, rightToLeft, scriptTag, langSysTag, NULL, substitutionFilter, canonFeatureMap, canonFeatureMapCount, FALSE, success); 533 LETag scriptTag = 0x00000000; 543 else if (gsubTable != NULL && gsubTable->coversScript(scriptTag = OpenTypeLayoutEngine::getScriptTag(scriptCode))) { 579 if (gsubTable->coversScriptAndLanguage(scriptTag, languageTag, TRUE)) {
|
LookupProcessor.cpp | 133 LETag scriptTag, LETag languageTag, const FeatureMap *featureMap, le_int32 featureMapCount, le_bool orderFeatures, 150 langSysTable = scriptListTable->findLanguage(scriptTag, languageTag);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLScriptElement.h | 78 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::scriptTag));
|
HTMLScriptElement.cpp | 44 ASSERT(hasTagName(scriptTag));
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGScriptElement.h | 98 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(SVGNames::scriptTag));
|
SVGScriptElement.cpp | 51 ASSERT(hasTagName(SVGNames::scriptTag));
|
/external/chromium_org/third_party/WebKit/Source/web/ |
DOMUtilitiesPrivate.cpp | 48 return element->hasTagName(imgTag) || element->hasTagName(scriptTag) || element->hasTagName(iframeTag) || element->hasTagName(frameTag) || (element->hasTagName(inputTag) && toHTMLInputElement(element)->isImageButton());
|
WebPageSerializerImpl.cpp | 217 } else if (element->hasTagName(HTMLNames::scriptTag) 238 else if (element->hasTagName(HTMLNames::scriptTag)
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLPreloadScanner.cpp | 85 if (match(tagImpl, scriptTag)) 86 return scriptTag.localName(); 101 && !match(m_tagImpl, scriptTag)) 145 if (match(m_tagImpl, scriptTag) || match(m_tagImpl, imgTag)) { 190 if (match(m_tagImpl, scriptTag))
|
HTMLTreeBuilderSimulator.cpp | 151 else if (threadSafeHTMLNamesMatch(tagName, scriptTag)) 170 if (threadSafeHTMLNamesMatch(tagName, scriptTag)) {
|
XSSAuditor.cpp | 345 if (hasName(request.token, scriptTag)) { 376 if (hasName(request.token, scriptTag)) { 396 ASSERT(hasName(request.token, scriptTag));
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ScriptLoader.cpp | 303 return element->hasTagName(HTMLNames::scriptTag); 308 return element->hasTagName(SVGNames::scriptTag);
|