Home
last modified time | relevance | path

Searched refs:mappedName (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/angle/src/compiler/
DVariableInfo.cpp77 const TString& mappedName,
81 const TString& mappedName,
88 const TString& mappedName, in getVariableInfo() argument
96 TString lmappedName = mappedName + arrayBrackets(i); in getVariableInfo()
100 getUserDefinedVariableInfo(type, name, mappedName, infoList, hashFunction); in getVariableInfo()
103 getBuiltInVariableInfo(type, name, mappedName, infoList); in getVariableInfo()
109 const TString& mappedName, in getBuiltInVariableInfo() argument
117 varInfo.mappedName = (mappedName + "[0]").c_str(); in getBuiltInVariableInfo()
121 varInfo.mappedName = mappedName.c_str(); in getBuiltInVariableInfo()
131 const TString& mappedName, in getUserDefinedVariableInfo() argument
[all …]
DMapLongVariableNames.cpp67 void LongNameMap::Insert(const char* originalName, const char* mappedName) in Insert() argument
70 originalName, mappedName)); in Insert()
108 const char* mappedName = mGlobalMap->Find(name.c_str()); in mapGlobalLongName() local
109 if (mappedName != NULL) in mapGlobalLongName()
110 return mappedName; in mapGlobalLongName()
DShaderLang.cpp254 char* mappedName) in ShGetVariableInfo() argument
302 if (mappedName) { in ShGetVariableInfo()
307 strncpy(mappedName, varInfo.mappedName.c_str(), maxMappedNameLength); in ShGetVariableInfo()
308 mappedName[maxMappedNameLength - 1] = 0; in ShGetVariableInfo()
DMapLongVariableNames.h31 void Insert(const char* originalName, const char* mappedName);
DVariableInfo.h20 TPersistString mappedName; member
/external/chromium_org/third_party/WebKit/Source/platform/graphics/angle/
DANGLEPlatformBridge.cpp107 String mappedName = String(mappedNameBuffer.data()); in getSymbolInfo() local
112 symbol.isArray = name.endsWith("[0]") && mappedName.endsWith("[0]"); in getSymbolInfo()
116 mappedName.truncate(mappedName.length() - 3); in getSymbolInfo()
120 symbol.mappedName = mappedName; in getSymbolInfo()
129 symbol.mappedName = mappedName + arrayBrackets; in getSymbolInfo()
DANGLEPlatformBridge.h49 String mappedName; member
/external/chromium_org/third_party/angle/samples/translator/
Dtranslator.cpp298 char* mappedName = NULL; in PrintActiveVariables() local
302 mappedName = new char[mappedNameSize]; in PrintActiveVariables()
315 …IVE_ATTRIBUTES, static_cast<int>(i), NULL, &size, &type, &precision, &staticUse, name, mappedName); in PrintActiveVariables()
318 …CTIVE_UNIFORMS, static_cast<int>(i), NULL, &size, &type, &precision, &staticUse, name, mappedName); in PrintActiveVariables()
345 printf(" mapped name:%s", mappedName); in PrintActiveVariables()
349 if (mappedName) in PrintActiveVariables()
350 delete [] mappedName; in PrintActiveVariables()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContext3D.cpp898 String mappedName = mapExtensionName(name); in supportsExtension() local
899 return m_enabledExtensions.contains(mappedName) || m_requestableExtensions.contains(mappedName); in supportsExtension()
906 String mappedName = mapExtensionName(name); in ensureExtensionEnabled() local
907 if (m_enabledExtensions.contains(mappedName)) in ensureExtensionEnabled()
910 if (m_requestableExtensions.contains(mappedName)) { in ensureExtensionEnabled()
911 m_impl->requestExtensionCHROMIUM(mappedName.ascii().data()); in ensureExtensionEnabled()
918 …m_enabledExtensions.contains(%s) == %d\n", mappedName.ascii().data(), m_enabledExtensions.contains… in ensureExtensionEnabled()
919 return m_enabledExtensions.contains(mappedName); in ensureExtensionEnabled()
925 String mappedName = mapExtensionName(name); in isExtensionEnabled() local
926 return m_enabledExtensions.contains(mappedName); in isExtensionEnabled()
/external/chromium_org/third_party/angle/include/GLSLANG/
DShaderLang.h423 char* mappedName);