Home
last modified time | relevance | path

Searched refs:tokenStr (Results 1 – 8 of 8) sorted by relevance

/external/deqp-deps/glslang/StandAlone/
DResourceLimits.cpp277 const std::string tokenStr = configStr.substr(token_s, token_e-token_s); in DecodeResourceLimits() local
288 if (tokenStr == "MaxLights") in DecodeResourceLimits()
290 else if (tokenStr == "MaxClipPlanes") in DecodeResourceLimits()
292 else if (tokenStr == "MaxTextureUnits") in DecodeResourceLimits()
294 else if (tokenStr == "MaxTextureCoords") in DecodeResourceLimits()
296 else if (tokenStr == "MaxVertexAttribs") in DecodeResourceLimits()
298 else if (tokenStr == "MaxVertexUniformComponents") in DecodeResourceLimits()
300 else if (tokenStr == "MaxVaryingFloats") in DecodeResourceLimits()
302 else if (tokenStr == "MaxVertexTextureImageUnits") in DecodeResourceLimits()
304 else if (tokenStr == "MaxCombinedTextureImageUnits") in DecodeResourceLimits()
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/StandAlone/
DResourceLimits.cpp277 const std::string tokenStr = configStr.substr(token_s, token_e-token_s); in DecodeResourceLimits() local
288 if (tokenStr == "MaxLights") in DecodeResourceLimits()
290 else if (tokenStr == "MaxClipPlanes") in DecodeResourceLimits()
292 else if (tokenStr == "MaxTextureUnits") in DecodeResourceLimits()
294 else if (tokenStr == "MaxTextureCoords") in DecodeResourceLimits()
296 else if (tokenStr == "MaxVertexAttribs") in DecodeResourceLimits()
298 else if (tokenStr == "MaxVertexUniformComponents") in DecodeResourceLimits()
300 else if (tokenStr == "MaxVaryingFloats") in DecodeResourceLimits()
302 else if (tokenStr == "MaxVertexTextureImageUnits") in DecodeResourceLimits()
304 else if (tokenStr == "MaxCombinedTextureImageUnits") in DecodeResourceLimits()
[all …]
/external/deqp/framework/randomshaders/
DrsgPrettyPrinter.cpp189 const char* tokenStr = getSimpleTokenStr(token.getType()); in processToken() local
190 if (prevIsIdentifierChar && isIdentifierChar(tokenStr[0])) in processToken()
192 m_line += tokenStr; in processToken()
DrsgShaderGenerator.cpp342 TokenStream tokenStr; in generate() local
343 shader.tokenize(m_state, tokenStr); in generate()
352 printer.append(tokenStr); in generate()
/external/angle/src/common/
Dstring_utils.cpp209 bool ContainsToken(const std::string &tokenStr, char delimiter, const std::string &token) in ContainsToken() argument
219 std::string::size_type end = tokenStr.find(delimiter, start); in ContainsToken()
222 end = tokenStr.length(); in ContainsToken()
225 if (length == token.length() && tokenStr.compare(start, length, token) == 0) in ContainsToken()
230 } while (start < tokenStr.size()); in ContainsToken()
Dstring_utils.h88 bool ContainsToken(const std::string &tokenStr, char delimiter, const std::string &token);
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/async/
DNonBlockingJsonParserBase.java845 String tokenStr = NON_STD_TOKENS[type]; in _valueNonStdNumberComplete() local
846 _textBuffer.resetWithString(tokenStr); in _valueNonStdNumberComplete()
849 tokenStr); in _valueNonStdNumberComplete()
/external/boringssl/src/util/fipstools/acvp/acvptool/acvp/
Dacvp.go227 func expired(tokenStr string) bool {
228 parts := strings.Split(tokenStr, ".")