Home
last modified time | relevance | path

Searched refs:MINUSEQ (Results 1 – 22 of 22) sorted by relevance

/external/skia/src/sksl/
DSkSLUtil.cpp37 case Token::MINUSEQ: // fall through in is_assignment()
58 case Token::MINUSEQ: return Token::MINUS; in remove_assignment()
DSkSLLexer.h180 #undef MINUSEQ
181 MINUSEQ, enumerator
DSkSLCompiler.cpp885 case Token::MINUSEQ: in simplifyExpression()
1495 case Token::MINUSEQ: return "-="; in OperatorName()
1520 case Token::MINUSEQ: // fall through in IsAssignment()
DSkSLInterpreter.cpp372 case Token::MINUSEQ: COMPOUND_ARITHMETIC(-=) in evaluate()
DSkSLGLSLCodeGenerator.cpp894 case Token::MINUSEQ: // fall through in writeFunctionCall()
DSkSLMetalCodeGenerator.cpp623 case Token::MINUSEQ: // fall through in GetBinaryPrecedence()
DSkSLParser.cpp1521 case Token::MINUSEQ: // fall through in assignmentExpression()
DSkSLJIT.cpp588 case Token::MINUSEQ: in compileBinary()
DSkSLIRGenerator.cpp1272 case Token::MINUSEQ: in determine_binary_type()
/external/skqp/src/sksl/
DSkSLLexer.h184 #undef MINUSEQ
185 MINUSEQ, enumerator
DSkSLCompiler.cpp885 case Token::MINUSEQ: in simplifyExpression()
1475 case Token::MINUSEQ: return "-="; in OperatorName()
1500 case Token::MINUSEQ: // fall through in IsAssignment()
DSkSLInterpreter.cpp372 case Token::MINUSEQ: COMPOUND_ARITHMETIC(-=) in evaluate()
DSkSLGLSLCodeGenerator.cpp875 case Token::MINUSEQ: // fall through in writeFunctionCall()
DSkSLMetalCodeGenerator.cpp510 case Token::MINUSEQ: // fall through in GetBinaryPrecedence()
DSkSLParser.cpp1534 case Token::MINUSEQ: // fall through in assignmentExpression()
DSkSLSPIRVCodeGenerator.cpp1856 case Token::MINUSEQ: // fall through in is_assignment()
2179 case Token::MINUSEQ: { in writeBinaryExpression()
DSkSLJIT.cpp588 case Token::MINUSEQ: in compileBinary()
DSkSLIRGenerator.cpp1222 case Token::MINUSEQ: in determine_binary_type()
/external/skqp/src/sksl/lex/
Dsksl.lex83 MINUSEQ = "-="
/external/skia/src/sksl/lex/
Dsksl.lex81 MINUSEQ = "-="
/external/turbine/java/com/google/turbine/parse/
DToken.java63 MINUSEQ("-="), enumConstant
DStreamLexer.java906 return Token.MINUSEQ; in operator()