Searched refs:tokenStr (Results 1 – 8 of 8) sorted by relevance
/external/deqp-deps/glslang/StandAlone/ |
D | ResourceLimits.cpp | 277 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/ |
D | ResourceLimits.cpp | 277 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/ |
D | rsgPrettyPrinter.cpp | 189 const char* tokenStr = getSimpleTokenStr(token.getType()); in processToken() local 190 if (prevIsIdentifierChar && isIdentifierChar(tokenStr[0])) in processToken() 192 m_line += tokenStr; in processToken()
|
D | rsgShaderGenerator.cpp | 342 TokenStream tokenStr; in generate() local 343 shader.tokenize(m_state, tokenStr); in generate() 352 printer.append(tokenStr); in generate()
|
/external/angle/src/common/ |
D | string_utils.cpp | 209 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()
|
D | string_utils.h | 88 bool ContainsToken(const std::string &tokenStr, char delimiter, const std::string &token);
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/async/ |
D | NonBlockingJsonParserBase.java | 845 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/ |
D | acvp.go | 227 func expired(tokenStr string) bool { 228 parts := strings.Split(tokenStr, ".")
|